diff --git a/ChangeLog b/ChangeLog index f19f621d1c..08ae9c2170 100644 --- a/ChangeLog +++ b/ChangeLog @@ -52,6 +52,9 @@ phpMyAdmin - ChangeLog - issue #12786 Fixed database searching - issue #12792 Fixed javascript error on new version link - issue #12785 Add information about required and suggested extensions to composer.json +- issue #12434 Improve documentation for servers running with Suhosin +- issue #12800 Updated embedded phpSecLib to 2.0.4 +- issue #12800 Fixed various issues with PHP 7.1 4.6.5.2 (2016-12-05) - issue #12765 Fixed SQL export with newlines diff --git a/doc/config.rst b/doc/config.rst index c096aeb24d..227630adff 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -1748,7 +1748,7 @@ Cookie authentication options :default: ``''`` The public key for the reCaptcha service that can be obtained from - https://www.google.com/recaptcha. + https://www.google.com/recaptcha/intro/. reCaptcha will be then used in :ref:`cookie`. @@ -1758,7 +1758,7 @@ Cookie authentication options :default: ``''`` The private key for the reCaptcha service that can be obtain from - https://www.google.com/recaptcha. + https://www.google.com/recaptcha/intro/. reCaptcha will be then used in :ref:`cookie`. @@ -3116,7 +3116,7 @@ Developer :default: false Enable to let server present itself as demo server. - This is used for `phpMyAdmin demo server `_. + This is used for `phpMyAdmin demo server `_. .. _config-examples: diff --git a/doc/faq.rst b/doc/faq.rst index 40e8040cf4..977a6df83e 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -555,6 +555,23 @@ parameters: * `suhosin.log.\* `_ should not include :term:`SQL`, otherwise you get big slowdown +* `suhosin.sql.union `_ must be disabled (which is the default). +* `suhosin.sql.multiselect `_ must be disabled (which is the default). +* `suhosin.sql.comment `_ must be disabled (which is the default). + +To further improve security, we also recommend these modifications: + +* `suhosin.executor.include.max\_traversal `_ should be + enabled as a mitigation against local file inclusion attacks. We suggest + setting this to 2 as ``../`` is used with the ReCaptcha library. +* `suhosin.cookie.encrypt `_ should be enabled. +* `suhosin.executor.disable_emodifier `_ should be enabled. You can also disable the warning using the :config:option:`$cfg['SuhosinDisableWarning']`. diff --git a/libraries/Util.php b/libraries/Util.php index 191d960468..2a9da68f4c 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -2790,7 +2790,7 @@ class Util */ public static function cacheExists($var) { - return isset($_SESSION['cache']['server_' . $GLOBALS['server']][$var]); + return isset($_SESSION['cache']['server_' . $GLOBALS['server'] . '_' . $GLOBALS['cfg']['Server']['user']][$var]); } /** @@ -2804,7 +2804,7 @@ class Util public static function cacheGet($var, $callback = null) { if (self::cacheExists($var)) { - return $_SESSION['cache']['server_' . $GLOBALS['server']][$var]; + return $_SESSION['cache']['server_' . $GLOBALS['server'] . '_' . $GLOBALS['cfg']['Server']['user']][$var]; } else { if ($callback) { $val = $callback(); @@ -2825,7 +2825,7 @@ class Util */ public static function cacheSet($var, $val = null) { - $_SESSION['cache']['server_' . $GLOBALS['server']][$var] = $val; + $_SESSION['cache']['server_' . $GLOBALS['server'] . '_' . $GLOBALS['cfg']['Server']['user']][$var] = $val; } /** @@ -2837,7 +2837,7 @@ class Util */ public static function cacheUnset($var) { - unset($_SESSION['cache']['server_' . $GLOBALS['server']][$var]); + unset($_SESSION['cache']['server_' . $GLOBALS['server'] . '_' . $GLOBALS['cfg']['Server']['user']][$var]); } /** diff --git a/libraries/core.lib.php b/libraries/core.lib.php index f731bf8c50..df5102feb5 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -363,36 +363,22 @@ function PMA_getRealSize($size = 0) return 0; } - $scan = array( - 'gb' => 1073741824, //1024 * 1024 * 1024, - 'g' => 1073741824, //1024 * 1024 * 1024, - 'mb' => 1048576, - 'm' => 1048576, - 'kb' => 1024, - 'k' => 1024, - 'b' => 1, + $binaryprefixes = array( + 'T' => 1099511627776, + 't' => 1099511627776, + 'G' => 1073741824, + 'g' => 1073741824, + 'M' => 1048576, + 'm' => 1048576, + 'K' => 1024, + 'k' => 1024, ); - foreach ($scan as $unit => $factor) { - $sizeLength = strlen($size); - $unitLength = strlen($unit); - if ($sizeLength > $unitLength - && strtolower( - substr( - $size, - $sizeLength - $unitLength - ) - ) == $unit - ) { - return substr( - $size, - 0, - $sizeLength - $unitLength - ) * $factor; - } + if (preg_match('/^([0-9]+)([KMGT])/i', $size, $matches)) { + return $matches[1] * $binaryprefixes[$matches[2]]; } - return $size; + return (int) $size; } // end function PMA_getRealSize() /** diff --git a/po/af.po b/po/af.po index 08cb89d1a6..12ce3b5d04 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:30+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Kenmerke" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "'n primere sleutel is bygevoeg op %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Naspeur verslag" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2063,293 +2069,293 @@ msgstr "" msgid "End of step" msgstr "By Einde van Tabel" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Skep 'n nuwe tabel op databasis %s" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Stoor" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL-stelling" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Soek" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolom name" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolom name" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy msgid "Data point content" msgstr "Tabel kommentaar" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lyne beeindig deur" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Binne kring %d:" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Buite kring:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bladsy nommer:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Kies Alles" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Kies Alles" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2357,237 +2363,237 @@ msgstr "Kies Alles" msgid "Open page" msgstr "Gebruik" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Kies Alles" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Kies asb. 'n bladsy om te verander" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Display PDF schema" msgid "Export relational schema" msgstr "Vertoon PDF skema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Waarde vir die kolom \"%s\"" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Stuur" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolom name" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Wys alles" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Lyne beeindig deur" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Export" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Kies Tabelle" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Geen databasisse" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolom name" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Wys alles" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indekse" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Wys ruitgebied" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indekse" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indekse" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2595,121 +2601,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Geen databasisse" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "Bediener Keuse" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "Bediener Keuse" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "Wys tabelle" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoreer" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Wys hierdie navraag weer hier" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Wil jy regtig " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabel kommentaar" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL-stelling" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2718,37 +2724,57 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy msgid "Copy tables to" msgstr "Geen databasisse" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2756,95 +2782,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mei" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2852,78 +2878,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Des" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2931,201 +2957,201 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Geen" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekords" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Kies asb. 'n databasis" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Kies asb. 'n bladsy om te verander" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Fout" @@ -3186,20 +3212,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Biner" @@ -3396,7 +3422,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3441,51 +3467,51 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Soek" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL-stelling" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3597,67 +3623,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-navraag op databasis %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Doen Navraag" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Soek" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Soek" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Soek" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Aantoon van boekmerk" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Soek" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "ten minste een van die woorde" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "alle woorde" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "die presiese frase" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "as 'n regular expression" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Soek resultate vir \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3665,7 +3691,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s ooreenkomste" msgstr[1] "Totaal: %s ooreenkomste" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3673,53 +3699,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Beloer Data" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Stort data vir tabel" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Soek in databasis" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Vind:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Binne tabel(le):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Selekteer Niks" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -3746,16 +3766,16 @@ msgstr "Velde" msgid "Search this table" msgstr "Soek in databasis" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3764,8 +3784,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3774,8 +3794,8 @@ msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3786,7 +3806,7 @@ msgstr "Einde" msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3797,8 +3817,8 @@ msgstr "Hoeveelheid rye per bladsy" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3820,10 +3840,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "Operasies" @@ -3872,106 +3892,106 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Die ry is verwyder" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Vermoor" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Jou SQL-navraag is suksesvol uitgevoer." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Vertoon rye" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "totaal" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Met gekose:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Kies Alles" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Skakel nie gevind nie" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -3979,7 +3999,7 @@ msgid "None" msgstr "Geen" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3987,73 +4007,73 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy msgid "Report" msgstr "Export" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy msgid "Automatically send report next time" msgstr "Bediener weergawe" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Leer kon nie gelees word nie" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4063,29 +4083,29 @@ msgstr "" "ondersteuning vir dit is nie geimplimenteer nie of is afgeskakel deur jou " "konfigurasie." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy msgid "Git information missing!" msgstr "Wys PHP informasie" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Drukker mooi (print view)" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4096,20 +4116,20 @@ msgid "No index defined!" msgstr "Geen indeks gedefinieer!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indekse" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4119,31 +4139,31 @@ msgstr "Indekse" msgid "Action" msgstr "Aksie" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Uniek" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4151,47 +4171,47 @@ msgstr "Cardinality" msgid "Comment" msgstr "Kommentaar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Die primere sleutel is verwyder." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s is verwyder." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Verwyder" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Bladsy nommer:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4215,11 +4235,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4238,14 +4258,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4254,8 +4275,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4263,45 +4284,45 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Soek" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Voeg by" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Regte" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operasies" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4317,16 +4338,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4334,22 +4355,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "databasisse" @@ -4360,54 +4381,54 @@ msgid "User accounts" msgstr "Gebruiker" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Biner" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4469,27 +4490,27 @@ msgstr "Skep 'n nuwe bladsy" msgid "Favorites" msgstr "Skep 'n nuwe bladsy" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4554,7 +4575,7 @@ msgstr "Wys tabelle" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4611,82 +4632,82 @@ msgid_plural "%d minutes" msgstr[0] "in gebruik" msgstr[1] "in gebruik" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "Wys tabelle" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy msgid "Invalid database:" msgstr "Geen databasisse" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "Binne tabel(le):" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Bediener weergawe" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %s is vernoem na %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4694,19 +4715,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Die naam van die primere sleutel moet PRIMARY wees!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Kannie die indeks hernoem na PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Geen indeks dele gedefinieer!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4976,7 +4997,7 @@ msgid "Date and time" msgstr "Skep 'n nuwe indeks" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -4994,70 +5015,70 @@ msgstr "totaal" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sonder PHP Kode" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Doen Navraag" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Skep PHP Kode" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5065,63 +5086,63 @@ msgid "Edit inline" msgstr "Drukker mooi (print view)" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Maak Leeg" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5137,7 +5158,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -5145,14 +5166,14 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Soek" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5161,7 +5182,7 @@ msgstr "Soek" msgid "Description" msgstr "geen Beskrywing" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -5201,22 +5222,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Naam" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Lengte/Waardes*" @@ -5227,7 +5248,7 @@ msgstr "Lengte/Waardes*" msgid "Attribute" msgstr "Kenmerke" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5249,12 +5270,12 @@ msgstr "Voeg 'n nuwe veld by" msgid "Select a column." msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy msgid "Add new column" msgstr "Voeg 'n nuwe veld by" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5262,33 +5283,33 @@ msgstr "Voeg 'n nuwe veld by" msgid "Attributes" msgstr "Kenmerke" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format msgid "Server %d" msgstr "Bediener Keuse" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5296,20 +5317,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5862,7 +5883,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5974,13 +5995,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Stellings" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Stoor as leer (file)" @@ -5991,7 +6012,7 @@ msgstr "Karakterstel van die leer:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formaat" @@ -6129,7 +6150,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -6144,7 +6165,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -6155,7 +6176,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Omring tabel en veldname met backquotes" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6188,7 +6209,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -6365,7 +6386,7 @@ msgid "Customize the navigation tree." msgstr "Wys ruitgebied" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -7255,7 +7276,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7935,7 +7956,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7943,10 +7964,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8091,24 +8112,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentasie" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s is leeg gemaak." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Veld %s is verwyder" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8123,12 +8144,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -8137,7 +8158,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -8151,16 +8172,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Geen databasisse" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Databasis %1$s is geskep." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8168,27 +8189,27 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Databasis %s is verwyder." msgstr[1] "Databasis %s is verwyder." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rye" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 #, fuzzy msgid "Total" msgstr "totaal" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8214,34 +8235,34 @@ msgstr "" msgid "Enable statistics" msgstr "Databasis statistieke" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Geen databasisse" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8292,7 +8313,7 @@ msgstr "Databasis %s is verwyder." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query" msgid "Query error" @@ -8312,12 +8333,12 @@ msgstr "Verander" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8338,13 +8359,13 @@ msgstr "Volteks" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -8364,195 +8385,199 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Geen Wagwoord" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Wagwoord:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Tik weer" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "Wagwoord:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Create table on database %s" msgid "Exporting databases from the current server" msgstr "Skep 'n nuwe tabel op databasis %s" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Skep 'n nuwe tabel op databasis %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Skep 'n nuwe tabel op databasis %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export" msgid "Export templates:" msgstr "Export" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "User name" msgid "New template:" msgstr "Gebruiker naam" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "User name" msgid "Template name" msgstr "Gebruiker naam" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Skep" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s tabel(le)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Verander Navraag" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Kies Tabelle" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export" msgid "Export method:" msgstr "Export" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "databasisse" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy msgid "Tables:" msgstr "Tabel" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Formaat" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Rye" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8560,122 +8585,122 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Karakterstel van die leer:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"ge-zip\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"ge-gzip\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Stoor as leer (file)" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Skep 'n nuwe tabel op databasis %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export" msgid "Export tables as separate files" msgstr "Export" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Stoor as leer (file)" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Kies Tabelle" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Kies Tabelle" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "Databasis" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Geen tabelle" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Kolom name" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Kolom name" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Bediener weergawe" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Bediener weergawe" @@ -9080,13 +9105,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende spasie om die leer %s te stoor." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9094,75 +9119,75 @@ msgstr "" "Leer %s bestaan reeds op die stelsel, verander leer naam of selekteer " "oorskryf opsie." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Die web stelsel het nie magtigng om die leer %s te stoor nie." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Slegs struktuur" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9174,90 +9199,91 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Skep 'n indeks op %s kolomme" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funksie" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "" " Omrede sy lengte,
is hierdie veld moontlik nie veranderbaar nie " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Of" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Voeg by" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9268,31 +9294,31 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Slegs struktuur" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktuur en data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Slegs Data" @@ -9301,14 +9327,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9362,8 +9388,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Wys" @@ -9408,19 +9434,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Stoor as leer (file)" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9435,7 +9461,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Voeg 'n nuwe veld by" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9457,7 +9483,7 @@ msgstr "" msgid "Database operations" msgstr "Databasis statistieke" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9559,13 +9585,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9811,8 +9837,8 @@ msgid "Rename database to" msgstr "Hernoem tabel na" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9861,83 +9887,83 @@ msgstr "(afsonderlik)" msgid "Move table to (database.table)" msgstr "Skuif tabel na (databasis.tabel)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Hernoem tabel na" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabel kommentaar" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopieer tabel na (databasis.tabel)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabel instandhouding" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analiseer tabel" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Kontroleer tabel" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Kontroleer tabel" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabel %s is geflush." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Spoel die tabel (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Herstel tabel" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -9945,105 +9971,105 @@ msgstr "Herstel tabel" msgid "Delete data or table" msgstr "Stort data vir tabel" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Geen databasisse" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Herstel tabel" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Geen tabelle" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Tabel instandhouding" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Toets referential integrity:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s is geskuif na %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s is gekopieer na %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is geskuif na %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieer na %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Die tabel naam is leeg!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10070,25 +10096,25 @@ msgstr "Wys kleur" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Welkom by %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10096,7 +10122,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10123,15 +10149,15 @@ msgstr "Gebruiker Naam:" msgid "Server Choice:" msgstr "Bediener Keuse" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy msgid "You are not allowed to log in to this MySQL server!" msgstr "Limits the number of new connections the user may open per hour." @@ -10202,7 +10228,7 @@ msgstr "Databasis statistieke" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Stort data vir tabel" @@ -10211,7 +10237,7 @@ msgstr "Stort data vir tabel" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -10219,8 +10245,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy msgid "Definition" msgstr "geen Beskrywing" @@ -10320,7 +10346,7 @@ msgstr "Kolom name" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -10871,7 +10897,7 @@ msgstr "Tabel kommentaar" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -11219,57 +11245,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "geen Beskrywing" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11278,309 +11304,309 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Kies asb. 'n databasis" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy msgid "Master connection:" msgstr "Tabel kommentaar" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Volteks" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Slegs struktuur" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Slegs struktuur" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Gebruiker naam" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Gebruiker naam" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Wagwoord" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Sorteer" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Gasheer (host)" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Enige gebruiker" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "Voeg 'n nuwe veld by" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Tik weer" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Change password" msgid "Generate password:" msgstr "Verander wagwoord" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Fout" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11602,7 +11628,7 @@ msgstr "Tabel %s is verwyder" msgid "Event %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11612,84 +11638,84 @@ msgstr "" msgid "Edit event" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "User name" msgid "Event name" msgstr "Gebruiker naam" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Verander" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "Sa" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Einde" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Voltooi invoegings" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -11710,7 +11736,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy msgid "Returns" msgstr "Databasis statistieke" @@ -11723,141 +11749,141 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolom name" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy msgid "Direction" msgstr "Skep" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy msgid "Remove last parameter" msgstr "Hernoem tabel na" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy msgid "Return options" msgstr "Databasis statistieke" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11881,34 +11907,34 @@ msgstr "Tabel %s is verwyder" msgid "Edit trigger" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Gebruiker naam" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12039,607 +12065,558 @@ msgstr "" msgid "Databases statistics" msgstr "Databasis statistieke" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Geen" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy msgid "Does not require SSL-encrypted connections." msgstr "Tabel kommentaar" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy msgid "Requires SSL-encrypted connections." msgstr "Tabel kommentaar" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" msgstr "Voeg 'n nuwe veld by" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: MySQL regte name word in Engels vertoon" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentasie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Verander wagwoord" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Dokumentasie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Gebruiker naam" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Kolom name" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentasie" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Wagwoord:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jy het die regte herroep vir %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Enige gebruiker" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy msgid "Database for user account" msgstr "Databasis statistieke" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Run SQL query/queries on database %s" msgid "Grant all privileges on database %s." msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy msgid "User has been added." msgstr "Veld %s is verwyder" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Enige" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Herroep" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy msgid "Routine-specific privileges" msgstr "Geen Regte" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "With selected:" -msgid "Remove selected user accounts" -msgstr "Met gekose:" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Regte" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12648,7 +12625,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12657,11 +12634,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." @@ -12948,12 +12925,12 @@ msgstr "Kommentaar" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "Wys tabelle" @@ -12979,12 +12956,12 @@ msgstr "in gebruik" msgid "per second:" msgstr "Rekords" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Stellings" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13013,34 +12990,34 @@ msgstr "Wys tabelle" msgid "Related links:" msgstr "Operasies" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13048,78 +13025,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13127,7 +13104,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13135,42 +13112,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13178,33 +13155,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13213,243 +13190,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakterstel van die leer:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13457,99 +13434,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13557,18 +13534,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13576,11 +13553,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13617,47 +13594,47 @@ msgstr "databasisse" msgid "Table level tabs" msgstr "Tabel kommentaar" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "Enige gebruiker" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Enige gebruiker" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy msgid "User group menu assignments" msgstr "Geen Regte" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Kolom name" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Bediener weergawe" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "databasisse" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13761,7 +13738,7 @@ msgstr "Hardloop SQL stellings op databasis %s" msgid "Run SQL query/queries on table %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -13852,103 +13829,103 @@ msgstr "" msgid "Version" msgstr "PHP Version" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Geskepte" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Opgedateer" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Bediener weergawe" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Naspeur verslag" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Struktuur momentopname" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktief" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "nie aktief nie" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Geen databasisse" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -13956,77 +13933,77 @@ msgctxt "None for default" msgid "None" msgstr "Geen" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Bediener weergawe" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nie gevolgde tabelle" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Volg tabel" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Nagegaande tabelle" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Vorige weergawe" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete" msgid "Delete tracking" msgstr "Verwyder" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Weergawes" @@ -14036,7 +14013,7 @@ msgstr "Weergawes" msgid "Manage your settings" msgstr "Algemene verwantskap funksies" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14062,7 +14039,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14070,82 +14047,82 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin dokumentasie" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Stoor as leer (file)" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14154,45 +14131,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Geen Regte" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14200,103 +14177,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Veranderinge is gestoor" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Veranderinge is gestoor" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Local" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin dokumentasie" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14334,28 +14310,28 @@ msgstr "" msgid "Show form" msgstr "Wys kleur" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14370,12 +14346,12 @@ msgstr "Geen databasisse" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14388,35 +14364,35 @@ msgstr "Sien die storting (skema) van die tabel" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "With selected:" msgid "No row selected." msgstr "Met gekose:" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "Databasis %s is verwyder." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "With selected:" msgid "No versions selected." msgstr "Met gekose:" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14625,7 +14601,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy msgid "Browser display transformation" msgstr "Wys PHP informasie" @@ -14650,7 +14626,7 @@ msgstr "" "\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy msgid "Input transformation" msgstr "Wys PHP informasie" @@ -15169,18 +15145,18 @@ msgid "Size" msgstr "Grootte" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 #, fuzzy msgid "Creation" msgstr "Skep" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -15215,6 +15191,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete" +msgid "Delete settings " +msgstr "Verwyder" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -15233,10 +15215,47 @@ msgstr "Skep 'n nuwe tabel op databasis %s" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Geen" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "With selected:" +msgid "Remove selected user accounts" +msgstr "Met gekose:" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15271,7 +15290,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15457,7 +15476,7 @@ msgstr "Gebruiker" msgid "Comment:" msgstr "Kommentaar" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15493,30 +15512,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add a linestring" msgid "+ Add constraint" msgstr "Voeg 'n lynstring by" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy msgid "Internal relations" msgstr "Algemene verwantskap funksies" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy msgid "Internal relation" msgstr "Algemene verwantskap funksies" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15580,12 +15599,12 @@ msgstr "Lyne beeindig deur" msgid "Replaced string" msgstr "Operasies" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "Herstel tabel" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL-stelling" @@ -15669,7 +15688,7 @@ msgid "at beginning of table" msgstr "By Begin van Tabel" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy msgid "Partitions" msgstr "Operasies" @@ -15700,29 +15719,29 @@ msgstr "Ry lengte" msgid "Index length" msgstr "Ry lengte" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy msgid "Partition table" msgstr "Operasies" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Print view" msgid "Edit partitioning" msgstr "Drukker mooi (print view)" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Drukker mooi (print view)" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Spasie verbruik" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektief" @@ -15752,33 +15771,33 @@ msgstr "Stel tabel struktuur voor" msgid "Track view" msgstr "Volg tabel" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Ry Statistiek" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamies" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Ry lengte" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Ry grootte" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15792,49 +15811,49 @@ msgstr "Tabel %s is verwyder" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy msgid "Available browser display transformations" msgstr "Wys PHP informasie" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy msgid "Available input transformations" msgstr "Wys PHP informasie" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy msgctxt "for MIME transformation" msgid "Description" msgstr "geen Beskrywing" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Naspeur verslag" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jy het nie genoeg regte om nou hier te wees nie!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Die profiel is opgedateer." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -15907,7 +15926,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15932,19 +15951,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." msgstr "Met gekose:" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16000,26 +16019,26 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "Tabel %s is verwyder" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "By Begin van Tabel" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16036,10 +16055,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "By Begin van Tabel" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16084,7 +16109,7 @@ msgstr "" msgid "strict error" msgstr "Navraag dmv Voorbeeld" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17205,6 +17230,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Dokumentasie" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/ar.po b/po/ar.po index 07a1f061d9..749582455e 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-17 22:26+0000\n" "Last-Translator: Boussaid Mustafa \n" -"Language-Team: Arabic " -"\n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -16,7 +16,7 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -28,31 +28,31 @@ msgstr "" "الملف %s غير متوفر في هذا النظام، المرجو مراجعة www.phpmyadmin.net للمزيد من " "المعلومات." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "القائمة المركزية لأعمدة قاعدة البيانات الحالية فارغة." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "إضغط للترتيب." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "عرض الصفوف %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "ملاحظة قاعدة البيانات" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "تعليقات الجدول:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -64,13 +64,13 @@ msgstr "تعليقات الجدول:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -81,9 +81,9 @@ msgstr "تعليقات الجدول:" msgid "Column" msgstr "عمود" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -94,12 +94,12 @@ msgstr "عمود" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -111,9 +111,9 @@ msgstr "عمود" msgid "Type" msgstr "النوع" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -124,15 +124,15 @@ msgstr "النوع" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "خالي" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -143,14 +143,14 @@ msgstr "خالي" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "إفتراضي" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -160,7 +160,7 @@ msgstr "إفتراضي" msgid "Links to" msgstr "مرتبط بـ" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -174,19 +174,19 @@ msgstr "مرتبط بـ" msgid "Comments" msgstr "التعليقات" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "أساسي" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -194,13 +194,13 @@ msgstr "أساسي" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -208,17 +208,17 @@ msgstr "أساسي" msgid "No" msgstr "لا" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -227,13 +227,13 @@ msgstr "لا" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -245,15 +245,15 @@ msgstr "نعم" msgid "View dump (schema) of database" msgstr "عرض مخطط تصدير قاعدة البيانات" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "لم يعثر على جداول في قاعدة البيانات." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -262,8 +262,8 @@ msgid "Tables" msgstr "جداول" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -271,10 +271,10 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -287,29 +287,29 @@ msgstr "بناء" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "بيانات" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "تحديد الكل" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "تمت إعادة تسمية قاعدة البيانات %1$s إلى %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "تم نسخ قاعدة البيانات %1$s إلى %2$s." @@ -320,37 +320,37 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "تم تعطيل phpMyAdmin لتهيئة التخزين . لمعرفة السبب اضغط %sهنا%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "عليك اختيار عمود واحد على الأقل للعرض!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "التحويل إلى %s الباني المرئي %s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "ممنوع الوصول!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "تم مسح بيانات تتبع التغيرات بنجاح ." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "الإصدار %1$s تم إنشاءه للجداول المحدده , التتبع نشط للجداول." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "لم يتم تحديد أى جداول ." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "سجل قاعدة البيانات" @@ -386,131 +386,131 @@ msgstr "نوع غير جيد!" msgid "Bad parameters!" msgstr "عوامل متغيرة غير جيدة!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "قيمة العمود \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "إستعمل خريطة الشوارع الحرة كطبقة أساسية" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID :" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "هندسة %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "نقطة:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "س" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "ص" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "نقطة %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "إضافة نقطة" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "منحنى %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "الحلقة الخارجية :" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "الحلقة الداخلية %d :" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "إضافة منحنى" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "إضافة حلقة الداخلية" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "مضلع %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "إضافة مضلع" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "أضف هندسة" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "إنطلق" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "المخرجات" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -518,19 +518,19 @@ msgstr "" "اختر \"جيومفرومتيكست\" من العمود \"دالة\" ولصق السلسلة أدناه في الحقل " "\"القيمة\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "نجحت" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "فشل" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "إدخال غير كامل" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -539,15 +539,15 @@ msgstr "" "من المحتمل أنك قد حاولت رفع ملف كبير الحجم. الرجاء مراجعة %sdocumentation%s " "لإيجاد حلّ بديل لتغيير هذا الحد." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "عرض العلامة المرجعية" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "لقد حذفت العلامة المرجعية." -#: import.php:489 +#: import.php:486 #, fuzzy msgid "" "No data was received to import. Either no file name was submitted, or the " @@ -558,16 +558,16 @@ msgstr "" "الأقصى لحجم يسمح بتكوين PHP الخاص بك. انظر[doc@faq1-16] أسئلة وأجوبة 1.16[/" "doc]" -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "لم أتمكن من تحميل قوابس الاستيراد، الرجاء فحص تثبيتك!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "تم إنشاء العلامة المرجعية %s." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -578,7 +578,7 @@ msgstr[3] "الإستيراد إنتهى بنجاح , %d إستعلام تم ت msgstr[4] "الإستيراد إنتهى بنجاح , %d إستعلام تم تنفيذه." msgstr[5] "الإستيراد إنتهى بنجاح , %d إستعلام تم تنفيذه." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -587,13 +587,13 @@ msgstr "" "انتهت مهلة البرنامج النصي، إذا كنت ترغب في إنهاء الاستيراد، الرجاء %s إعادة " "إرسال نفس الملف%s وسوف تستأنف الاستيراد." -#: import.php:632 +#: import.php:629 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 "" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "أمر \"حذف قاعدة البيانات\" معطل." @@ -601,17 +601,17 @@ msgstr "أمر \"حذف قاعدة البيانات\" معطل." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "رجوع" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin الخادم التجريبي" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -619,124 +619,124 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General Settings" msgid "General settings" msgstr "الإعدادات العامة" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "تغيير كلمة السر" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "إعدادات الأتصال بالخادم" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "Appearance Settings" msgid "Appearance settings" msgstr "إعدادات المظهر" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "المزيد من الإعدادات" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "خادم قاعدة بيانات" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "الخادم:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "نوع الخادم :" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "إصدار الخادم :" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "نسخة البروتوكول :" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "المستخدم :" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "مجموعة أحرف الخادم :" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "خادم الويب" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "إصدار عميل قاعدة البيانات :" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP إمتداد:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP إصدار :" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "بيانات الإصدار:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "مستندات وثائقية" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "الصفحة الرئيسية الرسمية لـ phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "مشاركه" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "اجلب دعم" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "قائمة التعديلات" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "رخصة" -#: index.php:443 +#: index.php:444 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 "" -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -744,21 +744,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -766,7 +766,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -778,19 +778,19 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" "%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -972,7 +972,7 @@ msgid "Save & close" msgstr "حفظ كملف" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "إعادة تعيين" @@ -1014,7 +1014,7 @@ msgstr "إضافة فهرس" msgid "Edit index" msgstr "حرّر الفهرس" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" @@ -1050,10 +1050,10 @@ msgstr "أضف %d عمود/عواميد إلى الفهرس" msgid "You have to add at least one column." msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1069,7 +1069,7 @@ msgstr "في الإستعلام" msgid "Matched rows:" msgstr "الصفوف المتأثرة:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1090,13 +1090,13 @@ msgstr "إسم المستضيف فارغ!" msgid "The user name is empty!" msgstr "إسم المستخدم فارغ!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "كلمة المرور فارغة !" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" @@ -1104,8 +1104,8 @@ msgstr "كلمتا المرور غير متشابهتان !" msgid "Removing Selected Users" msgstr "حذف المستخدمين المحددين" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "أغلاق" @@ -1134,19 +1134,19 @@ msgstr "لقد تمّ حذف الصّف" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "آخر" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1260,40 +1260,40 @@ msgid "Processes" msgstr "عمليات" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "كيلوبايت" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "ميجابايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "جيجابايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "تيرابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "بيتابايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "إكسابايت" @@ -1311,7 +1311,7 @@ msgstr "العمليات" msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "الإعدادات" @@ -1327,16 +1327,16 @@ msgid "Please add at least one variable to the series!" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "لا شيء" @@ -1523,20 +1523,20 @@ msgstr "جاري التحليل…" msgid "Explain output" msgstr "إشرح الخرج" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "الحالة" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "وقت" @@ -1618,10 +1618,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "استيراد" @@ -1700,7 +1700,7 @@ msgstr "عوامل متغيرة غير جيدة!" msgid "Cancel" msgstr "ألغاء" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" @@ -1750,8 +1750,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "لا قواعد بيانات محددة." @@ -1799,7 +1799,7 @@ msgstr "نسخ قاعدة البيانات" msgid "Changing charset" msgstr "تغيير مجموعة المحارف" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1831,74 +1831,79 @@ msgstr "استعراض" msgid "Deleting" msgstr "حذف" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "حذف التشابهات لجدول %s ؟" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة RETURN !" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "تصدير" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "القيم للعمود %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "القيم لعمود جديد" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "أدخل كل قيمة بحقل منفصل" -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "إضافة قيمة/قيم %d" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "ملاحظة: إذا كان الملف يحتوي على جداول متعددة , سيتم تجميعها فى جدول واحد." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "إخفاء صندوق الإستعلام" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "إظهار صندوق الإستعلام" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1906,108 +1911,108 @@ msgstr "إظهار صندوق الإستعلام" msgid "Edit" msgstr "تعديل" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "حذف" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d ليس رقم عمود صالح." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "متغير" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "اختيار" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "بحث في قاعدة البيانات" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "الذاكرة الحرة" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "هل أنت متأكد؟" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "مشاركه" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "تم إضافة المفتاح الأساسي في %s" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "تقرير التتبع" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2015,365 +2020,365 @@ msgstr "" msgid "End of step" msgstr "في نهاية الجدول" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "إنتهى" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "تأكيد تبعيات جزئية" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "خطوة" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "حفظ" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "بحث في الجدول" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "اسم العمود" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "اسم العمود" -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "جداول أكبر" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "جداول أكبر" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "كل نقطة تمثل صف بيانات." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "لإستعمال المقربة، إختر جزء من رسم البيانات بواسطة الفأرة." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "أنقر زر الإسعادة للمقربة للرجوع إلى الحالة الأصلية." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "أنقر على نقطة من البيانات لمشاهدة و ربما تحرير سطر البيانات." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "يمكن تغيير قياس الرسم البياني من خلال سحبه على طول القرنة في أسفل اليمين." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "إختر عمودين" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "إختر عمودين مختلفين" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "محتوى نقطة البيانات" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "نسخ" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "نقطة" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "منحنى" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "مضلع" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "هندسة" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "الحلقة الداخلية" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "الحلقة الخارجية :" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "مفتاح التشفير" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "إختيار المفتاح المرجع" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "إختيار المفتاح الغريب" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "فضلاً أختر المفتاح الرئيسي أو المفتاح الفريد" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحة رقم:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "اختر الجداول" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "اختر الجداول" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "صفحات حرة" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "اختر الجداول" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "سعرة" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "رجاء اختر صفحة لتعديلها" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "بناء الارتباطات" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "إضافة خيار للعمود " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "إرسال" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "إضغط escape لإلغاء التعديل" -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2381,185 +2386,185 @@ msgstr "" "لقد تم التعديل على بعض البيانات ولم يتم حفظها. هل تريد ترك هذه الصفحة بدون " "حفظ البيانات الجديدة؟" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "إسحب لإعادة الترتيب" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "إضغط لوضع علامة / إزالة علامة" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "أنقر مرتين لنسخ اسم العمود" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "عرض الكل" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "منحنى" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ألغاء" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "ألغي" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "نجاح" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "إفتراضيات الإستيراد" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "إسقاط الملفات هنا" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "اختر الجداول" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "طباعة" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by double-clicking directly on them." msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى." -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by clicking directly on them." msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى." -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ذهاب للرابط" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "أنسخ اسم العمود" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "توليد" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "أكثر" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "عرض الكل" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "إخفاء الفهارس" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "عرض الشعار في الإطار الأيسر" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2569,120 +2574,120 @@ msgstr "" "هو %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", آخر إصدار مستقر:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "محدثة" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "إنشاء عرض" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير الإعدادات" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Import files" msgid "Show report details" msgstr "استورد الملفات" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "تجاهل" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "أعرض هذا الاستعلام هنا مرة أخرى" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Issued queries" msgid "%s queries executed %s times in %s seconds." msgstr "إستعلامات صادرة" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تعليقات الجدول" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "إخفاء نتائج البحث" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2691,385 +2696,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "نسخ قاعدة البيانات إلى" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "إضافة حقل جديد" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "استبدال بادئة الجدول" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "نسخ الجدول مع البادئة" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "سابق" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "اليوم" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "يناير" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "فبراير" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "مارس" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "أبريل" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "مايو" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "يونيو" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "يوليو" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "أغسطس" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "سبتمبر" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "أكتوبر" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "نوفمبر" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "الأحد" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "الإثنين" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "الجمعة" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "الأسبوع" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "التقويم-الشهر-السنة" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "لا شيء" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "الساعة" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "الثانية" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "استخدم حقل نص" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "خطأ" @@ -3133,20 +3158,20 @@ msgid "Charset" msgstr "مجموعة المحارف" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "ثنائي" @@ -3343,7 +3368,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "غير معروفة" @@ -3395,7 +3420,7 @@ msgstr "يبدو أن هناك خطأ في بناء الجملة." msgid "Font size" msgstr "حجم الخط" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3406,49 +3431,49 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Table Search" msgid "No bookmarks" msgstr "بحث في الجدول" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "صندوق إستعلام SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "فشل قراءة ملف الإعدادات" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "التفاصيل…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "مدخلات مفقودة:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3556,67 +3581,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "إستعلام SQL في قاعدة البيانات %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "إرسال الإستعلام" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "إبحث" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Table Search" msgid "New bookmark" msgstr "بحث في الجدول" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Table Search" msgid "Create bookmark" msgstr "بحث في الجدول" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "عرض العلامة المرجعية" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Table Search" msgid "Delete bookmark" msgstr "بحث في الجدول" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "على الأقل أحد الكلمات" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "كل الكلمات" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "الجملة بالضبط" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "كتعبير قياسي" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتائج البحث عن \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3627,7 +3652,7 @@ msgstr[3] "المجموع: %sتطابق" msgstr[4] "المجموع: %sتطابق" msgstr[5] "المجموع: %sتطابق" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3640,48 +3665,43 @@ msgstr[3] "%s مطابقة في الجدول %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "استعراض" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "حذف التشابهات لجدول %s ؟" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "بحث في قاعدة البيانات" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "ابحث:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "الكلمات مفصولة بمسافة (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "داخل الجداول:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "عدم تحديد الكل" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "داخل العمود:" @@ -3705,30 +3725,30 @@ msgstr "مرشح" msgid "Search this table" msgstr "بحث في قاعدة البيانات" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "بداية" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "سابق" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "التالي" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "نهاية" @@ -3737,7 +3757,7 @@ msgstr "نهاية" msgid "All" msgstr "الكل" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "عدد الأسطر:" @@ -3746,8 +3766,8 @@ msgstr "عدد الأسطر:" msgid "Sort by key" msgstr "رتّب حسب الْمفتاح" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3769,10 +3789,10 @@ msgstr "رتّب حسب الْمفتاح" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "خيارات" @@ -3814,35 +3834,35 @@ msgstr "نصّ معروف جيّداً" msgid "Well Known Binary" msgstr "ثنائي معروف جيّداً" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "لقد تمّ حذف الصّف" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "حذف" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأسئلة المتكررة 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "تم تنفيذ إستعلام SQL بنجاح" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3851,74 +3871,74 @@ msgstr "" "لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ " "%sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "أظهر الصفوف" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "المجموع" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "مع المحدد:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "تحديد الكل" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "عمليّات على نتائج الإستعلام" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "عرض الرّسم البياني" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "إبداء بيانات نظام المعلومات الجغرافية للعيان" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "لم يمكن إيجاد الوصلة" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -3926,7 +3946,7 @@ msgid "None" msgstr "لا شيء" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3934,27 +3954,27 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "كثيراً من رسائل الخطأ، لن تعرض كلها." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "استيراد" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic layout" msgid "Automatically send report next time" msgstr "مظهر تلقائي" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "الملف لم يكن مرفوعاً." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "إنّ الملف المرفوع يتجاوز توجيهة upload_max_filesize في الملف php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3962,79 +3982,79 @@ msgstr "" "إنّ الملف المرفوع يتجاوز التوجيهة MAX_FILE_SIZE اللتي تم تحديدها في إستمارة " "الــHTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "تم رفع جزء من الملف فقط." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "المجلد المؤقت مفقود." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "فشلت عملية كتابة الملف على القرص." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "رفع الملف إستوقف من قبل الامتداد." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "خطأ غير معروف عند رفع الملف." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "لا يمكن قراءة الملف!" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "خطأ عند نقل الملف المرفوع , إنظر :[doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "خطأ عند نقل الملف المرفوع." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "لايمكن قراءة الملف المرفوع." -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "انت تحاول رفع ملف بصيغة ضغط غير معروفة (%s)." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "إفتح نافذة phpMyAdmin جديدة" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Javascript must be enabled past this point" msgid "Javascript must be enabled past this point!" @@ -4045,20 +4065,20 @@ msgid "No index defined!" msgstr "لم يتم تعريف الفهرس!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "فهارس" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4068,78 +4088,78 @@ msgstr "فهارس" msgid "Action" msgstr "العملية" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "اسم المفتاح" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "فريد" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "محزم" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "تعليق" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "لقد تم حذف المفتاح الأساسي." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "تم حذف الفهرس %s." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "سقّط" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "رقم الصفحة:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "لغة" @@ -4163,11 +4183,11 @@ msgstr "خادم" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4186,14 +4206,15 @@ msgid "View" msgstr "عرض" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4202,8 +4223,8 @@ msgid "Table" msgstr "الجدول" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4211,45 +4232,45 @@ msgstr "الجدول" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "إبحث" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "إدخال" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "الإمتيازات" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "تتبع" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4265,16 +4286,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4282,22 +4303,22 @@ msgstr "" msgid "Events" msgstr "أحداث" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "المصمم" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "عواميد منطقة النص" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "قاعدة بيانات" @@ -4308,39 +4329,39 @@ msgid "User accounts" msgstr "المستخدمون" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "إستنساخ" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "متغيرات" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "محركات" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "القوابس" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4351,7 +4372,7 @@ msgstr[3] "%1$d صفوف تأثرت." msgstr[4] "%1$d صفوف تأثرت." msgstr[5] "%1$d صفوف تأثرت." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4362,7 +4383,7 @@ msgstr[3] "%1$d صفوف حذفت." msgstr[4] "%1$d صفوف حذفت." msgstr[5] "%1$d صفوف حذفت." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4430,29 +4451,29 @@ msgstr "متغيرات" msgid "Favorites" msgstr "متغيرات" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "اسم المستخدم %s موجود مسبقاً!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4516,7 +4537,7 @@ msgstr "تبين الجداول المفتوحة" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4580,85 +4601,85 @@ msgstr[3] "الدقيقة" msgstr[4] "الدقيقة" msgstr[5] "الدقيقة" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "لايوجد معلومات تفصيلية لحالة محرك التخزين هذا." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s هو محرك التخزين الغيابي على خادم الMySQL هذا." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s متوفر في خادم MySQL هذا." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s معطل في خادم MySQL هذا." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr "حالة الجدول غير معروفة: " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "لم يعثر على قاعدة البيانات المصدر `%s`!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "لم يعثر على قاعدة البيانات الهدف `%s`!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "قاعدة البيانات غير صالحة" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "اسم الجدول غير صالح" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "تمّت تسمية الجدول %1$s إلى %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "لا يمكن حفظ تفضيلات جدول UI" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4666,19 +4687,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "اسم المفتاح الأساسي يجب أن يكون أساسيا \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "لايمكن تغيير اسم الفهرس إلى الأساسي!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "أجزاء الفهرسة غير معرفة!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4947,7 +4968,7 @@ msgid "Date and time" msgstr "التاريخ والوقت" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "السلسلة" @@ -4962,72 +4983,72 @@ msgstr "" msgid "Max: %s%s" msgstr "كبير: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "بيانات ثابتة" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "شرح SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بدون كود PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "إرسال الإستعلام" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "أنشئ كود PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "تحديث" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "جانبي" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5035,65 +5056,65 @@ msgid "Edit inline" msgstr "وضع التعديل" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "الأحد" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "مدخلات مفقودة:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "الذهاب إلى قاعدة البيانات \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "إنّ ال %s الوظيفية هي مصابة بعطل معروف، أنظر إلى %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "تصفح حاسبك:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "لا يمكن الوصول إلى الدليل اللذي عينته لعمل التحميل." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "إفراغ" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "تنفيذ" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "المستخدمون" @@ -5107,7 +5128,7 @@ msgstr "لكل دقيقة" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "لكل ساعة" @@ -5115,14 +5136,14 @@ msgstr "لكل ساعة" msgid "per day" msgstr "يومياً" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "إبحث" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5130,7 +5151,7 @@ msgstr "إبحث" msgid "Description" msgstr "الوصف" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "إستعمل هذه القيمة" @@ -5171,22 +5192,22 @@ msgstr "نعم" msgid "NO" msgstr "لا" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "الاسم" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "الطول/القيمة" @@ -5197,7 +5218,7 @@ msgstr "الطول/القيمة" msgid "Attribute" msgstr "الخواص" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5218,13 +5239,13 @@ msgstr "إضافة عمود" msgid "Select a column." msgstr "إختر عمودين" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "إضافة عمود" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5232,34 +5253,34 @@ msgstr "إضافة عمود" msgid "Attributes" msgstr "الخواص" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "فهرس خادم غير صحيح: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "إسم المضيف غير صحيح للخادم %1$s." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "خادم" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "اسلوب مصادقة غير صحيح في الإعدادات:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5267,20 +5288,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك الترقية إلى %s%s أو لاحقا." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "إستغلال محتمل" @@ -5870,7 +5891,7 @@ msgid "Compress on the fly" msgstr "ضغط" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "ملف التكوين" @@ -5990,13 +6011,13 @@ msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: ل msgid "Maximum execution time" msgstr "وقت التنفيذ الأقصى" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "أوامر" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "حفظ كملف" @@ -6006,7 +6027,7 @@ msgstr "مجموعة الأحرف للملف" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "صيغة" @@ -6141,7 +6162,7 @@ msgid "Save on server" msgstr "حفظ في الخادم" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "خزن على الملفات الموجودة" @@ -6156,7 +6177,7 @@ msgid "Remember file name template" msgstr "تذكر إسم قالب الملف" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" @@ -6165,7 +6186,7 @@ msgid "Enclose table and column names with backquotes" msgstr "محاصرة أسماء الجداول و العواميد ب \"`\"" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "وضع توافق SQL" @@ -6201,7 +6222,7 @@ msgstr "تعقب التغيرات الحاصلة على قاعدة البيان #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "أضف %s" @@ -6399,7 +6420,7 @@ msgid "Customize the navigation tree." msgstr "تخصيص اطار التصفح" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "خوادم" @@ -7383,7 +7404,7 @@ msgstr "" msgid "Authentication method to use." msgstr "خيارات المصادقة" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8056,7 +8077,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8064,10 +8085,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8220,25 +8241,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "مستند مفتوح" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "تم إفراغ محتويات الجدول %s." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "تم إزالة %s من العرض" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8253,12 +8274,12 @@ msgid "Position" msgstr "موضع" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "نوع الحدث" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "رقم الخادم" @@ -8267,7 +8288,7 @@ msgid "Original position" msgstr "الوضع الأصلي" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "معلومات" @@ -8281,16 +8302,16 @@ msgstr "احذف الاستعلامات المعروضة" msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "لايوجد قواعد بيانات" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "تم إنشاء قاعدة البيانات %1$s." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8302,26 +8323,26 @@ msgstr[3] "تم حذف قواعد البيانات %s بنجاح." msgstr[4] "تم حذف قواعد البيانات %s بنجاح." msgstr[5] "تم حذف قواعد البيانات %s بنجاح." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "صفوف" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "مجموع كلي" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "الحمل الزائد" @@ -8350,35 +8371,35 @@ msgstr "" msgid "Enable statistics" msgstr "مكن الإحصائيات" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "متغيرات وإعدادات الخادم" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "لايوجد بيانات" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8439,7 +8460,7 @@ msgstr "تم حذف المستخدمين المحددين بنجاح." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "خطأ في الإستعلام" @@ -8457,12 +8478,12 @@ msgstr "تغيير" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "فهرست" @@ -8485,13 +8506,13 @@ msgstr "النص كاملا" msgid "Distinct values" msgstr "إستعرض القيم المميزة" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "لا تغييرات" @@ -8513,191 +8534,195 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "لم أتمكن من تحميل قوابس الاستيراد، الرجاء فحص تثبيتك!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "لا كلمة سر" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "كلمة المرور:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "أعد كتابة" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "كلمة المرور:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "تصدير قواعد المعطيات من الخادم الحالي" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "تصدير الجداول من قاعدة المعطيات \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "تصدير الأسطر من الجدول \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "نوع التصدير" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "قالب اسم الملف:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "اسم الجدول" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "تكوين" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "قالب اسم الملف:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s جدول (جداول)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "محدث" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "اختر الجداول" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "نوع التصدير" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "قاعدة بيانات" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "جداول" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "الصيغة:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "إعدادات الصيغة المخصصة:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" "اسحب للأسفل لتعيين خيارات الصيغة المختارة و لتجاهل إعدادات الصيغ الأخرى." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "تحويل ترميز النص:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "الأسطر:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "إحفظ على الخادم في الدليل %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "قالب اسم الملف:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8705,115 +8730,115 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "استخدم هذه الإعدادات مجدداً عند تصدير قاعدة البيانات في المستقبل" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "ترميز الأحرف للملف:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "الضغظ:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "مضغوط" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "مضغوط: gzipped" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "عرض الخرج كنص" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "تصدير الأسطر من الجدول \"%s\"" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr ")عناوين ملتفة( أفقيا" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "إحفظ الخرج في ملف" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "اختر الجداول" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "اختر الجداول" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "اسم قاعدة البيانات" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "User name" msgid "New table name" msgstr "اسم المستخدم" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "أنسخ اسم العمود" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "أنسخ اسم العمود" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "انشئ إصدار %s لـ %s.s%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -9230,90 +9255,90 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "لا توجد مساحة كافية لحفظ الملف %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "الملف %s موجود على الخادم بالفعل , غير الاسم أو حدد خيار الكتابة عليه." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "لايوجد قواعد بيانات" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "البنية فقط" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9324,88 +9349,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "إنشاء فهرس للعمود %s" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "أخفاء" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "دالة" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "أو" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "تحرير/إدخال" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "وبعدها" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9416,31 +9442,31 @@ msgstr "" msgid "Value" msgstr "القيمة" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "نجاح!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "البنية فقط" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "البنية والبيانات" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "بيانات فقط" @@ -9451,14 +9477,14 @@ msgid "Add AUTO INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "أضف قيود" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9521,8 +9547,8 @@ msgstr "عمليات" msgid "Views:" msgstr "عرض" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "عرض" @@ -9573,19 +9599,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "حفظ كملف" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9601,7 +9627,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "إضافة أعمدة" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9624,7 +9650,7 @@ msgstr "" msgid "Database operations" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9727,13 +9753,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "إختر عمودين" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9989,8 +10015,8 @@ msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10038,183 +10064,183 @@ msgstr "(فردي)" msgid "Move table to (database.table)" msgstr "نقل جدول إلى (قاعدة بيانات.جدول)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "تغيير اسم جدول إلى" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "تعليقات الجدول" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "خيارات الجدول" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "أنسخ الجدول إلى (database.table)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "بدل إلى الجدول المنسوخ" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "صيانة الجدول" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "تحليل الجدول" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "التحقق من الجدول" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "التحقق من الجدول" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "إلغاء تجزئة الجدول" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "لقد تم إعادة تحميل الجدول %s بنجاح." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "إعادة تحميل الجدول (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "تحسين الجدول" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "إصلاح الجدول" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "حذف البيانات او الجدول" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "إفراغ الجدول (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "حذف الجدول (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "حلل" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "تحقق" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "تحسين" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "إعادة بناء" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "إصلاح" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "أغلاق" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "تقسيم %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "إزالة التقسيم" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "لايمكن نقل الجدول إلى نفسه!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "لا يمكن نسخ الجدول إلى نفسه!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s جدول تم نقله إلى %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s جدول تم نقله إلى %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "اسم الجدول فارغ!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10244,25 +10270,25 @@ msgstr "أظهر اللون" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "لايمكن الإتصال: إعدادات غير صحيحة." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "أهلا بك في %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10273,7 +10299,7 @@ msgstr "" "المستضيف، أو اسم المستخدم وكلمة المرور في ملف الإعداد config.inc.php وتتأكد " "أنها مطابقة للمعلومات المعطاة إليك من قبل المسؤول عن خادم MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10300,15 +10326,15 @@ msgstr "اسم المستخدم:" msgid "Server Choice:" msgstr "اختيار الخادم" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10381,7 +10407,7 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" @@ -10390,7 +10416,7 @@ msgstr "إرجاع أو استيراد بيانات الجدول" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "حدث" @@ -10398,8 +10424,8 @@ msgstr "حدث" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10505,7 +10531,7 @@ msgstr "ضع أسماء الحقول في السطر الأول" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11070,7 +11096,7 @@ msgstr "جدول المحتويات" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "إضافي" @@ -11469,18 +11495,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "بدون وصف" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11490,13 +11516,13 @@ msgid "" "configuration storage there." msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11504,28 +11530,28 @@ msgstr "" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11534,316 +11560,316 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "فرض إتصال SSL" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "البنية فقط" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "البنية فقط" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "اسم المستخدم" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "اسم المستخدم" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "كلمة السر" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Portrait" msgid "Port:" msgstr "طول الصفحة" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "متغير" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "المزود" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "أي مزود" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "محلي" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "هذا المضيف" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "أي مستخدم" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "استخدم حقل نص" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "أعد كتابة" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "توليد كلمة مرور" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "خطأ" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "تم إعادة قراءة الصلاحيات بنجاح." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, fuzzy, php-format @@ -11868,7 +11894,7 @@ msgstr "تم تعديل الإجراء %1$s" msgid "Event %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -11882,90 +11908,90 @@ msgstr "حصل خطأ أثناء معالجة طلبك: " msgid "Edit event" msgstr "حدث" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "نوع الحدث" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "تغيير" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 #, fuzzy #| msgid "Execute" msgid "Execute at" msgstr "تنفيذ" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute" msgid "Execute every" msgstr "تنفيذ" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "بدء التشغيل" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "نهاية" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "إدخال كامل" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "اسم الجدول غير صالح" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -11988,7 +12014,7 @@ msgstr "" msgid "The backed up query was:" msgstr "الإستعلام الإحتياطي:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -12010,136 +12036,136 @@ msgstr "" "المتعددة. فتنفيذ بعض الإجراءات المخزنة قد تفشل! الرجاء استخدام " "ملحق 'mysqli' لتجنب أي مشاكل." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "تعديل الإجراء" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "نوع الإجراء غير صحيح: %s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "تم تعديل الإجراء %1$s." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "تم تعديل الإجراء %1$s." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "اسم العمود" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "معايير" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "الإنشاء" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "إضافة حقل جديد" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "حذف قاعدة البيانات" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "الطول/القيمة" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "خيارات الجدول" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "نوع الاستعلام" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "اسم الجدول غير صالح" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "نتائج تنفيذ الإجراء %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12152,13 +12178,13 @@ msgstr[3] "%d تأثر بالإجراء الأخير" msgstr[4] "%d تأثر بالإجراء الأخير" msgstr[5] "%d تأثر بالإجراء الأخير" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "تنفيذ" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12186,44 +12212,44 @@ msgstr "تم إنشاء الإجراء %1$s." msgid "Edit trigger" msgstr "أضف مستخدم جديد" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "اسم الخادم" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "وقت" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "اسم الجدول غير صالح" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "اسم الجدول غير صالح" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "اسم الجدول غير صالح" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "اسم الجدول غير صالح" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12362,90 +12388,90 @@ msgstr "مجموعات المحارف وCollations" msgid "Databases statistics" msgstr "إحصائيات قواعد البيانات" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "لا صلاحيات." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12454,134 +12480,106 @@ msgstr "" "يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " "كضبط الإعدادات العامة other users." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "يسمح بقفل الجداول للعملية الحالية." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping indexes." msgid "Allows creating and dropping triggers." msgstr "يسمح بإنشاء وحذف الفهارس." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "لا شيء" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "الإتصالات الثابتة" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "الإتصالات الثابتة" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "حدود المصادر" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12589,406 +12587,385 @@ msgstr "" "يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " "بيانات." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" msgid "Routine" msgstr "إضافة حقل جديد" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows creating and dropping indexes." msgid "Allows altering and dropping this routine." msgstr "يسمح بإنشاء وحذف الفهارس." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows deleting data." msgid "Allows executing this routine." msgstr "يسمح بحذف البيانات." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "إدارة" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "صلاحيات عامة" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "عام" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "المصادقة" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "تغيير كلمة السر" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authentication" -msgid "Native MySQL Authentication" -msgstr "المصادقة" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "بيانات الدخول" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "اسم المستخدم" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "اسم السجل" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "المصادقة" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "كلمة المرور:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "لقد أبطلت الامتيازات لـ %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "إضافة مستخدم" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "تحقق من الصلاحيات لقاعدة بيانات \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "المستخدمين ذوي صلاحية الوصول إلى \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "The row has been deleted." msgid "User has been added." msgstr "لقد تم حذف الصف" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "منح" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "أي" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "عام" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "حرف شامل" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "إبطال" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "عدل الصف التالي" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… أبق القديم." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… احذف القديم من جداول المستخدمين." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "احذف المستخدمين المحددين" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "إعادة تحميل الأمتيازات" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "الإمتيازات" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "المستخدم" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "المستخدمون" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "معلومات المستخدم" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13001,7 +12978,7 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13020,11 +12997,11 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." @@ -13329,14 +13306,14 @@ msgstr "أمر" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "مرشح" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show tables" msgid "Show only active" @@ -13366,12 +13343,12 @@ msgstr "لكل دقيقة" msgid "per second:" msgstr "لكل ثانية" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "أوامر" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13403,33 +13380,33 @@ msgstr "شاهد الجدول" msgid "Related links:" msgstr "الروابط" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13437,78 +13414,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13516,7 +13493,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13524,42 +13501,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13567,33 +13544,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13602,244 +13579,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "هيئة الملفات المستوردة" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13847,99 +13824,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13947,18 +13924,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13966,13 +13943,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "التتبع غير نشط." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14009,48 +13986,48 @@ msgstr "قاعدة بيانات" msgid "Table level tabs" msgstr "اسم الجدول" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "إضافة مستخدم" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "إضافة مستخدم" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "لا صلاحيات." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "اسم العمود" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "إصدارة المزود" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "قاعدة بيانات" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14166,7 +14143,7 @@ msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بي msgid "Run SQL query/queries on table %s" msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -14259,180 +14236,180 @@ msgstr "تعطيل الآن" msgid "Version" msgstr "نسخة" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "أنشئ" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "محدث" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "إنشاء إصدار" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "تقرير التتبع" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "لقطة للبناء الهيكلي" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "نشط" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "غير نشط" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "يسمح بإضافة واستبدال البيانات." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "لايوجد بيانات" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "تنفيذ SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "تصدير كـ %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "تاريخ" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "اسم المستخدم" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "لا شيء" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "تتبع التقرير للجدول %s" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "التتبع نشط." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "التتبع نشط." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "انشئ إصدار %s لـ %s.s%s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "تم إنشاء الإصدار %s , التتبع نشط لـ %s.%s" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "الجداول الغير متتبعة" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "تتبع الجدول" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "الجداول المتعقبة" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "آخر إصدار" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "حذف بيانات تتبع التغيرات" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "الإصدارات" @@ -14442,7 +14419,7 @@ msgstr "الإصدارات" msgid "Manage your settings" msgstr "المزايا العامّة للرابط" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14468,7 +14445,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14476,84 +14453,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "استورد الملفات" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "حفظ كملف" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14561,45 +14538,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "امتياز غير موجود" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "تم إيقاف العمليّة %s بنجاح." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "نزل" @@ -14607,101 +14584,100 @@ msgstr "نزل" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "تمت التعديلات" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "تمت التعديلات" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "خادم جديد" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- لا شيء -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "تبرع" @@ -14737,28 +14713,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14773,12 +14749,12 @@ msgstr "لايوجد بيانات" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14791,36 +14767,36 @@ msgstr "عرض بنية الجدول" msgid "Invalid table name" msgstr "اسم الجدول غير صالح" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "لايوجد صفوف مختارة" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "التتبع نشط." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "لايوجد صفوف مختارة" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "تم تنفيذ جمل SQL." @@ -15048,7 +15024,7 @@ msgid "List of available transformations and their options" msgstr "التحويلات المتوفرة" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15073,7 +15049,7 @@ msgstr "" "اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15621,17 +15597,17 @@ msgid "Size" msgstr "الحجم" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "الإنشاء" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "آخر تحديث" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "آخر فحص" @@ -15666,6 +15642,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "حذف بيانات تتبع التغيرات" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15688,10 +15670,47 @@ msgstr "إضافة الصلاحيات على الجدول التالي" msgid "Add privileges on the following table:" msgstr "إضافة الصلاحيات على الجدول التالي" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "لا شيء" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "احذف المستخدمين المحددين" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "حدود المصادر" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15724,7 +15743,7 @@ msgstr "" msgid "Author" msgstr "مؤلف" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15918,7 +15937,7 @@ msgstr "المستخدم" msgid "Comment:" msgstr "تعليق" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15958,28 +15977,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "قيود المفتاح الغريب" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "أضف قيود" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "العلاقات الداخلية" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "العلاقات الداخلية" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16043,13 +16062,13 @@ msgstr "منحنى" msgid "Replaced string" msgstr "روابط ذات صلة" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "مستنسخة" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "معايير بحث إضافية" @@ -16133,7 +16152,7 @@ msgid "at beginning of table" msgstr "في بداية الجدول" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16169,30 +16188,30 @@ msgstr "طول الصف" msgid "Index length" msgstr "طول الصف" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "مقسم" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "إزالة التقسيم" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "عرض نسخة للطباعة" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "المساحة المستخدمة" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "فعال" @@ -16221,33 +16240,33 @@ msgstr "اقترح بناء الجدول" msgid "Track view" msgstr "تتبع الجدول" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "إحصائيات" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "ديناميكي" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "مقسم" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "طول الصف" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "مقاس الصف" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16260,50 +16279,50 @@ msgstr "تم حذف العمود %s." msgid "Click to toggle" msgstr "إضغط للإختيار" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "مظهر" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "الحصول على سمات جديدة!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "أنواع MIME المتوفرة" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "التحويلات المتوفرة" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "التحويلات المتوفرة" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "الوصف" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "تقرير التتبع" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "لقد تم تجديد الملف الشخصي." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -16382,7 +16401,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16407,19 +16426,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "لم يتم تحديد أى جداول ." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16478,29 +16497,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Routine %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "تم إنشاء الإجراء %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "إسم قالب الجدول" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "في بداية الجدول" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16519,10 +16538,16 @@ msgstr "أحرف غير متوقعة على السطر %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "في بداية الجدول" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16567,7 +16592,7 @@ msgstr "" msgid "strict error" msgstr "جمع الأخطاء" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17732,6 +17757,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "المصادقة" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/az.po b/po/az.po index 756118b636..bcd47f5a6f 100644 --- a/po/az.po +++ b/po/az.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:30+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Azerbaijani " -"\n" +"Language-Team: Azerbaijani \n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,31 +27,31 @@ msgstr "" "%s faylı sistemdə yoxdur. Bütün lazımi informasiyanı www.phpmyadmin.net " "saytından tapa bilərsiniz." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Cari Verilənlər Bazası üçün sütunların orta siyahısı boşdur." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Sıralamaq üçün klikləyin." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "%1$s - %2$s sətir göstərilir." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Verilənlər bazasına şərh" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Cədvəl şərhləri:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -63,13 +63,13 @@ msgstr "Cədvəl şərhləri:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -80,9 +80,9 @@ msgstr "Cədvəl şərhləri:" msgid "Column" msgstr "Sütun" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -93,12 +93,12 @@ msgstr "Sütun" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -110,9 +110,9 @@ msgstr "Sütun" msgid "Type" msgstr "Tip" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -123,15 +123,15 @@ msgstr "Tip" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -142,14 +142,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Susmaya görə" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -159,7 +159,7 @@ msgstr "Susmaya görə" msgid "Links to" msgstr "Əlaqələr" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -173,19 +173,19 @@ msgstr "Əlaqələr" msgid "Comments" msgstr "Şərhlər" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Birinci dərəcəli" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -193,13 +193,13 @@ msgstr "Birinci dərəcəli" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -207,17 +207,17 @@ msgstr "Birinci dərəcəli" msgid "No" msgstr "Xeyr" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -226,13 +226,13 @@ msgstr "Xeyr" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -244,15 +244,15 @@ msgstr "Bəli" msgid "View dump (schema) of database" msgstr "Verilənlər bazasının sxemini göster" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Verilənlər bazasında cədvəl yoxdur." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -261,8 +261,8 @@ msgid "Tables" msgstr "Cədvəllər" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -270,10 +270,10 @@ msgstr "Cədvəllər" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,27 +286,27 @@ msgstr "Quruluş" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Məlumat" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Hamısını seç" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Cədvəlin adı göstərilməyib!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "%1$s verilənlər bazasının adı %2$s adına dəyişdirildi." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "%1$s verilənlər bazası %2$s verilənlər bazasına köçürüldü." @@ -319,38 +319,38 @@ msgstr "" "phpMyAdmin konfiqurasiya bazası deaktivləşdirilmişdir. Səbəbini " "aydınlaşdırmaq üçün %sbax%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Göstərilməsi üçün ən az bir sütun seçməlisiniz!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sVizual redaktə%s rejiminə keç" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Giriş Təsdiq Edilmədi!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "İzlənilən dəyər uğurla silindi." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "Seçilən cədvəllər üçün versiya %1$s yaradıldı, bunlar üçün izləmə aktivdir." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Heç bir cədvəl seçilməmişdir." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Verilənlər Bazası Logları" @@ -389,131 +389,131 @@ msgstr "Pis tip!" msgid "Bad parameters!" msgstr "Pis parametrlər!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" sütunu üçün verilən" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Əsas qat olaraq OpenStreetMaps istifadə et" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRİD:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Həndəsə %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Nöqtə:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Nöqtə %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Nöqtə əlavə et" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Sətir sırası %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Xarici halqa:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Daxili halqa %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Sətir sırası əlavə et" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Daxili halqa əlavə et" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Poliqon %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Poliqon əlavə et" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Həndəsə əlavə et" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Davam" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Çıxış" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -521,19 +521,19 @@ msgstr "" "\"Function\" sütunundan \"GeomFrromText\"-i seçin və \"Value\" sahəsinə alta " "sətri yapışdırın." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Uğurlu" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Uğursuz oldu" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Natamam parametrlər" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -542,15 +542,15 @@ msgstr "" "Güman ki, böyük bir fayl göndərməyə çalışırsınız. Zəhmət olmasa bu sərhəddi " "aşmaq üçün %sdokumentasiya%s istifadə edin." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Göstərilən əlfəcin" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Əlfəcin silindi." -#: import.php:489 +#: import.php:486 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 " @@ -560,23 +560,23 @@ msgstr "" "PHP konfiqurasiyanızda icazə verilən limitdən çoxdur. Baxın [doc@faq1-16]FAQ " "1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "İmport pluqini yüklənmədi, zəhmət olmasa quraşdırmanı yoxlayın!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Əlfəcin %s yaradıldı." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "İmport uğurla başa çatdı, %d sorğu yerinə yetirlidi." msgstr[1] "İmport uğurla başa çatdı, %d sorğu yerinə yetirlidi." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -585,13 +585,13 @@ msgstr "" "Skript zaman limitini keçdi, importu tamamlamaq üçün zəhmət olmasa, %shəmin " "faylı yenidən göndərin%s və import davam edəcəkdir." -#: import.php:632 +#: import.php:629 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 "" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." @@ -599,17 +599,17 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." msgid "Could not load the progress of the import." msgstr "İmport prosesinin iləriləmə vəziyyəti yüklənə bilmədi." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Geri" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin Demo Server" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -620,114 +620,114 @@ msgstr "" "ancaq zəhmət olmasa root, debian-sys-maint və pma users istifadəçilərini " "dəyişdirməyin. Daha ətraflı məlumat üçün: %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Ümumi ayarlar" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Parolu Dəyişdir" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Server qoşulma qarşılaşdırması" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Mövzu ayarları" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Daha çox tənzimləmələr" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Verilənlər Bazası Serveri" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Server tipi:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Server versiyası:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protokol versiyası:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "İstifadəçi:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Server kodlaşdırılması:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Web server" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Verilənlər Bazası kliyent versiyası:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP genişlənməsi:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP versiyası:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Versiya informasiyası:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentasiya" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "phpMyAdmin Rəsmi İnternet Səhifəsi" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Kömək etmək" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Dəstək almaq" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Dəyişikliklərin siyahısı" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Lisenziya" -#: index.php:443 +#: index.php:444 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 "" -#: index.php:458 +#: index.php:459 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." @@ -736,7 +736,7 @@ msgstr "" "xəta göndərmə(error reporting) və ya versiya yoxlama kimi bəzi özəlliklər " "deaktiv edildi." -#: index.php:473 +#: index.php:474 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 " @@ -744,23 +744,23 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfiqurasiya faylı üçün gizli parol ifadəsinə ehtiyac " "vardır(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "Konfiqurasiya içindəki (blowfish_secret) gizli parol çox qısadır." -#: index.php:528 +#: index.php:529 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 " @@ -768,7 +768,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -778,14 +778,14 @@ msgstr "" "genişləndirilimiş xüsusiyyətlər deaktiv edildi. Səbəbini öyrənmək üçün " "%sburaya%s klikləyin. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Və yaxud alternativ olaraq ayarlamaq üçün isə hər hansı bazada " "'Əməliyyatlar' bölməsinə gedin." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -794,7 +794,7 @@ msgstr "" "PHP MySQL kitabxananızın %s versiyası,MySQL serverinizin %s versiyasından " "fərqlidir. Bu gözlənilməz davranışa səbəb ola bilər." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -952,7 +952,7 @@ msgid "Save & close" msgstr "Yaddaşa ver və bağla" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Sıfırla" @@ -984,7 +984,7 @@ msgstr "İndeks əlavə et" msgid "Edit index" msgstr "İndeksi redaktə et" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "İndeksə %s sütun əlavə et" @@ -1009,10 +1009,10 @@ msgstr "İndeksə əlavə olunması üçün sütunları seçin." msgid "You have to add at least one column." msgstr "Ən az bir sütun əlavə etməlisiniz." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQL önizləmə" @@ -1024,7 +1024,7 @@ msgstr "Sorğunu simulyasiya et" msgid "Matched rows:" msgstr "Uyğun gələn sətirlər:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL sorğusu:" @@ -1041,13 +1041,13 @@ msgstr "Host adı boşdur!" msgid "The user name is empty!" msgstr "İstifadəçi adı boş qaldı!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" @@ -1055,8 +1055,8 @@ msgstr "Girdiyiniz parollar eyni deyil!" msgid "Removing Selected Users" msgstr "Seçilən İstifadəçilər Silinir" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Bağla" @@ -1078,19 +1078,19 @@ msgstr "Şablon silindi." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Digər" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1192,40 +1192,40 @@ msgid "Processes" msgstr "Prosesler" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "QB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1243,7 +1243,7 @@ msgstr "Suallar" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Tənzimləmələr" @@ -1257,16 +1257,16 @@ msgid "Please add at least one variable to the series!" msgstr "Zəhmət olmasa massivə ən azı bir dəyişən əlavə edin!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Heç biri" @@ -1454,20 +1454,20 @@ msgstr "Analiz edilir…" msgid "Explain output" msgstr "Eksportu açıqla" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Müddət" @@ -1549,10 +1549,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "İmport" @@ -1627,7 +1627,7 @@ msgstr "Pis parametrlər!" msgid "Cancel" msgstr "Ləğv et" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" @@ -1677,8 +1677,8 @@ msgid "Error text: %s" msgstr "Xəta mətni: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Heç bir baza seçilmemişdir." @@ -1726,7 +1726,7 @@ msgstr "Verilənlər Bazası kopyalanır" msgid "Changing charset" msgstr "Kodlaşdırma dəyişdirilir" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "" @@ -1754,73 +1754,78 @@ msgstr "Gözdən keçirilir" msgid "Deleting" msgstr "Silinir" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s cədvəli üçün uyğunlaşmalar silinsinmi?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Eksport" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktoru" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "%s sütunu üçün qiymətlər" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Yeni sütun üçün qiymətlər" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Hər bir qiyməti ayrı sahəyə daxil edin." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "%d qiymət əlavə et" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Qeyd: Əgər faylda çoxlu cədvəl vardırsa, bunlar birinin içərisində " "birləşdiriləcək." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Sorğu qutusunu gizlət" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Sorğu qutusunu göstər" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1828,53 +1833,53 @@ msgstr "Sorğu qutusunu göstər" msgid "Edit" msgstr "Redaktə et" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Sil" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d keçərli sətir sayı deyil." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Dəyişən %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Seç" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Sütun seçici" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Bu siyahıda axtar" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1883,15 +1888,15 @@ msgstr "" "Mərkəzi siyahıda sütun yoxdur. %s Verilənlər Bazası üçün Mərkəzi sütunlar " "siyahısının, cari cədvəldə olmayan sütunlara sahib olduğundan əmin olun." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Daha çoxuna bax" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Əminsiniz?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1899,355 +1904,355 @@ msgstr "" "Bu addım bəzi sütunların tərifini dəyişdirə bilər.
Davam etmək " "istəyirsinizmi?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Davam" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Birinci dərəcəli açar əlavə et" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Birinci Dərəcəli Açar əlavə edildi." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Sizi növbəti addıma aparır…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Normallaşdırmanın ilk addımı '%s' cədvəli üçün tamamlandı." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Addım sonu" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Normallaşdırmanın ikinci addımı(2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Hazırdır" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Göstərilən cədvəli yarat" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Yaddaşa ver" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Axtarış kriteriyalarını gizlət" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Axtarış kriteriyalarını göstər" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Aralıq Axtarma" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Maksimum Sütun:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Minimum Sütun:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimum dəyər:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maksimum dəyər:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını gizlət" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını göstər" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Hər nöqtə bir verilən sətrini təmsil edir." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Nöqtənin üzərində durmaq etiketini göstərəcəkdir." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Orjinal vəziyyətə qayıtmaq üçün yaxınlaşdırmağı sıfırla düyməsinə klikləyin." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "İki fərqli sütun seçin" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Verilən nöqtə məzmunu" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Diqqətə Alma" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Xətt" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poliqon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Daxili halqa %d:" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Xarici halqa:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Şifrələmə açarını kopyalamaq istəyirsinizmi?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Şifrələmə açarı" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Zəhmət olmasa birinci dərəcəli və ya unikal açar seçin!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Göstərmək üçün sütun seçin" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Səhifə adı" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Səhifəni yaddaşa ver" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Səhifəni yaddaşa ver" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Səhifəni aç" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Səhifəni sil" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıqsız" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Zəhmət olmasa davam etmək üçün bir səhifə seçin" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Bu səhifədə dəyişiklikləri yaddaşa vermək istəyirsiniz?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Səhifə uğurla silindi" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Əlaqəli sxemləri eksport et" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modifikasiyalar yaddaşa verildi" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu üçün seçim əlavə edin." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d obyekt yaradıldı." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Submit" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Redaktəni ləğv etmək üçün Esc düyməsinə basın." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2255,157 +2260,157 @@ msgstr "" "Bəzi verilənləri redaktə etdiniz və yaddaşa vermədiniz. Verilənləri yadda " "saxlamadan çıxmaq istəyirsinizmi?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Yenidən düzənləmək üçün sürükləyin." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Nəticələri bu sütuna görə sıralamaq üçün klikləyin." -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamaq üçün iki dəfə klikləyin." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Hamısını göstər" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Zəhmət olamasa keçərli onaltılıq sətir daxil edin. Keçərli simvollar 0-9, A-" "F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Orjinal sətir" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "ləğv et" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Dayandırılmış Əlaqələr" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "İmport statusu" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Əvvəlcə Verilənlər Bazasını seçin" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Çap et" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Bağlantıya get:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Sütun adını buferə kopyalamaq üçün sağ klikləyin." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Parol yarat" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Yarat" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Daha çox" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Paneli Göstər" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Paneli Gizlət" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Gizli naviqasiya ağac bəndlərini göstər." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Əsas panel ilə əlaqələndir" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Əsas panel ilə əlaqəni kəs" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "İstənilən səhifə tarixdə tapılmadı, ola bilsin vaxtı keçib." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2415,56 +2420,56 @@ msgstr "" "versiya %s, %s tarixində yayımlanıb." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", son stabil versiya:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "aktual" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Görünüş yarat" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Xəta hesabatları göndər" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Xəta Hesabatı Göndər" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Önəmli JavaScript xətası yarandı. Xəta hesabatı yollamaq istəyirsiniz?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Hesabat tənzimləmələrini dəyişdir" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Hesabat Təfsilatlarını Göstər" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Eksport PHP səviyyəsindəki aşağı icra(execution) vaxtına görə tamamlanmadı!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2474,64 +2479,64 @@ msgstr "" "edilmədə, bəzi sahələr, PHP-nin max_input_vars konfiqurasiyasından dolayı " "göz ardı edilə bilər." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Serverdə bəzi xətalar aşkar edildi!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Zəhmət olmasa bu pəncərənin altına baxın." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Heç birin diqqətə alma" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Hər tənzimləmələriniz kimi bunlar da hal-hazırda göndərilir, zəhmət olmasa " "səbirli olun." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Bu sorğu təkrar icra olunsunmu?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Bu əlfəcini silmək istədiyinizə əminsinizmi?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Cədvəl haqqında izahat" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Axtarış nəticələrini gizlət" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2540,387 +2545,407 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Verilənlər Bazasını buraya kopyala" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Cədvəl prefiksi əlavə et:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Cədvəl prefiksini dəyiş" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Cədvəli prefiks ilə birgə kopyala" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Əvvəlki" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Bugün" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Yanvar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Fevral" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Mart" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Aprel" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "May" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "İyun" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "İyul" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Avqust" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Sentyabr" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Oktyabr" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Noyabr" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Dekabr" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dek" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Bazar" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Bazar Ertəsi" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Çərşənbə axşamı" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Çərşənbə" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Cümə axşamı" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Cümə" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Şənbə" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "B" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Çərş Axş" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Ç" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "CA" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Ş" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "təqvim-ay-il" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "Heç biri" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Saat" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Dəqiqə" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Saniyə" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Mətn sahəsi istifadə et" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:919 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Lütfən düzgün captcha daxil edin!" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Lütfən düzgün captcha daxil edin!" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Xəta" @@ -2983,20 +3008,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Qarşılaşdırma" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3193,7 +3218,7 @@ msgid "Czech-Slovak" msgstr "Çex-Slovak" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "bilinmir" @@ -3240,28 +3265,28 @@ msgstr "" msgid "Font size" msgstr "Şrift ölçüsü" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Əlfəcinlər yoxdur" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL sorğu konsolu" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Konfiqurasiya faylını oxuma uğursuz oldu!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3269,25 +3294,25 @@ msgstr "" "Server cavab vermir(yada ki lokal MYSQL serverinin soketi duzgün " "konfiqurasiya edilməyib)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Server cavab vermir." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Zəhmət olmasa Bazanın olduğu qovluğun səlahiyyətlərini gözdən keçirin." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detallar…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Əskik parametrlər:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Konfiqurasiya faylınızda göstərilmiş idarəetmə istifadəçiləri üçün qoşulma " @@ -3385,112 +3410,107 @@ msgstr "Ins:" msgid "Del:" msgstr "Del:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "%s Bazasında SQL sorğusu:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Sorğunu göndər" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Yaddaşa verilmiş əlfəcin axtarma:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Yeni əlfəcin" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "əlfəcin yarat" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Əlfəcini yenilə" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Əlfəcini sil" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "sözlərin ən azından birini" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "bütün sözlər" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "tamamilə eyni sözü" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "requlyar ifadə (regular expression) olaraq" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" üçün axtarış nəticələri %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Cəmi: %s uyğunluq" msgstr[1] "Cəmi: %s uyğunluq" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s cədvəlində %1$s uyğunluq" msgstr[1] "%2$s cədvəlində %1$s uyğunluq" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Göz at" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s cədvəli üçün uyğunlaşmalar silinsinmi?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Verilənlər Bazasında axtar" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Axtarmaq üçün söz(lər) və ya verilən(lər) (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Tap:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Sözlər boşluq ifadəsi (\" \") ilə ayrılmışdır." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Cədvəldəkilər:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Heç birini seçmə" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Daxili sütun:" @@ -3510,30 +3530,30 @@ msgstr "Sətirləri filtrlə" msgid "Search this table" msgstr "Bu cədvəldə axtar" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Başlanğıc" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Əvvəlki" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Sonrakı" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Son" @@ -3542,7 +3562,7 @@ msgstr "Son" msgid "All" msgstr "Hamısı" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Sətir sayı:" @@ -3551,8 +3571,8 @@ msgstr "Sətir sayı:" msgid "Sort by key" msgstr "Açara görə sırala" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3574,10 +3594,10 @@ msgstr "Açara görə sırala" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Seçimlər" @@ -3619,29 +3639,29 @@ msgstr "Mətn(WKT)" msgid "Well Known Binary" msgstr "Binar(WKB)" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Sətir silindi." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Söndür" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "SQL sorğunuz müvəffəqiyyətlə icra edilmişdir." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3650,75 +3670,75 @@ msgstr "" "Bu görünüş ən az bu sətirin sayı qədər olur. Zəhmət olmasa %sdokumentasiyaya" "%s baxın." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Göstərilən sətir %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d toplam, %2$d sorğuda" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "cəmi %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "sorğu %01.4f saniyədə icra edildi." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Seçilənləri:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Hamısını Seç" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Diaqram göstər" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "GIS verilənini vizuallaşdır" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link tapılmadı!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Heç biri" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3726,71 +3746,71 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Çoxlu sayda xəta mesajı, bəziləri göstərilə bilmədi." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Hesabat" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Hesabatı növbəti dəfə avtomatik olaraq birbaşa göndər" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Fayl yüklənilmiş bir fayl deyil." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Yüklənən fayl, php.ini içindəki upload_max_filesize uyğun gəlmir." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Yüklənən fayl sadəcə qismən yükləndi." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Faylı diskə yazma uğursuz oldu." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Fayl yükləmə genişlənməsinə görə dayandırrıldı." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Faylın yüklənməsi zamanı naməlum xəta baş verdi." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Fayl oxuna bilmir!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Yüklənən fayl daşınarkən xəta oldu." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Yüklənən fayl oxuna bilmədi(daşınan)." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3799,28 +3819,28 @@ msgstr "" "Dəstəklənməyən sıxışdırmayla (%s) fayl yükləməyi sınadınız. Ya bunun üçün " "hələki dəstək tamamlanmadı ya da konfiqurasiyanız tərəfindən deaktiv edildi." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git informasiyası yoxdur!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin pəncərəsi aç" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Çap görüntüsü" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Bu hissəni keçmək üçün Javascript aktiv olmalıdır!" @@ -3829,20 +3849,20 @@ msgid "No index defined!" msgstr "İndeks təyin edilməyib!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksler" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3852,78 +3872,78 @@ msgstr "Indeksler" msgid "Action" msgstr "Fəaliyyətlər" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Açar söz" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unikal" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Paketləndi" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Şərh" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Birinci dərəcəli açar ləğv edildi." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "%s indeksi ləğv edildi." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Ləğv et" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sehife Nömresi:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Dil" @@ -3947,11 +3967,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3970,14 +3990,15 @@ msgid "View" msgstr "Görünüş" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3986,8 +4007,8 @@ msgid "Table" msgstr "Cədvəl" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3995,45 +4016,45 @@ msgstr "Cədvəl" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Axtarış" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Əlavə et" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Səlahiyyətlər" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Əməliyyatlar" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "İzləmə" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4049,16 +4070,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Verilənlər Bazası boş olaraq görsənir!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Sorğu" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutinlər" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4066,20 +4087,20 @@ msgstr "Rutinlər" msgid "Events" msgstr "Hadisələr" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Orta sütunlar" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Verilənlər Bazaları" @@ -4090,53 +4111,53 @@ msgid "User accounts" msgstr "İstifadəçi qrupları" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binar logu" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Təkrarlanma(replikasiya)" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Dəyişənlər" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "kodlaşdırma" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motorlar" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Qoşmalar" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d sətir təsirləndi." msgstr[1] "%1$d sətir təsirləndi." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d sətir silindi." msgstr[1] "%1$d sətir silindi." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4184,27 +4205,27 @@ msgstr "Favorit cədvəllər" msgid "Favorites" msgstr "Favoritlər" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Bu adda onsuzda giriş var." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Axtarışı silmək üçün yetərli məlumat yoxdur." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Axtarışı yükləmək üçün yetərli məlumat yoxdur." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Axtarış yüklənərkən xəta baş verdi." @@ -4267,7 +4288,7 @@ msgstr "Açıq cədvəlləri göstər" msgid "Show slave hosts" msgstr "Slave hostları göstər" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Master statusunu göstər" @@ -4321,77 +4342,77 @@ msgid_plural "%d minutes" msgstr[0] "%d dəqiqə" msgstr[1] "%d dəqiqə" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Bu depolama motoru haqqında etrafli status me'lumatı mövcud deyildir." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s bu MySQL serverində vardır." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s motoru bu serverde söndürülmüşdür." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s depolama motorunu desteklememektedir." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Bilinməyən cədvəl statusu:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Qaynaq Verilənlər Bazası `%s` tapılmadı!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Hədəf Verilənlər Bazası `%s` tapılmadı!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Etibarsız Verilənlər Bazası:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Etibarsız cədvəl adı:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" "%1$s Cədvəl adını %2$s cədvəl adına dəyişdirmə yerinə yetirilə bilmədi!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s cədvəli %2$s olaraq yenidən adlandırılmışdır." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4399,20 +4420,20 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birinci dərəcəli açarın adı \"PRIMARY\" olmalıdır!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" "İndeksi Birinci dərəcəli (PRIMARY) olaraq yenidən adlandıra bilməzsiniz!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "İndeks qisimleri te'yin edilmedi!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4706,7 +4727,7 @@ msgid "Date and time" msgstr "Tarix və saat" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Sətir" @@ -4721,132 +4742,132 @@ msgstr "Fəza" msgid "Max: %s%s" msgstr "Ən çox: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Kodunu Göstərmə" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Sorğunu göndər" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP Kodunu Hazırla" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Yenilə" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilləmə" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Sətir içi redaktə" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Baz" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dəqiqə və %s saniyə" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Əskik parametrlər:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" verilənlər bazasına keç." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s Funksionallıq bilinən bir xəta tərəfindən zədələnib, baxın %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Kompüterindən seç:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web server upload direktoriyasından%s seçin:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Yüklənəcək fayl yoxdur!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "İcra et" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "İstifadəçilər" @@ -4860,7 +4881,7 @@ msgstr "dəqiqədə" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "saatda" @@ -4868,12 +4889,12 @@ msgstr "saatda" msgid "per day" msgstr "Günə" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Axtarış:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4881,7 +4902,7 @@ msgstr "Axtarış:" msgid "Description" msgstr "Haqqında" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Bu qiymətdən istifadə et" @@ -4918,22 +4939,22 @@ msgstr "BƏLİ" msgid "NO" msgstr "XEYR" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Adı" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Uzunluq/Dəyərlər" @@ -4944,7 +4965,7 @@ msgstr "Uzunluq/Dəyərlər" msgid "Attribute" msgstr "Xüsusiyyətlər" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4961,11 +4982,11 @@ msgstr "Sütun əlavə et" msgid "Select a column." msgstr "Sütun seçin." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Yeni sütun əlavə et" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4973,7 +4994,7 @@ msgstr "Yeni sütun əlavə et" msgid "Attributes" msgstr "Xüsusiyyətlər" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4982,28 +5003,28 @@ msgstr "" "mbstring.func_overload PHP konfiqurasiyanızda aktivləşdirilib. Bu seçim " "phpMyAdmin ilə uyğunlaşmır və bəzi verilənlərin korlanmasına səbəb ola bilər!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Uyğun olmayan server indeksi: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s. serveri üçün uyğun olmayan hostname. Zəhmət olmasa server " "konfiqurasiyalarını gözdən keçirin." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5011,20 +5032,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s vəya yenisinə yüksəltməlisiniz." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5570,7 +5591,7 @@ msgid "Compress on the fly" msgstr "Anında sıxışdır" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfiqurasiya faylı" @@ -5676,13 +5697,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s ifadəsi əlavə et" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Fayl olaraq yaddaşa ver" @@ -5692,7 +5713,7 @@ msgstr "Faylın kodlaşdırması(charset)" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -5819,7 +5840,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Mövcud fayl(lar)ın üzərinə yaz" @@ -5834,7 +5855,7 @@ msgid "Remember file name template" msgstr "Fayl adı şablonunu xatırla" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT dəyəri əlavə et" @@ -5843,7 +5864,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Cədvəl və sütun adlarını tək dırnaq arasına al" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL uyğunluq rejimi" @@ -5873,7 +5894,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -6045,7 +6066,7 @@ msgid "Customize the navigation tree." msgstr "Naviqasiya panelini özəlləşdir" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serverlər" @@ -6912,7 +6933,7 @@ msgstr "" msgid "Authentication method to use." msgstr "İstifadə üçün identifikasiya metodu." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7627,7 +7648,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Son versiyanı yoxla" @@ -7635,10 +7656,10 @@ msgstr "Son versiyanı yoxla" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Əsas phpMyAdmin səhifəsində son versiya yoxlamağı aktiv et." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versiya yoxlaması" @@ -7777,24 +7798,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Mətni" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Seçilmiş siyahı doludur!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s cədvəli boşaldıldı." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "%s görünüşünü yığışdır." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "%s cədvəli ləğv edildi." @@ -7808,12 +7829,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Hadisə tipi" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server ID" @@ -7822,7 +7843,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "İnformasiya" @@ -7836,42 +7857,42 @@ msgstr "" msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Verilənlər Bazası yoxdur" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s verilənlər bazası yaradıldı." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d bazası müvəffəqiyyətlə ləğv edildi." msgstr[1] "%1$d bazası müvəffəqiyyətlə ləğv edildi." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Sıra sayı" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Cəmi" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Aşma dəyəri" @@ -7900,33 +7921,33 @@ msgstr "" msgid "Enable statistics" msgstr "Statistikaları Aktivləşdir" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view server variables and settings. %s" msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Göstərmək üçün məlumat yoxdur" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s cədvəli uğurlu bir şəkildə dəyişdirildi." @@ -7974,7 +7995,7 @@ msgstr "Sütunlar uğurlu şəkildə daşındı." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Sorğu xətası" @@ -7992,12 +8013,12 @@ msgstr "Dəyişdir" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "İndeks" @@ -8018,13 +8039,13 @@ msgstr "Tam metn (Fulltext)" msgid "Distinct values" msgstr "Fərdi qiymətlər" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -8046,188 +8067,192 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "İmport pluqini yüklənmədi, zəhmət olmasa quraşdırmanı yoxlayın!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Parol Yoxdur" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Parol:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Parolun Təkrarı:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "Parol:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Cari serverdən Verilənlər Bazaları eksport edilir" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "\"%s\" Verilənlər Bazasından cədvəllər eksport edilir" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "%s cədvəlindən sətirlər eksport edilir" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Eksport tipi" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Fayl adı şablonu:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Cədvəl adı" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Yarat" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Fayl adı şablonu:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "Keçici disk nisbəti" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Sorğunu Yenile" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "Bir Cədvəl Seç" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Eksport metodu" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Cəld - minimal seçimləri göstər" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Fərdi - Mümkün bütün seçimləri göstər" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Verilənlər Bazaları" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Cədvəllər:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Transformasiya variantları" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Sətirlər:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Çıxış:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Serverdə %s direktoriyasında yaddaşa ver" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Fayl adı şablonu:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8235,102 +8260,102 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "Bunu gələcək eksportlar üçün də istifadə et" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Faylın Charset-i:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Sıxışdırma:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip olaraq" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip olaraq" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Çıxış verilənlərini mətn olaraq göstər" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Görünüşləri cədvəl halında eksport et" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Cədvəl başlıqlarını eksport et" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Çıxış verilənlərini fayla yaddaşa ver" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Ölçüsü bundan çox olan cədvəlləri keç" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Verilənlər Bazası Seç" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Cədvəl Seç" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Yeni Verilənlər Bazasının adı" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Yeni cədvəl adı" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Köhnə sütun adı" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Yeni sütun adı" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%1$s tarixində %2$s tərəfindən işləndi" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%1$s tarixində %2$s tərəfindən hazırlandı" @@ -8733,13 +8758,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faylını saxlamaq üçün lazım olan yer çatışmır." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8747,74 +8772,74 @@ msgstr "" "%s faylı serverdə onsuz da mövcuddur, ya faylın adını dəyişdir ya da üzərinə " "yazma variantlarını." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserver-in %s faylını saxlama izni yoxdur." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş nəticə çoxluğu göndərdi(yəni sıfır sətir)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "%s Verilənlər Bazasına get" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "%s Cədvəlinə get" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s Strukturu" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8825,84 +8850,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks yarat" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funksiya" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Uzun olduğuna görə,
bu sütun redaktə edilməyə bilər." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ya da" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "web-server upload direktoriyası:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Redaktə et/Əlavə et" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Yeni sətir olaraq əlavə et" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8913,31 +8939,31 @@ msgstr "" msgid "Value" msgstr "Dəyər" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Sadəcə struktur" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktur və məlumat" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Sadəcə məlumat" @@ -8948,14 +8974,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT dəyəri əlavə et" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9004,8 +9030,8 @@ msgstr "Proseduralar:" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Göstər" @@ -9050,17 +9076,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Sürətli filtri təmizlə" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9077,7 +9103,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Sütunlar əlavə oluna bilmədi!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Genişlət/Daralt" @@ -9096,7 +9122,7 @@ msgstr "Yeni" msgid "Database operations" msgstr "Verilənlər Bazası əməliyyatları" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Gizli maddələri göstər" @@ -9197,11 +9223,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Birini seçin…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Belə sütun yoxdur" @@ -9441,8 +9467,8 @@ msgid "Rename database to" msgstr "Verilənlər Bazasını yenidən adlandır" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9488,182 +9514,182 @@ msgstr "(tek-tek)" msgid "Move table to (database.table)" msgstr "Cədvəli daşı (verilənlər bazası.cədvəl)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Cədvəli yenidən adlandır" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Cədvəl haqqında izahat" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Cədvəl seçimləri" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Depolama Motorları" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Cədvəli kopyala (verilənlər bazası.cədvəl)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Kopyalanmış cedvele keç" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Cədvəl təmizliyi" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Cədvəli analiz et" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Cədvəli yoxla" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Cədvəli yoxla" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Cədvəli birləşdir(defragment)" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "%s cədvəli təmizləndi." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Cədvəli təmizlə(FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Cədvəli optimallaşdır" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Cedveli te'mir et" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Cədvəl və ya veriləni sil" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Cədvəli boşalt(TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Cədvəli sil(DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analiz et" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Yoxlama" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimallaşdır" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Yenidən Qur" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Təmir et" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Bağla" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Bölüm sazlaması" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Bölmə %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Cedveli eynisinin üzerine kopyalaya bilmerem!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s cədvəli %s - ə daşınmışdır." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s cədvəli %s - ə kopyalandı." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s cədvəli %s - ə daşınmışdır." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, fuzzy, php-format msgid "Table %s has been copied to %s." msgstr "%s cədvəli %s - ə kopyalandı." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Cedveli adı boşdur!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Bu formatın variantları yoxdur" @@ -9692,18 +9718,18 @@ msgstr "Rəngi göstər" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Əlaqə qurula bilmir: yalnış tənzimləmə." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s - ə Xoş Gəlmisiniz" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9712,7 +9738,7 @@ msgstr "" "Çox güman ki bunun səbəbi konfiurasiya faylını yaratmadığınızdandır. Bir " "dənəsin yaratmaq üçün %1$ssetup script%2$s istifadə edə bilərsiniz." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9724,7 +9750,7 @@ msgstr "" "server adminstratoru tərəfindən verilən məlumatlarla eyni olduğundan əmin " "olun." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Təkara qoşul" @@ -9749,15 +9775,15 @@ msgstr "İstifadəçi Adı:" msgid "Server Choice:" msgstr "Server seçimi:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Daxil edilən captcha yanlışdır, təkrar sınayın!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Lütfən düzgün captcha daxil edin!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -9824,7 +9850,7 @@ msgstr "Data Dump seçimləri" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" @@ -9833,7 +9859,7 @@ msgstr "Sxemi çıxarılan cedvel" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Hadisə" @@ -9841,8 +9867,8 @@ msgstr "Hadisə" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Tərif" @@ -9928,7 +9954,7 @@ msgstr "İlk sətirə sütun adlarını əlavə et:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -10453,7 +10479,7 @@ msgstr "İçindəkilər Cədvəli" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Əlavə" @@ -10829,58 +10855,58 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Haqqında məlumat (description) mövcud deyildir" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Bu server replikasiya prosesində master server olaraq konfiqurasiya edildi." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10889,94 +10915,94 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Zəhmət olmasa Verilənlər Bazalarını seçin:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Master əlaqə:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Tam Başlat" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Bütünlükdə durdur" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Slave-i sıfırla" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Sadəcə SQL əməliyyatını başlat" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Sadəcə G/Ç əməliyyatını başlat" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Master Serveri dəyişdir və ya yenidən konfiqurasiya et" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10985,87 +11011,87 @@ msgstr "" "Bu server, köçürmə əməliyyatı anında slave server olaraq konfiqurasiya edilə " "bilməz. Bunu konfiqurasiya etmək istəyirsiniz?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Xəta idarəetməsi:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Cari xətanı keç" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Sonrakı %s xətanı keç." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slave konfiqurasiyası" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "İstifadəçi adı:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "İstifadəçi adı" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Parol" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Master statusu" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slave statusu" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Dəyişən" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11073,117 +11099,117 @@ msgstr "" "Sadəcə slave-lər, bu siyahıda --report-host=host_name seçimi ilə görünən bu " "şəkildə başlar." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Hər hansı host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Yerli" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Bu Host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Hər hansı istifadəçi" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Mətn sahəsini istifadə et:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Host cədvəlini istifadə et" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Yenidən yazın" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Parol yarat" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replikasiya uğurla başladıldı." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Replikasiya başlatma xətası." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replikasiya uğurla dayandırıldı." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Replikasiyanı dayandırma xətası." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replikasiya uğurla sıfırlandı." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Replikasiyanı sıfırlama xətası." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Uğurlu." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Xəta." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Naməlum xəta" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Əsas %s serverə bağlanmaq mümkün deyil." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Əsas server log mövqeyi oxuna bilmir. Əsas serverdə imtiyaz tənzimləmə " "problemləri ola bilər." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Əsas(master) dəyişdirilə bilmir!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Master server %s olaraq uğurla dəyişdirildi." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11204,7 +11230,7 @@ msgstr "%1$s hadisəsi dəyişdirildi." msgid "Event %1$s has been created." msgstr "%1$s hadisəsi yaradıldı." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "İstəyiniz yerinə yetirilərkən bir və ya daha çox xəta yarandı:" @@ -11213,75 +11239,75 @@ msgstr "İstəyiniz yerinə yetirilərkən bir və ya daha çox xəta yarandı:" msgid "Edit event" msgstr "Hadisəni redaktə et" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Təfsilatları" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Hadisə adı" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "%s buna dəyiş" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Yerinə yetir" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Yerinə yetir; hər biri" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Başla" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Son" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Tamamlamada qoruma" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Təyinedici" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Təyinedici\"username@hostname\" formatında olmalıdır!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Bir hadisə adı vermək məcburiyyətindəsiniz!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Hər hadisə üçün düzgün interval verməlisiniz." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Hadisə üçün düzgün icra zamanı verməlisiniz." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Hadisə üçün düzgün bir tip verməlisiniz." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Bir hadisə tərifi verməlisiniz." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -11304,7 +11330,7 @@ msgstr "Hadisə planlaşdırıcısının statusu" msgid "The backed up query was:" msgstr "Saxlanılmış sorğu:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Geri dönüşlər" @@ -11320,134 +11346,134 @@ msgstr "" "icrasında xəta ola bilər![/strong]. Zəhmət olmasa, problemlərin qarşısın " "almaq üçün təkmilləşdirilmiş 'mysqli' genişlənməsi istifadə edin." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Proseduranı redaktə et" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Səhv tip prosedurları: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Prosedura %1$s yaradıldı." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" "Bağışlayın, silinmiş(dropped) proseduraların bərpa edilməsi uğursuz oldu." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Prosedura %1$s dəyişdirildi." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Prosedura %1$s dəyişdirildi." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Prosedura adı" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametrlər" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "İstiqamət" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Parametr əlavə et" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Son parametri sil" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Geri dönüş tipi" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Geri dönüş uzunluğu/qiymətləri" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Geri dönüş seçənəkləri" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Təhlükəsizlik tipi" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11469,32 +11495,32 @@ msgstr "Trigger %1$s yaradıldı." msgid "Edit trigger" msgstr "Triggeri redaktə et" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Trigger adı" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Müddət" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11621,90 +11647,90 @@ msgstr "" msgid "Databases statistics" msgstr "Verilənlər Bazası Statistikaları" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün səlahiyyətlər daxildir." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Məlumat silməyə icazə verir." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cədvəllər qurmağa icazə verir." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Bazaları və cədvəlləri ləğv etməyə icazə verir." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11714,131 +11740,105 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Keçici cədvəllər qurmağa icazə verir." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Yeni görünüşlər qurmağa icazə verir." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Allows creating and dropping indexes." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Saxlanan rutinlər yaratmağa icazə verir." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" "Saxlanan rutinlərinlərin dəyişdirilməsinə və ləğv edilməsinə icazə verir." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Saxlanan rutinlərin icra edilməsinə icazə verir." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Yox" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "İstifadəçi qrupu" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Rate of aborted connections" msgid "Does not require SSL-encrypted connections." msgstr "Dayandırılmış əlaqələrin nisbəti" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Rate of aborted connections" msgid "Requires SSL-encrypted connections." msgstr "Dayandırılmış əlaqələrin nisbəti" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Qayanq limitləri" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmək hüdudu (limiti) qaldıracaq." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "İstifadəçinin saat başına serverə göndərə biləcəyi sorğu sayını limitləyir." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -11846,279 +11846,272 @@ msgstr "" "İstifadəçinin saat başına icra edə biləcəyi cədvəli və bazanı dəyişə biləcək " "əmrlərin sayını limitləyir." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "İstifadəçinin saat başına aça biləcəyi qoşulmaların sayını limitləyir." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutinlər" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "" "Saxlanan rutinlərinlərin dəyişdirilməsinə və ləğv edilməsinə icazə verir." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Saxlanan rutinlərin icra edilməsinə icazə verir." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Cədvələ xas səlahiyyətlər" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Qeyd: MySQL səlahiyyət adları ingilis dilində ifadə edilmişdir." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administrasiya" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Qlobal səlahiyyətlər" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Qlobal" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Verilənlər Bazasına Məxsus Səlahiyyətlər" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Yeni cədvəllər qurmağa icazə verir." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Cədvəlləri ləğv etməyə icazə verir." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Səlahiyyət cədvəllərini yenidən yükləmədən yeni istifadəçilərin və " "səlahiyyətlərin əlavə edilməsinə icazə verir." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "İdentifikasiya" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Parolu Dəyişdir" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authentication" -msgid "Native MySQL Authentication" -msgstr "İdentifikasiya" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Sistemə Giriş Məlumatı" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Mətn sahəsi istifadə et" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" "Hesab eyni istifadəçi adıyla mövcuddur, ancaq fərqli host adıyla ola bilər." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "İstifadəçi adı:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Sütun adları" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Parolu dəyişdirmə" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "İdentifikasiya" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Parol:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müvəffəqiyyətlə dəyişdirilmişdir." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s üçün səlahiyyətləri geri aldınız." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "İstifadəçi qrupları əlavə et" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "İstifadəçi üçün Verilənlər Bazası" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Eyni adda baza yarat və bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" bazasındakı bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" Bazasına girişi olan istifadəçilər" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "İstifadəçi əlavə olundu." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "İcazə ver" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "İstifadəçi tapılmadı." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Hər hansı" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "qlobal" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "bazaya xas" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "xüsusi işarə" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "cədvələ xas" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Səlahiyyətləri redaktə et:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "İstifadəçi qruplarını redaktə et" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… köhnəsini saxla." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… istifadəçi cədvəllərindən köhnəsini sil." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… köhnə istifadəçinin səlahiyyətlərini əlindən alaraq onu sil." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12126,120 +12119,106 @@ msgstr "" "… Köhnə olanı istifadəçi cədvəllərindən sil və ardından səlahiyyətləri " "yenidən yüklə." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Sistem Giriş Məlumatını Dəyişdir / İstifadəçini Kopyala" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Eyni səlahiyyətlərə sahib yeni istifadəçi yarat və …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Sütuna xas Səlahiyyətlər" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Seçilən istifadəçiləri ləğv et" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "İstifadəçi qrupu" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "İstifadəçilərdən bütün aktiv səlahiyyətləri geri al və sonra da sil." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "İstifadəçilərlə eyni adlı verilənlər bazalarını ləğv et." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s üçün səlahiyyətlər" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "İstifadəçi" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Yeni" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Səlahiyyətləri redaktə et:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "İstifadəçi qrupu" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "İstifadəçilərə ümumi baxış" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12252,7 +12231,7 @@ msgstr "" "içərisindəkilər webserver-in istifadə etdiklərindən fərqli ola bilər. Bu " "halda, davam etmədən əvvəl, səlahiyyətləri %syenidən yükləməlisiniz%s." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12271,11 +12250,11 @@ msgstr "" "içərisindəkilər webserver-in istifadə etdiklərindən fərqli ola bilər. Bu " "halda, davam etmədən əvvəl, səlahiyyətləri %syenidən yükləməlisiniz%s." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Yeni istifadəçi əlavə etdiniz." @@ -12548,12 +12527,12 @@ msgstr "Komanda Tipi" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtrlər" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Sadəcə aktiv olanı göstər" @@ -12574,12 +12553,12 @@ msgstr "dəqiqədə:" msgid "per second:" msgstr "saniyədə:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Variantlar" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12603,33 +12582,33 @@ msgstr "Formatlaşdırılmamış dəyərləri göstər" msgid "Related links:" msgstr "Əlaqəli linklər:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL serverinə bağlanmaq üçün uğursuz cəhdlərin sayıdır." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12637,78 +12616,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12716,7 +12695,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12724,42 +12703,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Boş səhifə sayıdır." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12767,33 +12746,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12802,85 +12781,85 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Log faylına yazılan bayt sayı." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Yaradılmış səhifələrin sayı." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -12889,57 +12868,57 @@ msgstr "" "çoxlu sayda dəyərlər sayılıb; səhifə ölçüsü bunları asanlıqla bayta " "çevirməyə icazə verir." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Oxunmuş səhifələrin sayı." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Yazılmış səhifələrin sayı." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Hal-hazırda gözlənən kilidli sətirlərin sayı." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Kilidli sətirləri əldə etmək üçün orta zaman(millisaniyə)." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Kilidli sətirləri əldə etmək üçün ümumi zaman(millisaniyə)." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Kilidli sətirləri əldə etmək üçün maksimum zaman(millisaniyə)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Kilidli sətirlərin ümumi gözləmə miqdarı." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB cədvəlindən silinmiş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB cədvəlinə əlavə olunmuş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB cədvəlindən oxunmuş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB cədvəlində yenilənmiş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -12947,22 +12926,22 @@ msgstr "" "Açar keşində istifadə olunmayan blok sayı. Bu dəyər ilə açar keşindəki " "istifadənin miqdarını təyin edə bilərsiniz." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "İstifadə olunan açar keşinin faizi(hesablanmış dəyər)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Keşdən açar blokunun oxunması üçün sorğu sayı." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -12972,35 +12951,35 @@ msgstr "" "sizin key_buffer_size dəyəriniz çox kişikdir. Əksik keş nisbəti Key_reads/" "Key_read_requests kimi hesablanmalıdır." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Keşə açar bloku yazmaq üçün sorğuların sayı." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Diskə açar bloklarının fiziki yazma sayı." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Fiziki yazmaların faizi yazma sorğuları ilə müqayisə edilir(hesablanmış " "dəyər)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13008,11 +12987,11 @@ msgstr "" "Serverin başladılmasından bu yana istifadədə olan eyni zamanlı ən çox əlaqə " "sayı." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmaq üçün gözləyən sətir sayı." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13020,38 +12999,38 @@ msgstr "" "Açıq olan cədvəl sayı. Əgər açıq cədvəllər böyükdürsə, cədvəl keş dəyəriniz " "ehtimal ki çox kişikdir." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Açıq olan fayl sayı." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Açıq olan cədvəl sayı." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Sorğu keşi üçün boş yaddaş miqdarıdır." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13059,35 +13038,35 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Keşdə qeydiyyatlı sorğuların sayı." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Sorğu keşi içindəki toplam blok sayı." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13096,65 +13075,65 @@ msgstr "" "sayıdır.(Əgər bu dəyər 0 deyildirsə, cədvəllərinizin açarlarını diqqətli " "olaraq yoxlamalısınız.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13162,18 +13141,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Cari açıq bağlantıların sayı." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13181,12 +13160,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Sorğu tipi" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13215,39 +13194,39 @@ msgstr "Verilənlər Bazaları səviyyə pəncərələri" msgid "Table level tabs" msgstr "Cədvəl səviyyə pəncərələri" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "İstifadəçiləri göstər" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "İstifadəçi qrupları əlavə et" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "İstifadəçi qrupunu redaktə et: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "İstifadəçi qrupu menu təyinetmələri" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Qrup adı:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Server versiyası" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13345,7 +13324,7 @@ msgstr "%s verilənlər bazasına SQL sorğusu(ları) göndər" msgid "Run SQL query/queries on table %s" msgstr "%s verilənlər bazasına SQL sorğusu(ları) göndər" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Təmizlə" @@ -13433,174 +13412,174 @@ msgstr "İndi deaktivləşdir" msgid "Version" msgstr "Versiya" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Yaradıldı" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Yeniləndi" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Versiya yarat" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "İzləmə hesabatı" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Struktur görüntüs qeyd etmə" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "aktiv deyil" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "İzləmə ifadələri" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Hesabatdan izlənən verilən sətirini sil" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Verilən yoxdur" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Tarix" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "İstifadəçi Adı" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Heç biri" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Server versiyası" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "İzlənilməyən cədvəllər" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Cedvəli İzlə" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "İzlənən cədvəllər" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Son versiya" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "İzləməni sil" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versiyalar" @@ -13608,7 +13587,7 @@ msgstr "Versiyalar" msgid "Manage your settings" msgstr "Tənzimləmələrinizi idarə edin" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -13634,7 +13613,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13642,57 +13621,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin dokumentasiyası" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Fayldan import et" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Yaddaşa verilmiş tənzimləmələriniz yoxdur!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Cari konfiqurasiya ilə birləşdir" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13701,25 +13680,25 @@ msgstr "" "Config.inc.php faylını dəyişdirərək daha çox tənzimləmələr edə bilərsiniz, " "məs. %squrulum skripti%s istifadə edərək." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Fayl olaraq yaddaşa ver" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Bütün tənzimləmələrinizi sıfırlaya bilər və ilkin dəyərlərə geri yükləyə " @@ -13729,35 +13708,35 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Verilənlər bazalarının sxemini göstər" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view server status." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view the advisor." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s uğurla söndürüldü (killed)." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -13765,19 +13744,19 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: server_status_queries.php:42 +#: server_status_queries.php:43 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view query statistics." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: server_status_variables.php:52 +#: server_status_variables.php:53 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view status variables." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Endir" @@ -13785,18 +13764,18 @@ msgstr "Endir" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Konfiqurasiya yüklənə bilmir və ya yaddaşa verilə bilmir" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -13804,85 +13783,88 @@ msgstr "" "Güvənli qoşulma istifadə etmirsiniz; bütün verilənlər(parollar kimi həssas, " "informasiyalar da daxil) şifrələnmədən transfer edilir!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Əgər serveriniz eyni zamanda HTTPS istəklərini(request) qəbul etmək üçün " "konfiqurasiya edilibsə, güvənli bağlantı istifadə etmək üçün [a@%s]bu linki[/" "a] izləyin." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Güvənli olmayan qoşulma" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfiqurasiya yaddaşa verildi." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfiqurasiya yaddaşa verildi." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Qısa Xülasə" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Konfiqurasiya edilmiş server yoxdur" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Yeni Server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Susmaya görə dil" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Susmaya görə server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Sətir sonu" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Göstər" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Yüklə" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin əsas səhifəsi" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13918,21 +13900,21 @@ msgstr "" msgid "Show form" msgstr "Formu göstər" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -13941,7 +13923,7 @@ msgstr "" "Git versiyasını istifadə edirsiniz, [kbd]git pull[/kbd] icra edin :-)" "[br]TSon stabil versiya %s, %s tarixində yayınlandı." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13954,12 +13936,12 @@ msgstr "Səhv məlumatlar" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s cədvəli artıq mövcuddur!" @@ -13972,35 +13954,35 @@ msgstr "Cedvelin sxemini göster" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No column selected." msgid "No row selected." msgstr "Sütun seçilməmişdir." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s izləmə aktiv edildi." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Table %1$s has been altered successfully." msgid "Tracking versions deleted successfully." msgstr "%1$s cədvəli uğurlu bir şəkildə dəyişdirildi." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No column selected." msgid "No versions selected." msgstr "Sütun seçilməmişdir." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14213,7 +14195,7 @@ msgid "List of available transformations and their options" msgstr "Mövcud transformasiyalar və seçimlərinin siyahısı" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Hide browser transformation" msgid "Browser display transformation" @@ -14239,7 +14221,7 @@ msgstr "" "'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Information" msgid "Input transformation" @@ -14714,17 +14696,17 @@ msgid "Size" msgstr "Boy" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Quruluş" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "En son yenilenme" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "En son yoxlama" @@ -14759,6 +14741,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "İzləməni sil" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Aşağıdakı verilənlər baza(ları)sı üçün səlahiyyət müəyyən et:" @@ -14777,10 +14765,45 @@ msgstr "Aşağıdakı cədvəl üçün səlahiyyətləri müəyyən et:" msgid "Add privileges on the following table:" msgstr "Aşağıdakı cədvəl üçün səlahiyyətləri müəyyən et:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Yeni" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Yox" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Seçilən istifadəçiləri ləğv et" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "İstifadəçilərdən bütün aktiv səlahiyyətləri geri al və sonra da sil." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "İstifadəçilərlə eyni adlı verilənlər bazalarını ləğv et." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Sütuna xas Səlahiyyətlər" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Qayanq limitləri" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmək hüdudu (limiti) qaldıracaq." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14813,7 +14836,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "Söndürülüb" @@ -14979,7 +15002,7 @@ msgstr "İstifadəçi:" msgid "Comment:" msgstr "Şərh:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15015,22 +15038,22 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add a linestring" msgid "+ Add constraint" msgstr "Sətir sırası əlavə et" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Daxili əlaqələr" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Daxili əlaqə" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15038,7 +15061,7 @@ msgstr "" "FOREIGN KEY bağlantısının yerini tutan bir bağlantı varkən daxili bağlantı " "yaratmaq mümkün deyildir." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Göstərmək üçün sütun seçin:" @@ -15096,11 +15119,11 @@ msgstr "Orjinal sətir" msgid "Replaced string" msgstr "Dəyişdirilmiş sətir" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Dəyişdir" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Əlavə axtarış kriteriyası" @@ -15176,7 +15199,7 @@ msgid "at beginning of table" msgstr "Cədvəlin başına" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15212,28 +15235,28 @@ msgstr "Sıra uzunluğu" msgid "Index length" msgstr "Sıra uzunluğu" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "bölündü" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "partitioned" msgid "Edit partitioning" msgstr "bölündü" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Redaktə görünuşü" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Yer istifadəsi" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektiv" @@ -15258,31 +15281,31 @@ msgstr "Cədvəl strukturunu yaxşılaşdır" msgid "Track view" msgstr "İzləmə görünüşü" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Sətir Statistikası" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statik" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamik" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "bölündü" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Sıra uzunluğu" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Sıra boyu" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Növbəti avtoindeks" @@ -15295,50 +15318,50 @@ msgstr "%s sütunu ləğv edildi." msgid "Click to toggle" msgstr "Dəyişmək üçün tıklayın" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Mövcud olan MIME-tipleri" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Mövcud transformasiyalar" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Mövcud transformasiyalar" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Açıqlama" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Sizi növbəti addıma aparır…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada olma haqqınız yoxdur!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil yenilendi." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -15414,7 +15437,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15439,19 +15462,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Heç bir cədvəl seçilməmişdir." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15514,29 +15537,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "%1$s hadisəsi yaradıldı." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Cədvəl adı şablonu" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Cədvəlin başına" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15555,10 +15578,16 @@ msgstr "%s. sətirində gözlənilməyən simvollar." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Cədvəlin başına" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15605,7 +15634,7 @@ msgstr "" msgid "strict error" msgstr "Sorğu xətası" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16716,6 +16745,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0-a konfiqurasiya edilib" +#, fuzzy +#~| msgid "Authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "İdentifikasiya" + #~ msgid "Try to connect without password." #~ msgstr "Parolsuz qoşulmağı sınayın." diff --git a/po/be.po b/po/be.po index 79cebd0616..18743adb2e 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-05-15 14:28+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.3-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -28,31 +28,31 @@ msgstr "" "Файл %s недаступны на гэтай сістэме, падрабязнасці на сайце www.phpmyadmin." "net." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Цэнтральны спіс слупкоў для бягучай базы дадзеных пусты." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Клікніце для сартавання." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Паказваюцца радкі %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Камэнтар да базы дадзеных" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Камэнтар да табліцы:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -64,13 +64,13 @@ msgstr "Камэнтар да табліцы:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -81,9 +81,9 @@ msgstr "Камэнтар да табліцы:" msgid "Column" msgstr "Калонка" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -94,12 +94,12 @@ msgstr "Калонка" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -111,9 +111,9 @@ msgstr "Калонка" msgid "Type" msgstr "Тып" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -124,15 +124,15 @@ msgstr "Тып" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Нуль" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -143,14 +143,14 @@ msgstr "Нуль" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Па змоўчаньні" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -160,7 +160,7 @@ msgstr "Па змоўчаньні" msgid "Links to" msgstr "Зьвязаная з" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -174,19 +174,19 @@ msgstr "Зьвязаная з" msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Першасны" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -194,13 +194,13 @@ msgstr "Першасны" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -208,17 +208,17 @@ msgstr "Першасны" msgid "No" msgstr "Не" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -227,13 +227,13 @@ msgstr "Не" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -245,15 +245,15 @@ msgstr "Так" msgid "View dump (schema) of database" msgstr "Праглядзець дамп (схему) базы дадзеных" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -262,8 +262,8 @@ msgid "Tables" msgstr "Табліц" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -271,10 +271,10 @@ msgstr "Табліц" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -287,29 +287,29 @@ msgstr "Структура" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Дадзеныя" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Выбраць усё" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "База дадзеных %1$s была перайменаваная ў %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "База дадзеных %1$s была скапіяваная ў %2$s." @@ -320,41 +320,41 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "Сховішча канфігурацыі PHPMyAdmin дэактываванае. %sДаведацца чаму%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Перайсьці да скапіяванай табліцы" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "У доступе адмоўлена!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy msgid "Tracking data deleted successfully." msgstr "Рэплікацыя" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Ня выбраная база дадзеных." -#: db_tracking.php:149 +#: db_tracking.php:150 #, fuzzy msgid "Database Log" msgstr "База дадзеных" @@ -394,164 +394,164 @@ msgstr "Тып запыту" msgid "Bad parameters!" msgstr "Дадаць новае поле" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Дадаць новае поле" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Радкі падзеленыя" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Polygon %d:" msgstr "Дадаць %s новыя палі" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Дадаць %s новыя палі" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 #, fuzzy msgid "Add geometry" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Панеслася" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 #, fuzzy #| msgid "Access denied!" msgid "Succeeded" msgstr "У доступе адмоўлена!" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "Complete inserts" msgid "Incomplete params" msgstr "Поўная ўстаўка" -#: import.php:195 +#: import.php:196 #, fuzzy, php-format #| msgid "" #| "You probably tried to upload too large file. Please refer to " @@ -564,15 +564,15 @@ msgstr "" "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " "абмежаваньне." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Закладка была выдаленая." -#: import.php:489 +#: import.php:486 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 " @@ -582,18 +582,18 @@ msgstr "" "загружаны, альбо памер файла перавысіў максымальны памер, вызначаны " "канфігурацыяй PHP. Гл. [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "Закладка %s створаная" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -602,7 +602,7 @@ msgstr[0] "Імпартраваньне пасьпяхова завершана msgstr[1] "Імпартраваньне пасьпяхова завершанае, выканана %d запытаў." msgstr[2] "Імпартраваньне пасьпяхова завершанае, выканана %d запытаў." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -614,7 +614,7 @@ msgstr "" "Выйшаў дазволены час выкананьня скрыпта. Калі вы хочаце завершыць " "імпартаваньне, калі ласка, загрузіце файл зноў і імпартаваньне ўзнавіцца." -#: import.php:632 +#: import.php:629 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." @@ -623,7 +623,7 @@ msgstr "" "звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі " "вы не павялічыце ліміты выкананьня php-скрыптоў." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." @@ -631,18 +631,18 @@ msgstr "Каманды \"DROP DATABASE\" адключаныя." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Назад" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy msgid "phpMyAdmin Demo Server" msgstr "Дакумэнтацыя па phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -650,52 +650,52 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General relation features" msgid "General settings" msgstr "Магчымасьці асноўных сувязяў" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Зьмяніць пароль" -#: index.php:213 +#: index.php:214 #, fuzzy #| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "Супастаўленьне падлучэньня да MySQL" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "General relation features" msgid "Appearance settings" msgstr "Магчымасьці асноўных сувязяў" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 #, fuzzy #| msgid "General relation features" msgid "More settings" msgstr "Магчымасьці асноўных сувязяў" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Database for user" msgid "Database server" msgstr "База дадзеных для карыстальніка" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Сэрвэр:" -#: index.php:295 +#: index.php:296 #, fuzzy msgid "Server type:" msgstr "ID сэрвэра" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -703,83 +703,83 @@ msgstr "ID сэрвэра" msgid "Server version:" msgstr "Вэрсія сэрвэра" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Protocol version" msgid "Protocol version:" msgstr "Вэрсія пратаколу" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Карыстальнік" -#: index.php:314 +#: index.php:315 #, fuzzy msgid "Server charset:" msgstr "Выбар сэрвэра" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Вэб-сэрвэр" -#: index.php:338 +#: index.php:339 #, fuzzy msgid "Database client version:" msgstr "Вэрсія кліента MySQL" -#: index.php:342 +#: index.php:343 #, fuzzy #| msgid "PHP extension" msgid "PHP extension:" msgstr "Пашырэньне PHP" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "Вэрсія PHP" -#: index.php:377 +#: index.php:378 #, fuzzy #| msgid "Version information" msgid "Version information:" msgstr "Інфармацыя пра вэрсію" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Дакумэнтацыя" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Афіцыйная старонка phpMyAdmin" -#: index.php:402 +#: index.php:403 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрыбуты" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Няма зьменаў" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 " @@ -789,13 +789,13 @@ msgstr "" "шматбайтавую кадыроўку. Без пашырэньня mbstring phpMyAdmin ня можа падзяляць " "радкі карэктна, і гэта можа прывесьці да нечаканых вынікаў." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -803,22 +803,22 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Канфігурацыйнаму файлу зараз патрэбная сакрэтная фраза (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -826,7 +826,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -838,12 +838,12 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -852,7 +852,7 @@ msgstr "" "Вэрсія вашай бібліятэкі MySQL для PHP %s адрозьніваецца ад вэрсіі вашага " "сэрвэра MySQL %s. Гэта можа выклікаць непрадказальныя паводзіны." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1039,7 +1039,7 @@ msgid "Save & close" msgstr "Захаваць як файл" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Скінуць" @@ -1083,7 +1083,7 @@ msgstr "Дадаць новае поле" msgid "Edit index" msgstr "Рэдагаваць наступны радок" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1119,10 +1119,10 @@ msgstr "Дадаць %s новыя палі" msgid "You have to add at least one column." msgstr "Трэба дадаць прынамсі адно поле." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1138,7 +1138,7 @@ msgstr "па запыту" msgid "Matched rows:" msgstr "Фіксаваныя старонкі" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1159,13 +1159,13 @@ msgstr "Пустое імя хосту!" msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" @@ -1175,8 +1175,8 @@ msgstr "Паролі не супадаюць!" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "" @@ -1204,19 +1204,19 @@ msgstr "Радок быў выдалены" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1342,40 +1342,40 @@ msgid "Processes" msgstr "Працэсы" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КiБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МіБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "ГіБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "ТіБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "ПіБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "ЭіБ" @@ -1395,7 +1395,7 @@ msgstr "Пэрсыдзкая" msgid "Traffic" msgstr "Трафік" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" @@ -1413,16 +1413,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Няма" @@ -1623,20 +1623,20 @@ msgstr "Прааналізаваць" msgid "Explain output" msgstr "Тлумачыць SQL" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Стан" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Час" @@ -1734,10 +1734,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Імрарт" @@ -1823,7 +1823,7 @@ msgstr "Дадаць новае поле" msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" @@ -1872,8 +1872,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." @@ -1921,7 +1921,7 @@ msgstr "Капіяваць базу дадзеных у" msgid "Changing charset" msgstr "Кадыроўка" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1960,74 +1960,80 @@ msgstr "Прагляд" msgid "Deleting" msgstr "Выдаленьне %s" -#: js/messages.php:391 +#: js/messages.php:388 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Дамп дадзеных табліцы" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Экспарт" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Колькасьць палёў" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 #, fuzzy msgid "Hide query box" msgstr "SQL-запыт" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy msgid "Show query box" msgstr "SQL-запыт" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -2035,106 +2041,106 @@ msgstr "SQL-запыт" msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Выдаліць" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Зьменная" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Пошук у базе дадзеных" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрыбуты" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Першасны ключ быў дададзены да %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Зьмяніць" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2142,543 +2148,543 @@ msgstr "" msgid "End of step" msgstr "У канцы табліцы" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy msgid "Done" msgstr "Дадзеныя" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Захаваць" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL-запыт" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пошук" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Назвы калёнак" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Назвы калёнак" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy msgid "Maximum value:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Памер указальніка на дадзеныя" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Скапіяваць" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Радкі падзеленыя" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Радкі падзеленыя" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Старонка:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Выбраць усё" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Выбраць усё" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Вольных старонак" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Выбраць усё" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Рэляцыйная схема" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Колькасьць палёў" -#: js/messages.php:569 +#: js/messages.php:570 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Зьменена радкоў: %1$d." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Адправіць" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Назвы калёнак" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Паказаць усе" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Першапачатковая пазыцыя" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Скасаваць" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Спынена" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Імпартаваць файлы" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Парог файла логу" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Выберыце табліцу(ы)" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Друк" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Назвы калёнак" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Паказаць усе" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Дадаць новае поле" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Паказаць сетку" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2686,123 +2692,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "ID сэрвэра" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "ID сэрвэра" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Паказаць адкрытыя табліцы" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ігнараваць" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Паказаць гэты запыт зноў" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-запыт" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Камэнтар да табліцы" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL-запыт" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2811,38 +2817,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Дадаць новае поле" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Папярэдняя старонка" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2850,96 +2876,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Тра" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2947,78 +2973,78 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Сьн" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3026,86 +3052,86 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3114,139 +3140,139 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Няма" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у сэкунду" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Выкарыстоўваць тэкставае поле" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Памылка" @@ -3308,20 +3334,20 @@ msgid "Charset" msgstr "Кадыроўка" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Супастаўленьне" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Двайковы" @@ -3518,7 +3544,7 @@ msgid "Czech-Slovak" msgstr "Чэхаславацкая" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "невядома" @@ -3571,7 +3597,7 @@ msgstr "" msgid "Font size" msgstr "Памер шрыфта" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3579,24 +3605,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Выдаліць сувязь" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL-запыт" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3604,27 +3630,27 @@ msgid "" "configured)." msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сэрвэр не адказвае" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Падрабязьней…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Працэдуры" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым " @@ -3738,67 +3764,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запыт да БД %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Выканаць запыт" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Пошук" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Выдаліць сувязь" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Выдаліць сувязь" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Паказваючы закладку" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Выдаліць сувязь" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "прынамсі адно з словаў" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "усе словы" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "дакладную фразу" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "рэгулярны выраз" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Вынікі пошуку \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3806,7 +3832,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Агулам: %s супадзеньняў" msgstr[1] "Агулам: %s супадзеньняў" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3814,53 +3840,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Прагляд" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Дамп дадзеных табліцы" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Пошук у базе дадзеных" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Знайсьці:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Словы, падзеленыя прагалам (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "У табліцы(ах):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Зьняць усе адзнакі" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -3888,16 +3908,16 @@ msgstr "Файлы" msgid "Search this table" msgstr "Пошук у базе дадзеных" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Першая старонка" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3906,8 +3926,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3916,8 +3936,8 @@ msgctxt "Next page" msgid "Next" msgstr "Наступная старонка" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3928,7 +3948,7 @@ msgstr "Апошняя старонка" msgid "All" msgstr "Усе" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3939,8 +3959,8 @@ msgstr "Колькасьць палёў" msgid "Sort by key" msgstr "Сартаваць па ключы" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3962,10 +3982,10 @@ msgstr "Сартаваць па ключы" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Налады" @@ -4013,35 +4033,35 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Радок быў выдалены" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Спыніць" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Значэньне можа быць прыблізным. Гл. [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4050,76 +4070,76 @@ msgstr "" "Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " "%sдакумэнтацыі%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Паказаныя запісы" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "усяго" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "З адзначанымі:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Адзначыць усё" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Сувязь ня знойдзеная" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4127,7 +4147,7 @@ msgid "None" msgstr "Няма" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4135,29 +4155,29 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Імрарт" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4165,37 +4185,37 @@ msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў " "вызначаны ў HTML-форме." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Файл быў загружаны толькі часткова." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Адсутнічае часовая тэчка." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Памылка запісу на дыск." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Загрузка файла спыненая пашырэньнем." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Немагчыма прачытаць файл" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4203,15 +4223,15 @@ msgstr "" "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел [doc@faq1-11]1.11 " "у FAQ[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4221,30 +4241,30 @@ msgstr "" "(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Інфармацыя пра вэрсію" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Адкрыць новае акно phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Вэрсія для друку" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4255,20 +4275,20 @@ msgid "No index defined!" msgstr "Індэкс ня вызначаны!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Індэксы" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4278,59 +4298,59 @@ msgstr "Індэксы" msgid "Action" msgstr "Дзеяньне" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Імя ключа" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Камэнтар" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Першасны ключ быў выдалены." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Індэкс %s быў выдалены." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Выдаліць" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4339,19 +4359,19 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Старонка:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Мова" @@ -4375,11 +4395,11 @@ msgstr "Сэрвэр" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4398,14 +4418,15 @@ msgid "View" msgstr "Выгляд" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4414,8 +4435,8 @@ msgid "Table" msgstr "Табліца" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4423,45 +4444,45 @@ msgstr "Табліца" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Пошук" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Уставіць" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Прывілеі" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Апэрацыі" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4477,16 +4498,16 @@ msgstr "Трыгеры" msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Працэдуры" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4494,22 +4515,22 @@ msgstr "Працэдуры" msgid "Events" msgstr "Падзеі" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Дызайнэр" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Базы дадзеных" @@ -4520,39 +4541,39 @@ msgid "User accounts" msgstr "Карыстальнік" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Двайковы лог" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Рэплікацыя" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Зьменныя" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Машыны" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." @@ -4560,7 +4581,7 @@ msgid_plural "%1$d rows affected." msgstr[0] "Зьменена радкоў: %1$d." msgstr[1] "Зьменена радкоў: %1$d." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." @@ -4568,7 +4589,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Выдалена радкоў: %1$d." msgstr[1] "Выдалена радкоў: %1$d." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." @@ -4634,29 +4655,29 @@ msgstr "Зьменныя" msgid "Favorites" msgstr "Зьменныя" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Карыстальнік %s ужо існуе!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Падчас загрузкі файла адбылася невядомая памылка." @@ -4719,7 +4740,7 @@ msgstr "Паказаць адкрытыя табліцы" msgid "Show slave hosts" msgstr "Паказаць залежныя сэрвэры" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" @@ -4777,13 +4798,13 @@ msgid_plural "%d minutes" msgstr[0] "выкарыстоўваецца" msgstr[1] "выкарыстоўваецца" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." @@ -4791,76 +4812,76 @@ msgstr "" "%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-" "сэрвэры." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s даступная на гэтым MySQL-сэрвэры." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s была адключаная для рэтага MySQL-сэрвэра." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пошук у базе дадзеных" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Тэма %s ня знойдзеная!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Няправільная база дадзеных" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Некарэктнае імя табліцы" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Памылка перайменаваньня табліцы %1$s у %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Табліца %s была перайменаваная ў %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4868,19 +4889,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Імя першаснага ключа мусіць быць PRIMARY!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Немагчыма перайменаваць індэкс у PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Часткі індэксу ня вызначаныя!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Памылка стварэньня зьнешняга ключа на %1$s (праверце тыпы калёнак)" @@ -5152,7 +5173,7 @@ msgid "Date and time" msgstr "Стварыць новы індэкс" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5171,70 +5192,70 @@ msgstr "Колькасьць файлаў логу" msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Без PHP-коду" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Выканаць запыт" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Стварыць PHP-код" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Абнавіць" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Прафіляваньне" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5242,68 +5263,68 @@ msgid "Edit inline" msgstr "Дадаць новае поле" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ндз" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Працэдуры" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Перайсьці да базы дадзеных \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy msgid "There are no files to upload!" msgstr "Праверыць табліцу" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Ачысьціць" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5319,7 +5340,7 @@ msgstr "у хвіліну" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "у гадзіну" @@ -5327,14 +5348,14 @@ msgstr "у гадзіну" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Пошук" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5342,7 +5363,7 @@ msgstr "Пошук" msgid "Description" msgstr "Апісаньне" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Выкарыстоўваць гэта значэньне" @@ -5383,22 +5404,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Назва" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Даўжыня/Значэньні*" @@ -5409,7 +5430,7 @@ msgstr "Даўжыня/Значэньні*" msgid "Attribute" msgstr "Атрыбуты" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5432,13 +5453,13 @@ msgstr "Дадаць %s новыя палі" msgid "Select a column." msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "Дадаць %s новыя палі" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5446,7 +5467,7 @@ msgstr "Дадаць %s новыя палі" msgid "Attributes" msgstr "Атрыбуты" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5455,29 +5476,29 @@ msgstr "" "Вы ўключылі mbstring.func_overload у вашым канфігурацыйным файле PHP. Гэтая " "опцыя несумяшчальная з phpMyAdmin і можа выклікаць пашкоджаньне дадзеных!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сэрвэр" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5485,20 +5506,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6061,7 +6082,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6176,13 +6197,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Выразы" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Захаваць як файл" @@ -6193,7 +6214,7 @@ msgstr "Кадыроўка файла:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Фармат" @@ -6339,7 +6360,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Перазапісваць існуючы(я) файл(ы)" @@ -6355,7 +6376,7 @@ msgid "Remember file name template" msgstr "Шаблён назвы файла" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" @@ -6366,7 +6387,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" @@ -6398,7 +6419,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Дадаць %s" @@ -6584,7 +6605,7 @@ msgid "Customize the navigation tree." msgstr "Налады экспарту базы дадзеных" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Сэрвэры" @@ -7522,7 +7543,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Аўтэнтыфікацыя…" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 #, fuzzy msgid "Authentication type" msgstr "Аўтэнтыфікацыя…" @@ -8214,7 +8235,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8222,10 +8243,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8376,25 +8397,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Тэкст Open Document" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Табліца %s была ачышчаная." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Выгляд %s быў выдалены" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8409,12 +8430,12 @@ msgid "Position" msgstr "Пазыцыя" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Тып падзеі" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID сэрвэра" @@ -8423,7 +8444,7 @@ msgid "Original position" msgstr "Першапачатковая пазыцыя" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Інфармацыя" @@ -8437,16 +8458,16 @@ msgstr "Абразаць паказаныя запыты" msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8454,26 +8475,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s базаў дадзеных былі пасьпяхова выдаленыя." msgstr[1] "%s базаў дадзеных былі пасьпяхова выдаленыя." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Радкі" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Агулам" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Выкарыстаньне рэсурсаў" @@ -8504,35 +8525,35 @@ msgstr "" msgid "Enable statistics" msgstr "Уключыць статыстыку" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Налады і зьменныя сэрвэра" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Табліца %1$s была пасьпяхова зьмененая." @@ -8589,7 +8610,7 @@ msgstr "Выбраныя карыстальнікі былі пасьпяхов #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8609,12 +8630,12 @@ msgstr "Зьмяніць" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Індэкс" @@ -8637,13 +8658,13 @@ msgstr "Поўнатэкстэкставае" msgid "Distinct values" msgstr "Прагляд розных значэньняў" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма зьменаў" @@ -8666,204 +8687,208 @@ msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Пароль:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Пацьверджаньне" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Хэшаваньне паролю" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Дазваляе блякаваць табліцы для бягучага патоку." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Стварыць новую табліцу ў БД %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Стварыць новую табліцу ў БД %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Тып экспарту" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Шаблён назвы файла" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Імя табліцы" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Стварыць" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Шаблён назвы файла" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s табліц(ы)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Абнавіць запыт" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Выберыце табліцу(ы)" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Тып экспарту" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 #, fuzzy msgid "Custom - display all possible options" msgstr "Налады экспарту базы дадзеных" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Базы дадзеных" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Табліц" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Фармат" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Опцыі пераўтварэньня" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy msgid "Encoding Conversion:" msgstr "Вэрсія кліента MySQL" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Радкі" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Захаваць на сэрвэры ў тэчцы %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Шаблён назвы файла" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8878,126 +8903,126 @@ msgstr "" "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " "наступныя зьмены: %3$s. Астатні тэкст застанецца як ёсьць." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Кадыроўка файла:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Сьціск" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "архіваваны ў zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "архіваваны ў gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Захаваць як файл" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Стварыць новую табліцу ў БД %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "гарызантальна (павернутыя загалоўкі)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Захаваць як файл" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Выберыце табліцу(ы)" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Выберыце табліцу(ы)" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "імя базы дадзеных" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Няма табліц" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Назвы калёнак" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Назвы калёнак" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны экспартаваньня, калі ласка, праверце ўсталяваныя " "файлы!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Стварыць сувязь" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Стварыць сувязь" @@ -9464,13 +9489,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недастаткова месца для захаваньня ў файл %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9478,76 +9503,76 @@ msgstr "" "Файл %s ужо існуе на сэрвэры, зьмяніце імя файла або праверце опцыю " "перазапісу." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Толькі структуру" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Тып экспарту" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9559,86 +9584,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Стварыць індэкс на %s калёнках" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Схаваць" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функцыя" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "З-за вялікай даўжыні,
гэтае поле ня можа быць адрэдагаванае " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Або" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Уставіць" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "і пасьля" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9648,8 +9674,8 @@ msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9660,31 +9686,31 @@ msgstr "" msgid "Value" msgstr "Значэньне" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Толькі структуру" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Структуру і дадзеныя" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Толькі дадзеныя" @@ -9695,14 +9721,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Дадаць абмежаваньні" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9765,8 +9791,8 @@ msgstr "Працэдуры" msgid "Views:" msgstr "Выгляд" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Паказаць" @@ -9812,19 +9838,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Захаваць як файл" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9840,7 +9866,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9863,7 +9889,7 @@ msgstr "" msgid "Database operations" msgstr "Налады экспарту базы дадзеных" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9968,13 +9994,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10228,8 +10254,8 @@ msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10280,83 +10306,83 @@ msgstr "(асобна)" msgid "Move table to (database.table)" msgstr "Перанесьці табліцу ў (база дадзеных.табліца)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Перайменаваць табліцу ў" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Камэнтар да табліцы" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Опцыі табліцы" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Скапіяваць табліцу ў (база дадзеных.табліца)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Перайсьці да скапіяванай табліцы" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Абслугоўваньне табліцы" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Праверыць табліцу" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Праверыць табліцу" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Кэш табліцы %s быў ачышчаны." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Скінуць кэш табліцы (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10364,103 +10390,103 @@ msgstr "Рамантаваць табліцу" msgid "Delete data or table" msgstr "Дамп дадзеных табліцы" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Прааналізаваць" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Праверыць" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Аптымізаваць" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Перабудаваць" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Адрамантаваць" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Няма табліц" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Падтрымка падзелаў" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Падзел %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Скасаваць падзел на часткі" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Немагчыма перанесьці табліцу ў саму сябе!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Немагчыма скапіяваць табліцу ў саму сябе!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Табліца %s была перанесеная ў %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Табліца %s была скапіяваная ў %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Табліца %s была перанесеная ў %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Табліца %s была скапіяваная ў %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Пустая назва табліцы!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10491,18 +10517,18 @@ msgstr "Паказаць колер" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Немагчыма падлучыцца: няправільныя налады." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Запрашаем у %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10511,7 +10537,7 @@ msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10523,7 +10549,7 @@ msgstr "" "ўпэўніцеся, што яны адпавядаюць інфармацыі, якую даў адміністратар MySQL-" "сэрвэра." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10550,15 +10576,15 @@ msgstr "Імя карыстальніка:" msgid "Server Choice:" msgstr "Выбар сэрвэра" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10635,7 +10661,7 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" @@ -10644,7 +10670,7 @@ msgstr "Дамп дадзеных табліцы" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Падзея" @@ -10652,8 +10678,8 @@ msgstr "Падзея" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10761,7 +10787,7 @@ msgstr "Пазначыць назвы палёў у першым радку" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11331,7 +11357,7 @@ msgstr "Зьмест" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Дадаткова" @@ -11772,57 +11798,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "няма апісаньня" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11831,318 +11857,318 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Калі ласка, выберыце базу дадзеных" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "максымум адначасовых злучэньняў" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Поўнатэкстэкставае" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 #, fuzzy msgid "Full stop" msgstr "Поўнатэкстэкставае" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Толькі структуру" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Толькі структуру" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Імя карыстальніка" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Імя карыстальніка" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Пароль" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Парадак" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 #, fuzzy msgid "Master status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 #, fuzzy msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Зьменная" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Хост" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Любы хост" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Лякальны" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Гэты хост" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Любы карыстальнік" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Пацьверджаньне" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Згенэраваць пароль" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy msgid "Replication started successfully." msgstr "Рэплікацыя" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy msgid "Replication resetting successfully." msgstr "Рэплікацыя" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Памылка" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Прывілеі былі пасьпяхова перазагружаныя." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12165,7 +12191,7 @@ msgstr "Табліца %s была выдаленая" msgid "Event %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12175,89 +12201,89 @@ msgstr "" msgid "Edit event" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Падрабязьней…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Тып падзеі" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Зьмяніць" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Выканаць запыт з закладак" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Стан" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Апошняя старонка" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Поўная ўстаўка" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Некарэктнае імя табліцы" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12280,7 +12306,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12294,141 +12320,141 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy msgid "Edit routine" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Табліца %s была выдаленая" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Табліца %s была выдаленая" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Працэдуры" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Прамыя лініі сувязяў" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Дадаць новае поле" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Перайменаваць базу дадзеных у" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Тып працэдуры" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Даўжыня/Значэньні*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опцыі табліцы" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Тып запыту" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Некарэктнае імя табліцы" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12436,13 +12462,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12469,44 +12495,44 @@ msgstr "Табліца %1$s створаная." msgid "Edit trigger" msgstr "Дадаць новага карыстальніка" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Трыгеры" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Час" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Некарэктнае імя табліцы" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Некарэктнае імя табліцы" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Некарэктнае імя табліцы" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Некарэктнае імя табліцы" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12647,93 +12673,93 @@ msgstr "Раскладкі і супастаўленьні" msgid "Databases statistics" msgstr "Статыстыка базаў дадзеных" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Без прывілеяў." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12743,137 +12769,109 @@ msgstr "" "Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Дазваляе стварэньне і выдаленьне трыгераў" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Няма" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "max. concurrent connections" msgid "Does not require SSL-encrypted connections." msgstr "максымум адначасовых злучэньняў" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "max. concurrent connections" msgid "Requires SSL-encrypted connections." msgstr "максымум адначасовых злучэньняў" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Абмежаваньні рэсурсаў" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " "працягу гадзіны." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12881,408 +12879,388 @@ msgstr "" "Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " "якія карыстальнік можа выканаць на працягу гадзіны." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " "працягу гадзіны." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Працэдуры" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Адміністраваньне" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "глябальны" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " "прывілеяў." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy msgid "Native MySQL authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy msgid "SHA256 password authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -msgid "Native MySQL Authentication" -msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Імя карыстальніка" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Імя логу" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy msgid "Authentication Plugin" msgstr "Аўтэнтыфікацыя…" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хэшаваньне паролю" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы анулявалі прывілеі для %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Любы карыстальнік" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База дадзеных для карыстальніка" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Праверыць прывілеі для базы \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Карыстальнікі з правамі доступу да \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Выгляд %s быў выдалены" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Любы" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "глябальны" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "шаблён" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Ануляваць" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy msgid "Edit user group" msgstr "Вэб-сэрвэр" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… пакінуць старога." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… выдаліць старога з табліцы карыстальнікаў." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць прывілеі." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Выдаліць выбраных карыстальнікаў" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Прывілеі" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Карыстальнік" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Карыстальнік" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Карыстальнікі" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13295,7 +13273,7 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13314,11 +13292,11 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." @@ -13621,13 +13599,13 @@ msgstr "Каманда" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Файлы" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13656,12 +13634,12 @@ msgstr "у хвіліну" msgid "per second:" msgstr "у сэкунду" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Выразы" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13693,19 +13671,19 @@ msgstr "Паказаць адкрытыя табліцы" msgid "Related links:" msgstr "Сувязі" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13715,17 +13693,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13737,11 +13715,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13749,7 +13727,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13757,7 +13735,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13766,23 +13744,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13792,7 +13770,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13803,7 +13781,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13811,7 +13789,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13821,7 +13799,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13829,7 +13807,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13841,7 +13819,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13853,37 +13831,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13893,7 +13871,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13906,11 +13884,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13919,7 +13897,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13927,11 +13905,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13939,7 +13917,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13953,55 +13931,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14009,35 +13987,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -14045,55 +14023,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14101,7 +14079,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14109,7 +14087,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14119,17 +14097,17 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Фармат імпартаванага файла" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14139,26 +14117,26 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14169,17 +14147,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14187,39 +14165,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14232,7 +14210,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14240,19 +14218,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -14260,13 +14238,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -14275,7 +14253,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14283,17 +14261,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14301,13 +14279,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14315,14 +14293,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14332,25 +14310,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14362,7 +14340,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14372,11 +14350,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14388,13 +14366,13 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кэш ключоў" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." @@ -14431,49 +14409,49 @@ msgstr "База дадзеных для карыстальніка" msgid "Table level tabs" msgstr "Імя табліцы" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Выгляд" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Любы карыстальнік" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Без прывілеяў." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Назвы калёнак" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Вэрсія сэрвэра" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "База дадзеных для карыстальніка" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14584,7 +14562,7 @@ msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" msgid "Run SQL query/queries on table %s" msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14676,107 +14654,107 @@ msgstr "" msgid "Version" msgstr "Пэрсыдзкая" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 #, fuzzy msgid "Created" msgstr "Стварыць" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Стварыць сувязь" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, fuzzy, php-format msgid "Export as %s" msgstr "Тып экспарту" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Дадзеныя" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14784,81 +14762,81 @@ msgctxt "None for default" msgid "None" msgstr "Няма" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Стварыць сувязь" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 #, fuzzy msgid "Untracked tables" msgstr "Праверыць табліцу" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 #, fuzzy msgid "Tracked tables" msgstr "Праверыць табліцу" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 #, fuzzy msgid "Last version" msgstr "Стварыць сувязь" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 #, fuzzy msgid "Versions" msgstr "Пэрсыдзкая" @@ -14869,7 +14847,7 @@ msgstr "Пэрсыдзкая" msgid "Manage your settings" msgstr "Магчымасьці асноўных сувязяў" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14897,7 +14875,7 @@ msgstr "Памылка ў ZIP-архіве:" msgid "No files found inside ZIP archive!" msgstr "Файлы ў ZIP-архіве ня знойдзеныя!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14905,86 +14883,86 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "Дакумэнтацыя па phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Імпартаваць файлы" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Захаваць як файл" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14992,45 +14970,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Без прывілеяў" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Паток %s быў пасьпяхова спынены." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -15038,104 +15016,103 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Мадыфікацыі былі захаваныя" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Мадыфікацыі былі захаваныя" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 #, fuzzy msgid "New server" msgstr "Вэб-сэрвэр" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Лякальны" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "Дакумэнтацыя па phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 #, fuzzy msgid "Donate" msgstr "Дадзеныя" @@ -15175,28 +15152,28 @@ msgstr "" msgid "Show form" msgstr "Паказаць колер" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -15211,12 +15188,12 @@ msgstr "Базы дадзеных адсутнічаюць" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Табліца %s ужо існуе!" @@ -15229,35 +15206,35 @@ msgstr "Праглядзець дамп (схему) табліцы" msgid "Invalid table name" msgstr "Некарэктнае імя табліцы" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Ніводны радок ня выбраны" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Ніводны радок ня выбраны" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15488,7 +15465,7 @@ msgid "List of available transformations and their options" msgstr "Даступныя пераўтварэньні" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15514,7 +15491,7 @@ msgstr "" "(напрыклад, '\\\\xyz' або 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16054,17 +16031,17 @@ msgid "Size" msgstr "Памер" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Створаная" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Апошняе абнаўленьне" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Апошняя праверка" @@ -16099,6 +16076,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16123,10 +16106,47 @@ msgstr "Дадаць прывілеі на наступную табліцу" msgid "Add privileges on the following table:" msgstr "Дадаць прывілеі на наступную табліцу" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Няма" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Выдаліць выбраных карыстальнікаў" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Абмежаваньні рэсурсаў" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" @@ -16162,7 +16182,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16356,7 +16376,7 @@ msgstr "Карыстальнік" msgid "Comment:" msgstr "Камэнтар" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16392,24 +16412,24 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Дадаць абмежаваньні" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Унутраныя сувязі" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутраныя сувязі" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16417,7 +16437,7 @@ msgstr "" "Унутраная сувязь не зьяўляецца абавязковай, калі існуе адпаведная сувязь " "FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16483,13 +16503,13 @@ msgstr "Першапачатковая пазыцыя" msgid "Replaced string" msgstr "Сувязі" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Рэплікацыя" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL-запыт" @@ -16577,7 +16597,7 @@ msgid "at beginning of table" msgstr "У пачатку табліцы" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16613,30 +16633,30 @@ msgstr "Даўжыня радка" msgid "Index length" msgstr "Даўжыня радка" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "падзеленая на сэкцыі" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Скасаваць падзел на часткі" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Вэрсія для друку" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Выкарыстаньне прасторы" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Эфэктыўнасьць" @@ -16666,33 +16686,33 @@ msgstr "Прапанаваная структура табліцы" msgid "Track view" msgstr "Праверыць табліцу" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Статыстыка радку" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "дынамічны" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "падзеленая на сэкцыі" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Даўжыня радка" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Памер радка" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16706,52 +16726,52 @@ msgstr "Табліца %s была выдаленая" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Даступныя MIME-тыпы" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Даступныя пераўтварэньні" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Даступныя пераўтварэньні" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Апісаньне" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "Зьмяніць" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профіль быў адноўлены." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16824,7 +16844,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16848,19 +16868,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Ня выбраная база дадзеных." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16921,28 +16941,28 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Табліца %1$s створаная." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Шаблён назвы файла" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "У пачатку табліцы" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16959,10 +16979,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "У пачатку табліцы" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17008,7 +17034,7 @@ msgstr "" msgid "strict error" msgstr "Тып запыту" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18210,6 +18236,10 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#, fuzzy +#~ msgid "Native MySQL Authentication" +#~ msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/be@latin.po b/po/be@latin.po index 0cf9240b57..6749c62915 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " "information." msgstr "" -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1$s - %2$s." msgstr "Pakazanyja zapisy" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Kamentar da bazy dadzienych" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 #, fuzzy #| msgid "Table comments" msgid "Table comments:" msgstr "Kamentar da tablicy" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -62,13 +62,13 @@ msgstr "Kamentar da tablicy" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -81,9 +81,9 @@ msgstr "Kamentar da tablicy" msgid "Column" msgstr "Nazvy kalonak" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -94,12 +94,12 @@ msgstr "Nazvy kalonak" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -111,9 +111,9 @@ msgstr "Nazvy kalonak" msgid "Type" msgstr "Typ" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -124,15 +124,15 @@ msgstr "Typ" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nul" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -143,14 +143,14 @@ msgstr "Nul" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Pa zmoŭčańni" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -160,7 +160,7 @@ msgstr "Pa zmoŭčańni" msgid "Links to" msgstr "Źviazanaja z" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -174,19 +174,19 @@ msgstr "Źviazanaja z" msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Pieršasny" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -194,13 +194,13 @@ msgstr "Pieršasny" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -208,17 +208,17 @@ msgstr "Pieršasny" msgid "No" msgstr "Nie" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -227,13 +227,13 @@ msgstr "Nie" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -245,15 +245,15 @@ msgstr "Tak" msgid "View dump (schema) of database" msgstr "Prahladzieć damp (schiemu) bazy dadzienych" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -262,8 +262,8 @@ msgid "Tables" msgstr "Tablic" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -271,10 +271,10 @@ msgstr "Tablic" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -287,30 +287,30 @@ msgstr "Struktura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Dadzienyja" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Vybrać usio" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s." msgid "Database %1$s has been renamed to %2$s." msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:149 +#: db_operations.php:150 #, fuzzy, php-format #| msgid "Database %s has been copied to %s." msgid "Database %1$s has been copied to %2$s." @@ -327,44 +327,44 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_qbe.php:125 +#: db_qbe.php:126 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia" -#: db_qbe.php:143 +#: db_qbe.php:144 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pierajści da skapijavanaj tablicy" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "U dostupie admoŭlena!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy #| msgid "Chart generated successfully." msgid "Tracking data deleted successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Nia vybranaja baza dadzienych." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "" @@ -404,163 +404,163 @@ msgstr "Typ zapytu" msgid "Bad parameters!" msgstr "Dadać novaje pole" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dadać novaje pole" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Radki padzielenyja" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Dadać abmiežavańni" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Polygon %d:" msgstr "Dadać %s novyja pali" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dadać %s novyja pali" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "Dadać novaha karystalnika" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Paniesłasia" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 #, fuzzy #| msgid "Access denied!" msgid "Succeeded" msgstr "U dostupie admoŭlena!" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "Complete inserts" msgid "Incomplete params" msgstr "Poŭnaja ŭstaŭka" -#: import.php:195 +#: import.php:196 #, fuzzy, php-format #| msgid "" #| "You probably tried to upload too large file. Please refer to " @@ -573,15 +573,15 @@ msgstr "" "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " "abmiežavańnie." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Zakładka była vydalenaja." -#: import.php:489 +#: import.php:486 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 " @@ -591,18 +591,18 @@ msgstr "" "zahružany, albo pamier fajła pieravysiŭ maksymalny pamier, vyznačany " "kanfihuracyjaj PHP. Hł. [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "Zakładka %s stvoranaja" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -611,7 +611,7 @@ msgstr[0] "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." msgstr[1] "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." msgstr[2] "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -623,7 +623,7 @@ msgstr "" "Vyjšaŭ dazvoleny čas vykanańnia skrypta. Kali vy chočacie zavieršyć " "impartavańnie, kali łaska, zahruzicie fajł znoŭ i impartavańnie ŭznavicca." -#: import.php:632 +#: import.php:629 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." @@ -632,7 +632,7 @@ msgstr "" "Heta zvyčajna značyć, što phpMyAdmin nia zmoža skončyć hetaje impartavańnia, " "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." @@ -640,17 +640,17 @@ msgstr "Kamandy \"DROP DATABASE\" adklučanyja." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Nazad" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -658,53 +658,53 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General relation features" msgid "General settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Źmianić parol" -#: index.php:213 +#: index.php:214 #, fuzzy #| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "Supastaŭleńnie padłučeńnia da MySQL" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "General relation features" msgid "Appearance settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 #, fuzzy #| msgid "General relation features" msgid "More settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Database for user" msgid "Database server" msgstr "Baza dadzienych dla karystalnika" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 #, fuzzy #| msgid "Server" msgid "Server type:" msgstr "Server" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -712,85 +712,85 @@ msgstr "Server" msgid "Server version:" msgstr "Versija servera" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Protocol version" msgid "Protocol version:" msgstr "Versija pratakołu" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Karystalnik" -#: index.php:314 +#: index.php:315 #, fuzzy #| msgid "Rename database to" msgid "Server charset:" msgstr "Pierajmienavać bazu dadzienych u" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Web-server" -#: index.php:338 +#: index.php:339 #, fuzzy #| msgid "MySQL client version" msgid "Database client version:" msgstr "Versija klijenta MySQL" -#: index.php:342 +#: index.php:343 #, fuzzy #| msgid "PHP extension" msgid "PHP extension:" msgstr "Pašyreńnie PHP" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "Versija PHP" -#: index.php:377 +#: index.php:378 #, fuzzy #| msgid "Version information" msgid "Version information:" msgstr "Infarmacyja pra versiju" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dakumentacyja" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Aficyjnaja staronka phpMyAdmin" -#: index.php:402 +#: index.php:403 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atrybuty" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Niama źmienaŭ" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 " @@ -800,13 +800,13 @@ msgstr "" "šmatbajtavuju kadyroŭku. Biez pašyreńnia mbstring phpMyAdmin nia moža " "padzialać radki karektna, i heta moža pryvieści da niečakanych vynikaŭ." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -814,22 +814,22 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Kanfihuracyjnamu fajłu zaraz patrebnaja sakretnaja fraza (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -837,7 +837,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -849,12 +849,12 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -863,7 +863,7 @@ msgstr "" "Versija vašaj biblijateki MySQL dla PHP %s adroźnivajecca ad versii vašaha " "servera MySQL %s. Heta moža vyklikać niepradkazalnyja pavodziny." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1050,7 +1050,7 @@ msgid "Save & close" msgstr "Zachavać jak fajł" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Skinuć" @@ -1094,7 +1094,7 @@ msgstr "Dadać novaje pole" msgid "Edit index" msgstr "Redagavać nastupny radok" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1130,10 +1130,10 @@ msgstr "Dadać %s novyja pali" msgid "You have to add at least one column." msgstr "Treba dadać prynamsi adno pole." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1149,7 +1149,7 @@ msgstr "pa zapytu" msgid "Matched rows:" msgstr "Fiksavanyja staronki" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1170,13 +1170,13 @@ msgstr "Pustoje imia chostu!" msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" @@ -1186,8 +1186,8 @@ msgstr "Paroli nie supadajuć!" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "" @@ -1215,19 +1215,19 @@ msgstr "Radok byŭ vydaleny" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1353,40 +1353,40 @@ msgid "Processes" msgstr "Pracesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1407,7 +1407,7 @@ msgstr "Suviazi" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" @@ -1425,16 +1425,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Nijakaja" @@ -1637,20 +1637,20 @@ msgstr "Praanalizavać" msgid "Explain output" msgstr "Tłumačyć SQL" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Stan" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Čas" @@ -1750,10 +1750,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Imrart" @@ -1840,7 +1840,7 @@ msgstr "Dadać novaje pole" msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" @@ -1890,8 +1890,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." @@ -1939,7 +1939,7 @@ msgstr "Kapijavać bazu dadzienych u" msgid "Changing charset" msgstr "Kadyroŭka" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1980,77 +1980,83 @@ msgstr "Prahlad" msgid "Deleting" msgstr "Vydaleńnie %s" -#: js/messages.php:391 +#: js/messages.php:388 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Damp dadzienych tablicy" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Ekspart" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Kolkaść paloŭ" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Dadać novaha karystalnika" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "pa zapytu" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -2058,106 +2064,106 @@ msgstr "U vyhladzie SQL-zapytu" msgid "Edit" msgstr "Redagavać" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Vydalić" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Źmiennaja" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pošuk u bazie dadzienych" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atrybuty" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Pieršasny kluč byŭ dadadzieny da %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Źmianić" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2165,551 +2171,551 @@ msgstr "" msgid "End of step" msgstr "U kancy tablicy" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Zachavać" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "pa zapytu" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pošuk" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazvy kalonak" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazvy kalonak" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "pa zapytu" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dadać/vydalić kalonku kryteru" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Pamier ukazalnika na dadzienyja" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Skapijavać" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Radki padzielenyja" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Inner ring" msgstr "Radki padzielenyja" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Radki padzielenyja" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Staronka:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Vybrać usio" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Vybrać usio" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Volnych staronak" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Vybrać usio" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Kali łaska, vybierycie staronku dla redagavańnia" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relacyjnaja schiema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Kolkaść paloŭ" -#: js/messages.php:569 +#: js/messages.php:570 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Źmieniena radkoŭ: %1$d." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Adpravić" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Pakazać usie" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pieršapačatkovaja pazycyja" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Skasavać" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Spyniena" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Impartavać fajły" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Paroh fajła łogu" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Vybierycie tablicu(y)" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Druk" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Niama tablic" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Pakazać usie" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dadać novaje pole" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Pakazać sietku" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2717,124 +2723,124 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Pakazać adkrytyja tablicy" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignaravać" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Pakazać hety zapyt znoŭ" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Vykanać zapyt z zakładak" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Kamentar da tablicy" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "pa zapytu" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2843,38 +2849,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Dadać novaje pole" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Papiaredniaja staronka" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2882,96 +2908,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Tra" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2979,78 +3005,78 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Śn" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3058,86 +3084,86 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3146,139 +3172,139 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nijakaja" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundu" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Pamyłka" @@ -3340,20 +3366,20 @@ msgid "Charset" msgstr "Kadyroŭka" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Supastaŭleńnie" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Dvajkovy" @@ -3550,7 +3576,7 @@ msgid "Czech-Slovak" msgstr "Čechasłavackaja" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nieviadoma" @@ -3603,7 +3629,7 @@ msgstr "" msgid "Font size" msgstr "Pamier šryfta" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3611,25 +3637,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Vydalić suviaź" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL-zapyt" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3637,27 +3663,27 @@ msgid "" "configured)." msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server nie adkazvaje" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Padrabiaźniej…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Pracedury" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym " @@ -3771,67 +3797,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-zapyt da BD %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Vykanać zapyt" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Pošuk" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Vydalić suviaź" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Vydalić suviaź" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Pakazvajučy zakładku" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Vydalić suviaź" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "prynamsi adno z słovaŭ" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "usie słovy" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "dakładnuju frazu" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "rehularny vyraz" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Vyniki pošuku \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3840,7 +3866,7 @@ msgstr[0] "Ahułam: %s supadzieńniaŭ" msgstr[1] "Ahułam: %s supadzieńniaŭ" msgstr[2] "Ahułam: %s supadzieńniaŭ" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3849,53 +3875,47 @@ msgstr[0] "%s supadzieńniaŭ u tablicy %s" msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Prahlad" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Damp dadzienych tablicy" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Pošuk u bazie dadzienych" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Znajści:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Słovy, padzielenyja prahałam (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "U tablicy(ach):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Źniać usie adznaki" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -3923,16 +3943,16 @@ msgstr "Fajły" msgid "Search this table" msgstr "Pošuk u bazie dadzienych" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3941,8 +3961,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3951,8 +3971,8 @@ msgctxt "Next page" msgid "Next" msgstr "Nastupnaja staronka" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3963,7 +3983,7 @@ msgstr "Apošniaja staronka" msgid "All" msgstr "Usie" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3974,8 +3994,8 @@ msgstr "Kolkaść paloŭ" msgid "Sort by key" msgstr "Sartavać pa klučy" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3997,10 +4017,10 @@ msgstr "Sartavać pa klučy" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Nałady" @@ -4048,35 +4068,35 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Radok byŭ vydaleny" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Spynić" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Značeńnie moža być prybliznym. Hł. [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4085,76 +4105,76 @@ msgstr "" "Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " "%sdakumentacyi%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Pakazanyja zapisy" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "usiaho" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Z adznačanymi:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Adznačyć usio" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Suviaź nia znojdzienaja" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4162,7 +4182,7 @@ msgid "None" msgstr "Nijakaja" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4170,29 +4190,29 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Imrart" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4200,37 +4220,37 @@ msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ " "vyznačany ŭ HTML-formie." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Fajł byŭ zahružany tolki častkova." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Adsutničaje časovaja tečka." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Pamyłka zapisu na dysk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Zahruzka fajła spynienaja pašyreńniem." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Niemahčyma pračytać fajł" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4238,15 +4258,15 @@ msgstr "" "Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł " "[doc@faq1-11]1.11 u FAQ[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4256,30 +4276,30 @@ msgstr "" "(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Infarmacyja pra versiju" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Adkryć novaje akno phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Versija dla druku" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4290,20 +4310,20 @@ msgid "No index defined!" msgstr "Indeks nia vyznačany!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4313,59 +4333,59 @@ msgstr "Indeksy" msgid "Action" msgstr "Dziejańnie" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Imia kluča" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kolkaść elementaŭ" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Kamentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Pieršasny kluč byŭ vydaleny." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s byŭ vydaleny." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Vydalić" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4374,19 +4394,19 @@ msgstr "" "Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź " "ich, mahčyma, možna vydalić." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Staronka:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Mova" @@ -4410,11 +4430,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4433,14 +4453,15 @@ msgid "View" msgstr "Vyhlad" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4449,8 +4470,8 @@ msgid "Table" msgstr "Tablica" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4458,45 +4479,45 @@ msgstr "Tablica" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Pošuk" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Ustavić" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Pryvilei" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Aperacyi" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4512,16 +4533,16 @@ msgstr "Tryhiery" msgid "Database seems to be empty!" msgstr "Baza dadzienych — pustaja!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Pracedury" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4529,22 +4550,22 @@ msgstr "Pracedury" msgid "Events" msgstr "Padziei" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dyzajner" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Bazy dadzienych" @@ -4555,39 +4576,39 @@ msgid "User accounts" msgstr "Karystalnik" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Dvajkovy łog" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacyja" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Źmiennyja" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Kadyroŭki" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Mašyny" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." @@ -4595,7 +4616,7 @@ msgid_plural "%1$d rows affected." msgstr[0] "Źmieniena radkoŭ: %1$d." msgstr[1] "Źmieniena radkoŭ: %1$d." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." @@ -4603,7 +4624,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Vydalena radkoŭ: %1$d." msgstr[1] "Vydalena radkoŭ: %1$d." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." @@ -4672,29 +4693,29 @@ msgstr "Źmiennyja" msgid "Favorites" msgstr "Źmiennyja" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Karystalnik %s užo isnuje!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." @@ -4757,7 +4778,7 @@ msgstr "Pakazać adkrytyja tablicy" msgid "Show slave hosts" msgstr "Pakazać zaležnyja servery" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" @@ -4818,13 +4839,13 @@ msgstr[0] "vykarystoŭvajecca" msgstr[1] "vykarystoŭvajecca" msgstr[2] "vykarystoŭvajecca" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Dla hetaj mašyny zachavańnia dadzienych detalnaja infarmacyja nie dastupnaja." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." @@ -4832,76 +4853,76 @@ msgstr "" "%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-" "servery." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s dastupnaja na hetym MySQL-servery." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s była adklučanaja dla retaha MySQL-servera." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Pakazać stan zaležnych serveraŭ" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nia znojdzienaja!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Niapravilnaja baza dadzienych" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Niekarektnaje imia tablicy" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s była pierajmienavanaja ŭ %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4909,19 +4930,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Imia pieršasnaha kluča musić być PRIMARY!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Niemahčyma pierajmienavać indeks u PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Častki indeksu nia vyznačanyja!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Pamyłka stvareńnia źniešniaha kluča na %1$s (praviercie typy kalonak)" @@ -5194,7 +5215,7 @@ msgid "Date and time" msgstr "Stvaryć novy indeks" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5213,70 +5234,70 @@ msgstr "Kolkaść fajłaŭ łogu" msgid "Max: %s%s" msgstr "Maksymalny pamier: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Tłumačyć SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Biez PHP-kodu" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Vykanać zapyt" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Stvaryć PHP-kod" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Abnavić" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Prafilavańnie" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5284,68 +5305,68 @@ msgid "Edit inline" msgstr "Dadać novaje pole" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ndz" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Pracedury" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie " "na %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Ačyścić" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5361,7 +5382,7 @@ msgstr "u chvilinu" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "u hadzinu" @@ -5369,14 +5390,14 @@ msgstr "u hadzinu" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Pošuk" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5384,7 +5405,7 @@ msgstr "Pošuk" msgid "Description" msgstr "Apisańnie" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Vykarystoŭvać heta značeńnie" @@ -5425,22 +5446,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nazva" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Daŭžynia/Značeńni*" @@ -5451,7 +5472,7 @@ msgstr "Daŭžynia/Značeńni*" msgid "Attribute" msgstr "Atrybuty" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5474,13 +5495,13 @@ msgstr "Dadać %s novyja pali" msgid "Select a column." msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "Dadać %s novyja pali" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5488,7 +5509,7 @@ msgstr "Dadać %s novyja pali" msgid "Attributes" msgstr "Atrybuty" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5497,30 +5518,30 @@ msgstr "" "Vy ŭklučyli mbstring.func_overload u vašym kanfihuracyjnym fajle PHP. Hetaja " "opcyja niesumiaščalnaja z phpMyAdmin i moža vyklikać paškodžańnie dadzienych!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5528,20 +5549,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6108,7 +6129,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6220,13 +6241,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Vyrazy" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Zachavać jak fajł" @@ -6236,7 +6257,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Farmat" @@ -6379,7 +6400,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Pierazapisvać isnujučy(ja) fajł(y)" @@ -6394,7 +6415,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" @@ -6405,7 +6426,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" @@ -6437,7 +6458,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Dadać %s" @@ -6629,7 +6650,7 @@ msgid "Customize the navigation tree." msgstr "Vykarystoŭvać tekstavaje pole" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servery" @@ -7564,7 +7585,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Aŭtentyfikacyja…" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8247,7 +8268,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8255,10 +8276,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8413,25 +8434,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Tekst Open Document" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tablica %s była ačyščanaja." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Vyhlad %s byŭ vydaleny" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8446,12 +8467,12 @@ msgid "Position" msgstr "Pazycyja" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Typ padziei" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID servera" @@ -8460,7 +8481,7 @@ msgid "Original position" msgstr "Pieršapačatkovaja pazycyja" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Infarmacyja" @@ -8474,16 +8495,16 @@ msgstr "Abrazać pakazanyja zapyty" msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8492,26 +8513,26 @@ msgstr[0] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." msgstr[1] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." msgstr[2] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Radki" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Ahułam" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Vykarystańnie resursaŭ" @@ -8542,35 +8563,35 @@ msgstr "" msgid "Enable statistics" msgstr "Uklučyć statystyku" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Nałady i źmiennyja servera" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tablica %1$s była paśpiachova źmienienaja." @@ -8628,7 +8649,7 @@ msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8648,12 +8669,12 @@ msgstr "Źmianić" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8676,13 +8697,13 @@ msgstr "Poŭnatekstekstavaje" msgid "Distinct values" msgstr "Prahlad roznych značeńniaŭ" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Niama źmienaŭ" @@ -8705,203 +8726,207 @@ msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Biez parola" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Parol:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Paćvierdžańnie" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Chešavańnie parolu" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Stvaryć novuju tablicu ŭ BD %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Stvaryć novuju tablicu ŭ BD %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export" msgid "Export templates:" msgstr "Ekspart" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Šablon nazvy fajła" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Imia tablicy" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Stvaryć" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Šablon nazvy fajła" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s tablic(y)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Abnavić zapyt" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Vybierycie tablicu(y)" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Typ ekspartu" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Bazy dadzienych" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tablic" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Farmat" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Opcyi pieraŭtvareńnia" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Radki" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Zachavać na servery ŭ tečcy %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Šablon nazvy fajła" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8916,127 +8941,127 @@ msgstr "" "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " "praviedzienyja nastupnyja źmieny: %3$s. Astatni tekst zastaniecca jak jość." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Kadyroŭka fajła:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Ścisk" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "archivavany ŭ zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "archivavany ŭ gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Zachavać jak fajł" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Stvaryć novuju tablicu ŭ BD %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "haryzantalna (paviernutyja zahałoŭki)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Zachavać jak fajł" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Vybierycie tablicu(y)" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Vybierycie tablicu(y)" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "imia bazy dadzienych" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "User name" msgid "New table name" msgstr "Imia karystalnika" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Nazvy kalonak" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Nazvy kalonak" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny ekspartavańnia, kali łaska, praviercie " "ŭstalavanyja fajły!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "General relation features" msgid "committed on %1$s by %2$s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "General relation features" msgid "authored on %1$s by %2$s" @@ -9510,13 +9535,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9524,77 +9549,77 @@ msgstr "" "Fajł %s užo isnuje na servery, źmianicie imia fajła abo praviercie opcyju " "pierazapisu." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Niama tablic" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tolki strukturu" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9606,85 +9631,86 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Stvaryć indeks na %s kalonkach" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Schavać" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcyja" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Abo" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ustavić" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Pačać ustaŭku znoŭ z %s-ha radku" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "i paśla" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9694,8 +9720,8 @@ msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9706,31 +9732,31 @@ msgstr "" msgid "Value" msgstr "Značeńnie" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Tolki strukturu" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Strukturu i dadzienyja" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Tolki dadzienyja" @@ -9741,14 +9767,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Dadać abmiežavańni" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9811,8 +9837,8 @@ msgstr "Pracedury" msgid "Views:" msgstr "Vyhlad" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Pakazać" @@ -9860,19 +9886,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Zachavać jak fajł" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9888,7 +9914,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9911,7 +9937,7 @@ msgstr "" msgid "Database operations" msgstr "Nałady ekspartu bazy dadzienych" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -10016,13 +10042,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10276,8 +10302,8 @@ msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10329,83 +10355,83 @@ msgstr "(asobna)" msgid "Move table to (database.table)" msgstr "Pieranieści tablicu ŭ (baza dadzienych.tablica)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Pierajmienavać tablicu ŭ" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Kamentar da tablicy" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opcyi tablicy" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Mašyna zachavańnia dadzienych" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Pierajści da skapijavanaj tablicy" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Absłuhoŭvańnie tablicy" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizavać tablicu" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Pravieryć tablicu" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Pravieryć tablicu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defrahmentavać tablicu" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Keš tablicy %s byŭ ačyščany." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Skinuć keš tablicy (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Ramantavać tablicu" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10413,103 +10439,103 @@ msgstr "Ramantavać tablicu" msgid "Delete data or table" msgstr "Damp dadzienych tablicy" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Praanalizavać" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Pravieryć" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Aptymizavać" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Pierabudavać" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Adramantavać" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Padtrymka padziełaŭ" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Padzieł %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Skasavać padzieł na častki" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Niemahčyma pieranieści tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Niemahčyma skapijavać tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Pustaja nazva tablicy!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10540,18 +10566,18 @@ msgstr "Pakazać koler" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Niemahčyma padłučycca: niapravilnyja nałady." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Zaprašajem u %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10560,7 +10586,7 @@ msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10572,7 +10598,7 @@ msgstr "" "ŭpeŭniciesia, što jany adpaviadajuć infarmacyi, jakuju daŭ administratar " "MySQL-servera." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10599,15 +10625,15 @@ msgstr "Imia karystalnika:" msgid "Server Choice:" msgstr "Vybar servera" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10686,7 +10712,7 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" @@ -10695,7 +10721,7 @@ msgstr "Damp dadzienych tablicy" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Padzieja" @@ -10703,8 +10729,8 @@ msgstr "Padzieja" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10812,7 +10838,7 @@ msgstr "Paznačyć nazvy paloŭ u pieršym radku" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11390,7 +11416,7 @@ msgstr "Źmiest" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Dadatkova" @@ -11836,57 +11862,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "niama apisańnia" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11895,316 +11921,316 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tolki strukturu" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tolki strukturu" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Imia karystalnika" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Imia karystalnika" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Parol" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Portrait" msgid "Port:" msgstr "Partret" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Źmiennaja" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Chost" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Luby chost" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lakalny" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Hety chost" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Luby karystalnik" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Paćvierdžańnie" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Zgieneravać parol" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Pamyłka" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Pryvilei byli paśpiachova pierazahružanyja." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12227,7 +12253,7 @@ msgstr "Tablica %s była vydalenaja" msgid "Event %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12238,88 +12264,88 @@ msgstr "" msgid "Edit event" msgstr "Padzieja" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Padrabiaźniej…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Typ padziei" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Źmianić" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Vykanać zapyt z zakładak" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Apošniaja staronka" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Poŭnaja ŭstaŭka" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Niekarektnaje imia tablicy" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12342,7 +12368,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12356,142 +12382,142 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Tablica %s była vydalenaja" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Tablica %s była vydalenaja" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Pramyja linii suviaziaŭ" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dadać novaje pole" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pierajmienavać bazu dadzienych u" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Typ pracedury" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Daŭžynia/Značeńni*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcyi tablicy" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Typ zapytu" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Niekarektnaje imia tablicy" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12499,13 +12525,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12533,44 +12559,44 @@ msgstr "Tablica %1$s stvoranaja." msgid "Edit trigger" msgstr "Dadać novaha karystalnika" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Tryhiery" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Čas" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Niekarektnaje imia tablicy" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Niekarektnaje imia tablicy" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Niekarektnaje imia tablicy" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Niekarektnaje imia tablicy" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12710,93 +12736,93 @@ msgstr "Raskładki i supastaŭleńni" msgid "Databases statistics" msgstr "Statystyka bazaŭ dadzienych" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12806,137 +12832,109 @@ msgstr "" "Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nijakaja" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "max. concurrent connections" msgid "Does not require SSL-encrypted connections." msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "max. concurrent connections" msgid "Requires SSL-encrypted connections." msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Abmiežavańni resursaŭ" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " "praciahu hadziny." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12944,415 +12942,393 @@ msgstr "" "Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " "dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " "praciahu hadziny." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Pracedury" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administravańnie" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "hlabalny" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " "pryvilejaŭ." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL authentication" msgstr "Aŭtentyfikacyja…" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Authenticating…" msgid "SHA256 password authentication" msgstr "Aŭtentyfikacyja…" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authenticating…" -msgid "Native MySQL Authentication" -msgstr "Aŭtentyfikacyja…" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Imia karystalnika" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Imia łogu" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authenticating…" msgid "Authentication Plugin" msgstr "Aŭtentyfikacyja…" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Chešavańnie parolu" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vy anulavali pryvilei dla %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Luby karystalnik" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza dadzienych dla karystalnika" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Pravieryć pryvilei dla bazy \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vyhlad %s byŭ vydaleny" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Luby" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "hlabalny" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "šablon" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Anulavać" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Redagavać nastupny radok" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… pakinuć staroha." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… vydalić staroha z tablicy karystalnikaŭ." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Vydalić vybranych karystalnikaŭ" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pryvilei" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Karystalnik" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Karystalnik" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Karystalniki" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13365,7 +13341,7 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13384,11 +13360,11 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." @@ -13691,12 +13667,12 @@ msgstr "Kamanda" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13725,12 +13701,12 @@ msgstr "u chvilinu" msgid "per second:" msgstr "u sekundu" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Vyrazy" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13762,19 +13738,19 @@ msgstr "Pakazać adkrytyja tablicy" msgid "Related links:" msgstr "Suviazi" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13784,17 +13760,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13806,11 +13782,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13818,7 +13794,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13826,7 +13802,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13835,23 +13811,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13861,7 +13837,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13872,7 +13848,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13881,7 +13857,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13891,7 +13867,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13899,7 +13875,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13912,7 +13888,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13924,37 +13900,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13964,7 +13940,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13977,11 +13953,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13990,7 +13966,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13998,11 +13974,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14010,7 +13986,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14024,55 +14000,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14080,35 +14056,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -14117,54 +14093,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14172,7 +14148,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14180,7 +14156,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14190,17 +14166,17 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Farmat impartavanaha fajła" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14210,26 +14186,26 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14240,17 +14216,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14258,39 +14234,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14303,7 +14279,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14311,19 +14287,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -14331,13 +14307,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -14346,7 +14322,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14354,17 +14330,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14372,13 +14348,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14386,14 +14362,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14403,25 +14379,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14433,7 +14409,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14443,11 +14419,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14459,13 +14435,13 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Keš klučoŭ" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." @@ -14502,49 +14478,49 @@ msgstr "Baza dadzienych dla karystalnika" msgid "Table level tabs" msgstr "Imia tablicy" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Vyhlad" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Luby karystalnik" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Biez pryvilejaŭ." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nazvy kalonak" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versija servera" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Baza dadzienych dla karystalnika" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14656,7 +14632,7 @@ msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s" msgid "Run SQL query/queries on table %s" msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -14747,104 +14723,104 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Delete relation" msgid "Delete version" msgstr "Vydalić suviaź" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14852,78 +14828,78 @@ msgctxt "None for default" msgid "None" msgstr "Nijakaja" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "General relation features" msgid "Version %1$s of %2$s was deleted." msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -14933,7 +14909,7 @@ msgstr "" msgid "Manage your settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14961,7 +14937,7 @@ msgstr "Pamyłka ŭ ZIP-archivie:" msgid "No files found inside ZIP archive!" msgstr "Fajły ŭ ZIP-archivie nia znojdzienyja!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14969,86 +14945,86 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "Dakumentacyja pa phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Impartavać fajły" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Zachavać jak fajł" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -15056,45 +15032,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Biez pryvilejaŭ" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Patok %s byŭ paśpiachova spynieny." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -15102,101 +15078,100 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Madyfikacyi byli zachavanyja" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Madyfikacyi byli zachavanyja" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -15232,28 +15207,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -15268,12 +15243,12 @@ msgstr "Bazy dadzienych adsutničajuć" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s užo isnuje!" @@ -15286,35 +15261,35 @@ msgstr "Prahladzieć damp (schiemu) tablicy" msgid "Invalid table name" msgstr "Niekarektnaje imia tablicy" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Nivodny radok nia vybrany" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Nivodny radok nia vybrany" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15546,7 +15521,7 @@ msgid "List of available transformations and their options" msgstr "Dastupnyja pieraŭtvareńni" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15572,7 +15547,7 @@ msgstr "" "(naprykład, '\\\\xyz' abo 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16119,17 +16094,17 @@ msgid "Size" msgstr "Pamier" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Stvoranaja" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Apošniaja pravierka" @@ -16164,6 +16139,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16188,10 +16169,48 @@ msgstr "Dadać pryvilei na nastupnuju tablicu" msgid "Add privileges on the following table:" msgstr "Dadać pryvilei na nastupnuju tablicu" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nijakaja" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Vydalić vybranych karystalnikaŭ" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Abmiežavańni resursaŭ" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" @@ -16228,7 +16247,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16421,7 +16440,7 @@ msgstr "Karystalnik" msgid "Comment:" msgstr "Kamentar" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16457,24 +16476,24 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dadać abmiežavańni" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Unutranyja suviazi" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Unutranyja suviazi" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16482,7 +16501,7 @@ msgstr "" "Unutranaja suviaź nie źjaŭlajecca abaviazkovaj, kali isnuje adpaviednaja " "suviaź FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16548,13 +16567,13 @@ msgstr "Pieršapačatkovaja pazycyja" msgid "Replaced string" msgstr "Suviazi" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Replikacyja" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "in query" msgid "Additional search criteria" @@ -16642,7 +16661,7 @@ msgid "at beginning of table" msgstr "U pačatku tablicy" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16678,30 +16697,30 @@ msgstr "Daŭžynia radka" msgid "Index length" msgstr "Daŭžynia radka" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "padzielenaja na sekcyi" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Skasavać padzieł na častki" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Versija dla druku" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Vykarystańnie prastory" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektyŭnaść" @@ -16732,33 +16751,33 @@ msgstr "Prapanavanaja struktura tablicy" msgid "Track view" msgstr "Stvaryć" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Statystyka radku" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamičny" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "padzielenaja na sekcyi" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Daŭžynia radka" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Pamier radka" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16772,52 +16791,52 @@ msgstr "Tablica %s była vydalenaja" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Dastupnyja MIME-typy" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Dastupnyja pieraŭtvareńni" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Dastupnyja pieraŭtvareńni" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Apisańnie" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "Źmianić" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil byŭ adnoŭleny." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16891,7 +16910,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16916,19 +16935,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Nia vybranaja baza dadzienych." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16989,27 +17008,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Tablica %1$s stvoranaja." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "U pačatku tablicy" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -17026,10 +17045,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "U pačatku tablicy" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17076,7 +17101,7 @@ msgstr "" msgid "strict error" msgstr "Typ zapytu" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18294,6 +18319,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#, fuzzy +#~| msgid "Authenticating…" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Aŭtentyfikacyja…" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/bg.po b/po/bg.po index 2e9b5cbcf6..8054519379 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-05-23 19:20+0000\n" "Last-Translator: Yordan Nedelchev \n" "Language-Team: Bulgarian Are you sure you " "want to continue?" @@ -1925,51 +1930,51 @@ msgstr "" "Това действие може да промени дефиницията на накоя от колоните.
Сифурни " "ли сте, че искате да продължите?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Продължете" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Беше добавен главен ключ." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Към следващата стъпка…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Първата стъпка от нормализирането е завършено за таблиза '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Край на стъпката" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Втора стъпка на нормализация (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Готово" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Потвърждаване на частичната зависимост" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Избраните частични зависимостити са следните:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1977,20 +1982,20 @@ msgstr "" "Забележка: а, б -> D, F предполага стойности на колони А и В се комбинират " "заедно могат да се определят стойностите на колона г и колона е." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Няма избрани частични зависимости!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажи ми възможните частични зависимости, базирани на данните в таблицата" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Скриване на листа с частичните зависимости" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1998,182 +2003,182 @@ msgstr "" "Облегнете се! Може да отнеме няколко секунди, в зависимост от размера на " "данните и броя на колоните в таблицата." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Стъпка" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Следните действия ще бъдат изпълнени:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "ИЗТРИВАНЕ на колона/и %s от таблицата %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Създаване на следната таблица" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Трета стъпка на нормализация (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Потвърждаване на преходните зависимости" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Избраните зависимости са следните:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Няма избрани зависимости!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Запазване" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Скриване критерий за търсене" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Търсене в област" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Максимум колони:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Минимум колони:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Минимална стойност:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Максимална стойност:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Скриване параметрите за търсене и заместване" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Показване параметрите за търсене и заместване" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Всяка точка представлява ред." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Посочване на точка ще покаже етикета ѝ." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "За да увеличите, изберете част от диаграмата с мишката." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Щракнете върху връзката за възстановяване на мащабирането, за да се върнете " "в състоянието по подразбиране." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Кликнете върху точката с данните, за да видите и евентуално промените реда." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Плотът може да се преоразмерява, като го дръпнете за долния десен ъгъл." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Изберете две колони" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Изберете две различни колони" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Съдържание на точката с данни" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Копиране" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Точка" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Многоъгълник" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Вътрешен пръстен" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Външен контур" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Искате ли да копирате криптиращия ключ?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Криптиращ ключ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2181,24 +2186,24 @@ msgstr "" "Изглежда сте направили промени на страницата; ще бъдете уведомени преди да " "изоставите промените" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Изберете посочвания ключ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Моля изберете главен или уникален ключ!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2206,76 +2211,76 @@ msgstr "" "Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги " "запазите. Искате ли да продължите?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Име на страница" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Записване на страница" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Записване на страница като" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Отвори страница" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Изтриване на страница" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Неозаглавено" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Моля изберете страница, за да продължите" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Моля, въведете валидно име на страница" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Искате ли да запишете промените на текущата страница?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Изтриването на страницата е успешно" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Експорт на релационна схема" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Промените бяха запазени" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Добавяне на опция към колона \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d обект(а) бяха създадени." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Изпълнение" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Натиснете Esc за отмяна на редакцията." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2283,15 +2288,15 @@ msgstr "" "Редактирали сте данни и те не са запазени. Наистина ли искате да напуснете " "страницата преди запазването им?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Завличане за промяна на подредбата." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Кликнете за сортиране на резултата по тази колона." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2301,26 +2306,26 @@ msgstr "" "ASC/DESC.
- Control+кликване за премахване на колоната от ORDER BY " "клаузата" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Щракване за маркиране/отмаркиране." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Щракнете двукратно за копиране името на колона." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Щракнете стрелката,
за да изберете колони." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Показване на всички" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2329,11 +2334,11 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Моля въведете валиден шеснадесетичен низ. Валидни символи са 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2341,107 +2346,107 @@ msgstr "" "Наистина ли искате да видите всички редове? За една голяма таблица, това " "може да блокира браузъра." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Първоначална дължина" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "Отмяна" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекъснати" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Успех" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Състояние на импорта" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Пуснете файловете тук" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Първо избетере база данни" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печат" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете два пъти " "директно върху тях." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете директно върху " "тях." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Към връзка:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Копиране името на колоната." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Кликване с десния бутон върху името на колоната, за да го копирате в " "системния буфер." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Генериране на парола" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Генериране" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Още" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Показване на панела" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Скриване на панела" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Показване на скритото навигационно дърво." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Свързване с главния панел" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Премахване от главния панел" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Исканата страница не беше намерена в хронологията, може би е с изтекла " "валидност." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2451,27 +2456,27 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", последната стабилна версия:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "актуално" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Създаване на изглед" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Изпрати доклад за грешка" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Представи доклад за грешка" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2479,21 +2484,21 @@ msgstr "" "Възникнала е грешка фатална JavaScript. Бихте ли искали да изпратите доклад " "за грешка?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Промяна на настройки за доклади" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Показване детайли за доклада" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Вашият износ е непълна, поради нисък изпълнение срок на ниво PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2503,58 +2508,58 @@ msgstr "" "някои от полетата могат да бъдат пренебрегнати, поради max_input_vars " "конфигурацията на PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Засечени са някой грешки на сървъра!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Моля погледнете в края на този прозорец." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Игнориране на всички" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Според настройките си, те се подава в момента, моля, бъдете търпеливи." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Изпълняване на заявката отново?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Наистина ли искате да изтриете отметката: \"%s\"?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Възникнаха грешки при вземане на информация за SQL дебъг." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s изпълнени заявки %s пъти %s секунди." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Покажи доводи" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Скриване доводи" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Използвано време:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2570,349 +2575,369 @@ msgstr "" "подобен проблем и често причинен от „Браузване в личне режим“ (Private Mode " "Browsing)." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Копиране на таблици в" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Добавяне на представка на таблица" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Замяна на таблица с представка" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Преден" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Днес" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "януари" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "февруари" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "март" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "април" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "май" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "юни" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "юли" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "август" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "септември" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "октомври" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "ноември" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "дек" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "неделя" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "понеделник" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "петък" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Сед" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "календар-месец-година" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "няма" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Час" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "минута" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "секунда" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Полето е задължително" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Моля поправете тази област" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Моля въведете валиден емайл адрес" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Моля, въведете валиден URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Моля, въведете валидна дата" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Моля въведете валидна дата (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Моля, въведете валиден номер" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Моля, въведете валиден номер на кредитна карта" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Моля, въведете само цифри" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Моля, въведете една и съща стойност отново" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Моля въведете не повече от {0} знака" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Моля, въведете поне {0} букви" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Моля въведете стойност с дължина между {0} и {1} знака" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Моля, въведете стойност между {0} и {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Моля въведете стойност по-малка или равна на {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Въведете стойност по-голяма от или равна на {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Моля, въведете валиден дата или час" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Моля, въведете валиден HEX" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Грешка" @@ -2975,20 +3000,20 @@ msgid "Charset" msgstr "Знаков набор" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Колация" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "двоичен" @@ -3183,7 +3208,7 @@ msgid "Czech-Slovak" msgstr "Чехословашки" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "непознат" @@ -3231,28 +3256,28 @@ msgstr "" msgid "Font size" msgstr "Размер шрифт" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Показване на %1$d отбелязка (общо лични и споделени)" msgstr[1] "Показване на %1$d отбелязки (общо лични и споделени)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Няма бележки" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL конзола" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Неуспешно установяване на конфигурираната връзка за сверка/колация." -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3260,25 +3285,25 @@ msgstr "" "Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран " "правилно)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Сървърът не отговаря." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Проверете правата на папката, съдържаща БД." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Подробности…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Липсващ параметър:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 #, fuzzy msgid "Connection for controluser as defined in your configuration failed." msgstr "Грешка при указване на свръзка за controluser в конфигурацията." @@ -3373,110 +3398,105 @@ msgstr "Инс:" msgid "Del:" msgstr "Дел:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL заявка към БД %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Изпълни заявката" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Запазени отметки търсене:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Нова отбелязка" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Изтриване на отбелязка" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Обновяване на отбелязка" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Изтриване отбелязка" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "поне една от думите" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "всички думи" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "точната фраза" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "като регулярен израз" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати от търсенето на \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Общо: %s съвпадение" msgstr[1] "Общо: %s съвпадения" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s съвпадение в таблица %2$s" msgstr[1] "%1$s съвпадения в таблица %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Прелистване" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Изтриване на съвпаденията от таблицата %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Търсене в БД" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Намери:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Думите трябва да се разделят с интервал (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "В таблици:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Размаркиране всички" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "В колона:" @@ -3496,30 +3516,30 @@ msgstr "Филтриране на редове" msgid "Search this table" msgstr "Търсене в таблицата" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Предна" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Следваща" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Последна" @@ -3528,7 +3548,7 @@ msgstr "Последна" msgid "All" msgstr "Всички" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Брой редове:" @@ -3537,8 +3557,8 @@ msgstr "Брой редове:" msgid "Sort by key" msgstr "Сортиране по ключ" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3560,10 +3580,10 @@ msgstr "Сортиране по ключ" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Настройки" @@ -3603,102 +3623,102 @@ msgstr "Добре познат текст" msgid "Well Known Binary" msgstr "Добре позната двоична стойност" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Редът беше изтрит." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Спиране" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Може да има приблизителна стойност. Виж [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "SQL заявката беше изпълнена успешно." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Показване на редове %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d общо" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Заявката отне %01.4f секунди." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Когато има отметка:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Маркиране всички" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Операции с резултата от заявката" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Диаграма" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Визуализиране на GIS данни" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Връзката не е намерена!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Няма" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3706,71 +3726,71 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Твърде много съобщения за грешки, някои не са показани." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Доклад" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Автоматично изпращане на доклад, следващият път" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Файлът не е бил качен." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Изпратеният файл надхвърля директивата MAX_FILE_SIZE заложена във формата." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Подаденият файл беше само частично качен." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Липсва временна папка." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Неуспешно записване на файл на диска." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Качването на файлът беше спряно от разширение." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Неизвестна грешка при качване." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Файлът не може да бъде прочетен!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Грешка при преместване на качения файл, виж [doc@faq1-11]ЧЗВ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Грешка при преместване на качения файл." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Каченият файл неможе да бъде прочетен." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3779,28 +3799,28 @@ msgstr "" "Опитахте се да заредите файл с неподдържана компресия (%s). Или поддръжката " "ѝ не е реализирана, или е забранена от конфигурацията." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Липсва Git информация!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Отваряне на нов прозорец с phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Преглед за печат" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Оттук нататък е необходим javascript!" @@ -3809,20 +3829,20 @@ msgid "No index defined!" msgstr "Не е избран индекс!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Индекси" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3832,59 +3852,59 @@ msgstr "Индекси" msgid "Action" msgstr "Действие" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Име на ключ" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Уникално" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Опаковани" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Коментар" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Главният ключ беше изтрит." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Индекс %s беше изтрит." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Изтриване" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3893,19 +3913,19 @@ msgstr "" "Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " "бъде премахнат." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Страница:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Език" @@ -3929,11 +3949,11 @@ msgstr "Сървър" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3952,14 +3972,15 @@ msgid "View" msgstr "Изглед" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3968,8 +3989,8 @@ msgid "Table" msgstr "Таблица" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3977,45 +3998,45 @@ msgstr "Таблица" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Търсене" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Вмъкване" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Права" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Проследяване" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4031,16 +4052,16 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "БД изглежда празна!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Заявка по пример" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4048,20 +4069,20 @@ msgstr "Процедури" msgid "Events" msgstr "Събития" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Строител" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Централни колони" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "БД" @@ -4070,53 +4091,53 @@ msgid "User accounts" msgstr "Потребители" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Знакови набори" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Хранилища" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Добавки" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d повлиян ред." msgstr[1] "%1$d повлияни реда." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d ред изтрит." msgstr[1] "%1$d реда изтрити." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4164,27 +4185,27 @@ msgstr "Любими таблици" msgid "Favorites" msgstr "Любими" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Липсват информация за записване на търсенето на отбелязки." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Запис с това име вече съществува." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Грешка при зареждане на търсенето." @@ -4246,7 +4267,7 @@ msgstr "Показване отворените таблици" msgid "Show slave hosts" msgstr "Показване на подчинените хостове" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Показване състоянието на главния" @@ -4300,76 +4321,76 @@ msgid_plural "%d minutes" msgstr[0] "%d минута" msgstr[1] "%d минути" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Няма детайлна информация за състоянието на това хранилище на данни." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е разрешен на този MySQL сървър." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е забранено за този MySQL сървър." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Този MySQL сървър не поддържа хранилището на данни %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Неизвестно състояние на таблица:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "БД-източник `%s` не е намерена!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Целевата БД `%s` не е намерена!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Невалидна БД:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Невалидно име на таблица:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Грешка при преименуване на таблица %1$s в %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s беше преименувана на %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Таблицата с визуалните настройки не може да бъде запазена!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4377,19 +4398,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на първичния ключ трябва да е \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Индексът не може да бъде преименуван на PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Не са дефинирани части на индекс!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4659,7 +4680,7 @@ msgid "Date and time" msgstr "Дата и час" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Низ" @@ -4674,126 +4695,126 @@ msgstr "Пространствен" msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Статичен анализ:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Обяснение на SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Без PHP код" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Изпълни заявката" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Създаване на PHP код" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Опресняване" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Профилиране" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Редактиране на място" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "нд" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Липсващ параметър:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Показване БД \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Функционалността %s се влияе от известен дефект, виж %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Папката, която сте указали за качване е недостъпна." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Няма файлве за качване!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Изчистване" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Изпълнение" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Потребители" @@ -4807,7 +4828,7 @@ msgstr "на минута" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "на час" @@ -4815,12 +4836,12 @@ msgstr "на час" msgid "per day" msgstr "на ден" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Търсене:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4828,7 +4849,7 @@ msgstr "Търсене:" msgid "Description" msgstr "Описание" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Използване тази стойност" @@ -4865,22 +4886,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Име" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Дължина/Стойности" @@ -4889,7 +4910,7 @@ msgstr "Дължина/Стойности" msgid "Attribute" msgstr "Атрибут" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4906,11 +4927,11 @@ msgstr "Добавяне колона" msgid "Select a column." msgstr "Изберете колона." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Добавяне на нова колона" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4918,7 +4939,7 @@ msgstr "Добавяне на нова колона" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4927,26 +4948,26 @@ msgstr "" "Имате включено mbstring.func_overload в настройките на PHP. Тази опция е " "несъвместима с phpMyAdmin и може да причини повреда на данни!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Невалиден индекс на сървър: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Сървър %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Невалиден метод за удостоверяване в конфогурацията:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4954,20 +4975,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Осъвременете до %s %s или по-нова." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "възможен пробив в сигурността" @@ -5522,7 +5543,7 @@ msgid "Compress on the fly" msgstr "Компресиране в движение" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Конфигурационен файл" @@ -5629,12 +5650,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимално време за изпълнение" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Използване на израз %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Изпращане" @@ -5644,7 +5665,7 @@ msgstr "Знаков набор на файла" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Формат" @@ -5769,7 +5790,7 @@ msgid "Save on server" msgstr "Запазване на сървъра" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Презаписване на съществуващите файл(ове)" @@ -5782,7 +5803,7 @@ msgid "Remember file name template" msgstr "Запомняне на шаблона за име на файл" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне AUTO_INCREMENT стойност" @@ -5791,7 +5812,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Ограждане на имената на таблици и полета с обратни апострофи" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" @@ -5823,7 +5844,7 @@ msgstr "Липсват таблици от хранилището за конф #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Добавяне на %s" @@ -6023,7 +6044,7 @@ msgid "Customize the navigation tree." msgstr "Персонализиране рамката за навигация" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Сървъри" @@ -7033,7 +7054,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Метод за удостоверяване" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Тип удостоверяване" @@ -7814,7 +7835,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Проверка за обновление" @@ -7824,10 +7845,10 @@ msgstr "Проверка за обновление" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Позволява проверка за обновления на страницата на phpMyAdmin" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Проверка за обновления" @@ -7982,25 +8003,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Листа с фаворитите е пълен!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Таблицата %s беше изчистена." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Изглед %s беше изтрит" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8015,12 +8036,12 @@ msgid "Position" msgstr "Положение" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Тип на събитието" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Сървърен идентификатор" @@ -8029,7 +8050,7 @@ msgid "Original position" msgstr "Първоначално положение" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Информация" @@ -8043,42 +8064,42 @@ msgstr "Съкращаване на показаните заявки" msgid "Show Full Queries" msgstr "Показване на пълните заявки" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Няма БД" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Базата данни %1$s беше създадена." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d БД беше изтрита успешно." msgstr[1] "%1$ds БД бяха изтрити успешно." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Редове" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Общо" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Загубено място" @@ -8107,35 +8128,35 @@ msgstr "" msgid "Enable statistics" msgstr "Разрешаване на статистика" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Сървърни променливи и настройки" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Неуспешно създаване на променлива" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "Няма данни" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Таблицата %1$s беше променена." @@ -8188,7 +8209,7 @@ msgstr "Колоните бяха преместени упешно." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Грешка в заявката" @@ -8206,12 +8227,12 @@ msgstr "Промяна" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Индекс" @@ -8232,13 +8253,13 @@ msgstr "Пълнотекстово" msgid "Distinct values" msgstr "Уникални стойности" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Разширението %s липсва. Проверете конфигурацията на PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма промяна" @@ -8262,187 +8283,191 @@ msgstr "" "инсталацията!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Без парола" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Парола:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Отново" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Хеширане на паролата" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Експорт на БД от текущия сървър" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Експорт на таблици от БД \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Експортиране на редове от таблица \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Тип експорт" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Шаблон на файловото име:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Име на таблица" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Създаване" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Шаблон на файловото име:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Актуализиран" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Избор на таблици" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Метод за експортиране" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Бързо - минимум настройки" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Потребителско - всички настройки" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "БД" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Таблици" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Формат:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Специфични настройки:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Редове:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Схема на ред(ове)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Ред започва от:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Схема на всички редове" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Изход:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Записване на сървъра в директория %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Шаблон на файловото име:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ ще стане името на сървъра" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ ще стане името на БД" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ ще стане името на таблицата" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8450,114 +8475,114 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "прилагане и към бъдещи експорти" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Знаков набор на файла:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Компресия:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip-нато" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip-нато" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Показване на изхода като текст" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "Експортиране на редове от таблица \"%s\"" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Експортиране заглавки на таблици" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Запазване на изхода във файл" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Избор на таблици" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Избор на таблици" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Ново име на БД" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "Име: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "Копиране името на колоната" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Копиране името на колоната" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Приставките за експортиране не могат да бъдат заредени, моля проверете " "инсталацията!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8966,13 +8991,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недостатъчно свободно пространство за запазване на файла %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8980,74 +9005,74 @@ msgstr "" "Файлът %s вече съществува на сървъра, сменете името на файла или включете " "опцията за препокриване." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web сървърът няма права за писане върху файла %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Схемата беше запазена във файл %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Към БД: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Редактиране настройките на %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Към таблица: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Структурата на %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9058,82 +9083,83 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Скриване" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функция" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Поради дължината си,
това поле може да е нередактируемо" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Двоично - не се редактира" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Или" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "директорията за upload на web сървъра" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редакция/Вмъкване" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "и след това" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9143,8 +9169,8 @@ msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9155,31 +9181,31 @@ msgstr "" msgid "Value" msgstr "Стойност" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Само структурата" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Структурата и данните" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Само данните" @@ -9190,14 +9216,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Добавяне AUTO_INCREMENT стойност" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Добавяне ограничения" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9254,8 +9280,8 @@ msgstr "Процедури" msgid "Views:" msgstr "Изглед" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Показване" @@ -9302,19 +9328,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Изпращане" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9330,7 +9356,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Конфигурацията не може да бъде запазена" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9353,7 +9379,7 @@ msgstr "Нов" msgid "Database operations" msgstr "Опции за експорт на БД" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9472,13 +9498,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Изберете две колони" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Move column" msgid "No such column" @@ -9735,8 +9761,8 @@ msgid "Rename database to" msgstr "Преименуване БД на" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9784,183 +9810,183 @@ msgstr "(еднократно)" msgid "Move table to (database.table)" msgstr "Преместване на таблица към (БД.таблица)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Преименуване на таблицата на" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Коментари към таблицата" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Опции на таблицата" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Хранилище" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Копиране на таблица в (БД.таблица)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Превключване към копираната таблица" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Поддръжка на таблицата" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Проверка на таблицата" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Проверка на таблицата" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Дефрагментиране на таблица" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Кеша на таблица %s беше изчистен." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Изпразване кеша на таблицата (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Поправяне на таблицата" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Изпразване на таблицата (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Изтриване на таблицата (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Анализиране" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Проверка" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Оптимизиране" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Поправяне" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Затваряне" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Не може да се премести таблицата към себе си!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Не може да се копира таблицата към себе си!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Таблицата %s беше преместена към %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Таблица %s беше копирана в %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицата %s беше преместена към %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s беше копирана в %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Името на таблицата е празно!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Този формат няма опции" @@ -9987,18 +10013,18 @@ msgstr "Показване свят" msgid "Only show keys" msgstr "Само ключовете видими" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Връзката неосъществима: невалидни настройки." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Добре дошли в %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10007,7 +10033,7 @@ msgstr "" "Изглежда не се създали конфигурационен файл. Вероятно ще искате да " "използвате %1$sскрипта за настройки%2$s, за да го създадете." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10019,7 +10045,7 @@ msgstr "" "inc.php файла и да се уверите, че те отговарят на информацията предоставена " "от администратора на MySQL сървъра." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10046,15 +10072,15 @@ msgstr "Име:" msgid "Server Choice:" msgstr "Избор на сървър" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10117,7 +10143,7 @@ msgstr "Опции при експортиране на данните" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Схема на данните от таблица" @@ -10126,7 +10152,7 @@ msgstr "Схема на данните от таблица" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Действие" @@ -10134,8 +10160,8 @@ msgstr "Действие" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Описание" @@ -10229,7 +10255,7 @@ msgstr "Поставяне имената на полетата в първи р #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -10799,7 +10825,7 @@ msgstr "Съдържание" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Допълнително" @@ -11208,18 +11234,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "няма описание" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11227,41 +11253,41 @@ msgid "" "configuration storage there." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Главен сървър" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Този сървър е конфигуриран като главен за репликация." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Показване свързаните подчинени" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Добавяне на потребител за репликация като подчинен" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Конфигурация на главния" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11270,19 +11296,19 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Реплициране на всички БД; Игнориране на:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Игнориране на всички БД; Реплициране на:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Изберете БД:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11290,7 +11316,7 @@ msgstr "" "Сега добавете следните редове в края на секцията [mysqld] на вашия my.cnf и " "рестартирайте MySQL сървъра." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11300,71 +11326,71 @@ msgstr "" "\". След това би трябвало да видите съобщение, информиращо ви, че този " "сървър е конфигуриран като главен." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Подчинен сървър" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Master configuration" msgid "Master connection:" msgstr "Конфигурация на главния" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Подчинената SQL нишка не пусната!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Подчинената В/И нишка не пусната!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Сървърът е конфигуриран като подчинен в репликация. Искате ли да:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Показване таблицата със състоянието на подчинените" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Контролиране на подчинения:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Пълно пускане" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Пълно спиране" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Изчистване на подчинения" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Пускане само на SQL нишка" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Спиране само на SQL нишка" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Пускане само на В/И нишка" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Спиране само на В/И нишка" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Промяна или преконфигуриране на главен сървъра" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11373,27 +11399,27 @@ msgstr "" "Този сървър не е настроен като подчинен в репликация. Желаете ли да го настроите?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Обработка на грешки:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Прескачане на грешки може да доведе до десинхронизация между главния и " "подчинените сървъри!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Прескачане на текущата" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Прескачане на текущата" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11402,67 +11428,67 @@ msgstr "" "Този сървър не е настроен като главен за репликация. Желаете ли да го настроите?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Конфигурация на подчинен" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Потребителско име" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Потребителско име" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Парола" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Порт" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Състояние на главен" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Състояние на подчинен" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Променлива" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Хост" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11470,134 +11496,134 @@ msgstr "" "Само подчинени стартирани с опция --report-host=host_name са показани в този " "списък." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Всеки хост" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Този Хост" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Всеки потребител" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "От текстовото поле" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "От таблица Host" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Отново" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Генериране на парола" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Състояние на репликацията" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Главен сървър" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Диаграмата е създадена." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Главен сървър" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Състояние на репликацията" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Главен сървър" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Грешка" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Неизвестна грешка" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Не възможност за осъществяване на връзка с главния %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Главният не може да бъде сменен" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "Главният сървър сменен с %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11618,7 +11644,7 @@ msgstr "Събитието %1$s беше променено." msgid "Event %1$s has been created." msgstr "Събитието %1$s беше създадено." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -11630,77 +11656,77 @@ msgstr "Една или повече грешки възникнаха при msgid "Edit event" msgstr "Редакция събитие" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Подробности" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Име на събитие" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Промяна на %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Изпълнение в" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Изпълнение на всеки" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Начало" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Край" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide an event name" msgid "You must provide an event name!" msgstr "Трябва да дадете име на събитието" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Трябва да дадете валидна вътрешна стойност на събитието." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Трябва да дадете валиден интервал за изпълнение на събитието." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Трябва да дадете валиден тип на събитието." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Трябва да дадете дефиниция на събитието." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -11723,7 +11749,7 @@ msgstr "Състояние на Диспечера на събитията" msgid "The backed up query was:" msgstr "Архивираната заявка е:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Връща" @@ -11739,99 +11765,99 @@ msgstr "" "съхранени процедури може да пропадне![/strong] Моля, използвайте подобреното " "разширение 'mysqli', за да избегнете проблеми." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Редактиране" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Невалиден тип процедура: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Процедура %1$s беше създадена." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Съжаляваме, но възстановяването на изтритата процедура е неуспешно." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Процедурата%1$s беше променена." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Процедурата%1$s беше променена." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Име" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Параметри" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Посока" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Нов параметър" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Изтриване на последен параметър" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Тип данни при изход" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Дължина/стойност на данни при изход" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Настройки на данни при изход" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Сигурност" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Достъп до SQL данните" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "Трябва да дадете име на процедурата" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Невалидна посока \"%s\" подадена като параметър." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11839,24 +11865,24 @@ msgstr "" "Трябва да дадете дължина/стойност за параметрите на процедурата от тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Трябва да дадете име и тип за всеки параметър на процедурата." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Трябва да дадете валиден тип на данните при изход на процедурата." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Трябва да дадете дефиниция на процедурата." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Резултати от изпълнението на процедура %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -11865,13 +11891,13 @@ msgid_plural "%d rows affected by the last statement inside the procedure." msgstr[0] "%d ред променен от последният израз на съхранената процедура" msgstr[1] "%d реда променени от последният израз на съхранената процедура" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Изпълнение на процедура" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Параметри на процедурата" @@ -11893,40 +11919,40 @@ msgstr "Тригерът %1$s беше създаден." msgid "Edit trigger" msgstr "Редакция тригер" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Име на тригер" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Време" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a trigger name" msgid "You must provide a trigger name!" msgstr "Трябва да дадете име на тригера" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" msgstr "Трябва да дадете график на тригера" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid event for the trigger" msgid "You must provide a valid event for the trigger!" msgstr "Трябва да дадете събитие на тригера" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "Трябва да дадете име на таблица на тригера" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Трябва да дадете дефиниция на тригера." @@ -12053,91 +12079,91 @@ msgstr "Знакови набори и колации" msgid "Databases statistics" msgstr "Статистика за базите данни" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Няма права." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Дава всички права освен GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Позволява четене на данни." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Позволява промяна на данни." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови БД и таблици." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на БД и таблици." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на настройките и изчистване на буфера на сървъра." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и изтриване на индекси." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Позволява промяна на структурата на съществуващи таблици." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12147,135 +12173,108 @@ msgstr "" "се за повечето административни операции, като установяване на глобални " "променливи или спиране на нишка на други потребители." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Нужно за replication slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Позволява създаване на изгледи." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Позволява създаване на събития за Диспечер на събитията" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Позволява създаване и изтриване на тригери" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволява изпълнение на SHOW CREATE VIEW заявки." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Позволява създаване на съхранени процедури." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Позволява промяна и изтриване на съхранени процедури." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Позволява създаване, изтриване и преименуване на потребителски сметки." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Позволява изпълнение на съхранени процедури." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Няма" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Постоянни връзки" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Постоянни връзки" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ресурсни ограничения" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ограничава броя на заявките, които потребителя може да изпрати към сървъра " "на час." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12283,287 +12282,280 @@ msgstr "" "Ограничава броя на командите, които променят някоя таблица или БД, които " "даден потребител може да инициира за час." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ограничава броя на новите връзки, които потребителя може да отвори за час." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ограничава броя на едновременните връзки, които потребителят може да държи " "отворени." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Процедури" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Позволява промяна и изтриване на съхранени процедури." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Позволява изпълнение на съхранени процедури." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Специфични за таблицата права" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Забележка: Имената на правата на MySQL са показани на английски" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Администрация" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глобални права" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "глобален" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Специфични за БД права" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Позволява добавяне на потребители и права без презареждане на таблицата с " "правата." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Удостоверяване чрез бисквитка" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Смяна на паролата" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Удостоверяване чрез бисквитка" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Информация за логване" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "От текстовото поле" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Потребителско име" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Име на дневник" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Удостоверяване" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хеширане на паролата" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вие отменихте правата на %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Нов потребител" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "БД за потребителя" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Създаване на БД със същото име и даване на пълни права." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Даване на всички привилегии на име с маска (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Даване на пълни права над БД \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Потребители с достъп до \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Потребител беше добавен." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Дадени" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Няма потребител." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Всеки" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "глобален" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "знак за заместване" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Редакция" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Отменяне" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Редакция сървър" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… запазване на стария." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… изтриване на стария от таблицата с потребители." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отмяна на всички права от стария и след това изтриване." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12571,122 +12563,106 @@ msgstr "" "… изтриване на стария от таблицата с потребители и след това презареждане на " "правата." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промяна информацията за вход / Копиране потребител" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Създаване нов потребител със същите права и …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Специфични за колоната права" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Отстраняване избраните потребители" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Отмяна на всички права на потребителите и след това изтриване." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Изтриване на БД, които имат имена като тези на потребителите." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Презареждане на правата" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте правата на %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Права на %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Потребител" -#: libraries/server_privileges.lib.php:4620 -#, fuzzy -#| msgid "New" -msgctxt "Create new user" -msgid "New" -msgstr "Нов" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Редакция" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Потребители" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Преглед потребители" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12699,7 +12675,7 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12718,11 +12694,11 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." @@ -13010,12 +12986,12 @@ msgstr "Команда" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Филтри" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13044,12 +13020,12 @@ msgstr "на минута" msgid "per second:" msgstr "на секунда" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Заявление" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "№" @@ -13073,7 +13049,7 @@ msgstr "Неформатирани стойности" msgid "Related links:" msgstr "Сродни връзки:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13081,27 +13057,27 @@ msgstr "" "Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори " "правилно връзките." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Броят неуспешни опити за връзка към MySQL сървъра." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13109,52 +13085,52 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Броят създадени от mysqld временни файлове." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Броят вмъкнати посредством INSERT DELAYED редове." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13165,26 +13141,26 @@ msgstr "" "индекса; например, SELECT col1 FROM foo, при условие, че col1 е индексирано " "поле." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13192,7 +13168,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13200,42 +13176,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13243,33 +13219,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13278,195 +13254,195 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Броят изтрити редове от InnoDB таблици." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Броят прочетени редове от InnoDB таблици." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13474,11 +13450,11 @@ msgstr "" "Максималният брой едновременно използвани връзки от като е стартиран " "сървърът." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13486,38 +13462,38 @@ msgstr "" "Общ брой на отворените таблици. Ако тази стойност е голяма, вероятно имате " "прекалено малък кеш за таблиците (table_cache)." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Броят отворени файлове." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Броят отворени потоци (използва се главно за дневници)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Броят отворени таблици." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Количеството свободна памет за буфер за заявки." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Броят заявки добавени към буфера." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13525,99 +13501,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Броят заявки регистрирани в буфера." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Общият брой блокове в буфера за заявки." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Броят сортирани редове." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13625,18 +13601,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13644,11 +13620,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." @@ -13685,49 +13661,49 @@ msgstr "БД сървър" msgid "Table level tabs" msgstr "Коментари към таблицата" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Изглед" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Нов потребител" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Няма права." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Имена на колони: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Версия на сървъра" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "БД сървър" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13856,7 +13832,7 @@ msgstr "Изпълнение на SQL заявка/заявки към БД %s" msgid "Run SQL query/queries on table %s" msgstr "Изпълнение на SQL заявка/заявки към БД %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Изчистване" @@ -13946,175 +13922,175 @@ msgstr "Изключване сега" msgid "Version" msgstr "Версия" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Създаден" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Актуализиран" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Създаване на версия" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Доклад за следенето" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Моментна снимка на структурата" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "активен" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "неактивен" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Няма данни" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Изпълняване на SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Експорт като %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Израз за манипулация на данни" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Израз за дефиниране на данни" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Дата" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Потребителско име" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Няма" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Проследяването на %1$s беше включено във версия %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Проследяването на %1$s беше изключено във версия %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Създаване на версия %1$s от %2$s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Непроследявани таблици" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Следене на таблица" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Следени таблици" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Последна версия" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Изтриване информацията за следене" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Версии" @@ -14122,7 +14098,7 @@ msgstr "Версии" msgid "Manage your settings" msgstr "Управление мои настройки" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Конфигурацията е записана." @@ -14148,7 +14124,7 @@ msgstr "Грешка в ZIP архива:" msgid "No files found inside ZIP archive!" msgstr "Не са открити файлове в ZIP архива!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14158,57 +14134,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Промените не бяха запазени, изпратеният формуляр съдържа грешки" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Конфигурацията не може да бъде импортирана" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Конфигурацията съдържа грешни данни за някои ключове." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Искате ли да импортирате оставащите настройки?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Записан на: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Импорт от файл" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Импорт от хранилището на браузъра" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Настройки ще бъдат импортирани от локалното хранилище на браузъра." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Нямате запазени настройки!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Тази функционалност не се поддържа от вашия браузър" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Сливане с текущите настройки" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14217,25 +14193,25 @@ msgstr "" "Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " "%sскрипта за настройки%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Изпращане" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Запис в хранилището на браузъра" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Настройките ще бъдат запазени в хранилището на вашия браузър." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Съществуващи настройки ще бъдат презаписани!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Може да изчистите настройките си до стойностите им по подразбиране." @@ -14243,45 +14219,45 @@ msgstr "Може да изчистите настройките си до сто msgid "View dump (schema) of databases" msgstr "Преглед на схемата (дъмп) на БД" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Без права" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Нишка %s беше успешно спряна." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Изтегляне" @@ -14289,99 +14265,98 @@ msgstr "Изтегляне" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Конфигурацията запазена." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Конфигурацията запазена." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Нов сървър" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Език по подразбиране" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "нека потребитлят избере" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- никой -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Сървър по подразбиране" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Край на ред" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Показване" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Зареждане" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin страница" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Дарение" @@ -14417,7 +14392,7 @@ msgstr "Пренебрегване на грешките" msgid "Show form" msgstr "Показване формуляр" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14425,22 +14400,22 @@ msgstr "" "Неуспешно получаване на версията. Вероятно сте offline или сървърът за " "обновления не отговаря." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Няма по-нова стабилна версия" @@ -14453,12 +14428,12 @@ msgstr "Грешни данни" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s вече съществува!" @@ -14471,35 +14446,35 @@ msgstr "Схема (дъмп) на таблицата" msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Няма върнати редове" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Проследяването на %s е активно." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Няма върнати редове" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14716,7 +14691,7 @@ msgid "List of available transformations and their options" msgstr "Достъпни трансформации" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14743,7 +14718,7 @@ msgstr "" "или 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15217,17 +15192,17 @@ msgid "Size" msgstr "Размер" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Дата на създаване" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Последно обновление" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Последна проверка" @@ -15264,6 +15239,12 @@ msgstr "" "Браузърът ви има настройки на phpMyAdmin за този домейн. Искате ли да бъдат " "използвани за текущата сесия?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Изтриване информацията за следене" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database:" @@ -15286,10 +15267,48 @@ msgstr "Добавяне на права към следната таблица: msgid "Add privileges on the following table:" msgstr "Добавяне на права към следната таблица:" +#: templates/privileges/add_user_fieldset.phtml:2 +#, fuzzy +#| msgid "New" +msgctxt "Create new user" +msgid "New" +msgstr "Нов" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Няма" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Отстраняване избраните потребители" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Отмяна на всички права на потребителите и след това изтриване." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Изтриване на БД, които имат имена като тези на потребителите." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Специфични за колоната права" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ресурсни ограничения" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Изберете двоичен дневник за преглед" @@ -15322,7 +15341,7 @@ msgstr "Праставка" msgid "Author" msgstr "Автор" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "изключено" @@ -15495,7 +15514,7 @@ msgstr "Потребител:" msgid "Comment:" msgstr "Коментар" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15535,29 +15554,29 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ограничение за външен ключ" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Добавяне ограничения" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Вътрешни релации" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Вътрешна релация" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Вътрешна релация не е необходима, при наличието на съответен FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15621,13 +15640,13 @@ msgstr "Първоначално положение" msgid "Replaced string" msgstr "Замяна на представката на таблица" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "Реплицирана" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Допълнителен критерий за търсене" @@ -15710,7 +15729,7 @@ msgid "at beginning of table" msgstr "В началото на таблицата" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -15742,28 +15761,28 @@ msgstr "Дължина ред" msgid "Index length" msgstr "Дължина ред" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Положение" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit index" msgid "Edit partitioning" msgstr "Редактиране" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Изглед за редакция" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Използвано място" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Ефективни" @@ -15790,33 +15809,33 @@ msgstr "Анализ на таблицата" msgid "Track view" msgstr "Изглед за следене" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Статистика за редовете" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "статичен" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "динамичен" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Дължина ред" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Размер ред" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15829,50 +15848,50 @@ msgstr "Колоната %s беше изтрита." msgid "Click to toggle" msgstr "Щракване за превключване" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Тема" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Още теми!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Достъпни MIME типове" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Достъпни трансформации" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Достъпни трансформации" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Описание" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Към следващата стъпка…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Не разполагате с права, за да се намирате тук!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профилът беше обновен." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -15948,7 +15967,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15973,19 +15992,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Няма избрани таблици." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16048,29 +16067,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Събитието %1$s беше създадено." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Шаблон за име на таблица" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "В началото на таблицата" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16089,10 +16108,16 @@ msgstr "Неочаквани знаци на ред %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "В началото на таблицата" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16139,7 +16164,7 @@ msgstr "" msgid "strict error" msgstr "Събиране на грешки" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17306,6 +17331,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert e 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Удостоверяване чрез бисквитка" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/bn.po b/po/bn.po index ff77273129..14e8ab7923 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "সহায়তা করুন" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "প্রাইমারি কী যোগ কর" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s একটি প্রাইমারি কী যোগ করা হয়েছে" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ট্রেকিং প্রতিবেদন" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2061,265 +2066,265 @@ msgstr "" msgid "End of step" msgstr "লাইনের শেষ" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "সম্পন্ন" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর:" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "সংরক্ষন" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "খোজাঁর শর্ত লুকাও" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "খোজাঁর শর্ত দেখাও" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "টেবিলে খোজাঁ" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত লুকাও" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত দেখাও" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "প্রতিটি পয়েন্ট একটি তথ্য সারি।" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "একটি পয়েন্টের উপর মাউস আনলে তার লেবেল দেখাবে।" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "বড় করে দেখার জন্য, অংশটির একটি অংশ মাউজ দ্বারা নির্বাচন করন।" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "মুল অবস্থায় ফিরিয়ে নেওয়ার জন্য জুম রিসেট এ ক্লীক করুন।" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "দেখার জন্য একটি তথ্য পয়েন্ট এ ক্লীক করুন এবং প্রয়োজনে তথ্য সারিটি সম্পাদনা করুন।" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "নীচের ডান কোণার দিকে টেনে এই অংশটির আকৃতি পরিবর্তন করা যাবে।" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "ভিন্ন ভিন্ন দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "প্রতিটি পয়েন্টের বিষয়" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "উপেক্ষা" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "প্রতিলিপি" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "পয়েন্ট" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "লাইনস্ট্রিং" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "পলি্গন (বহুভুজ)" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "জ্যামিতি" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ভিতরের গোলক" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "আউটার রিং" -#: js/messages.php:522 +#: js/messages.php:523 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "আপনি কি অন্যান্য সেটিংস আমদানি করতে চান?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "রেফারেন্সড কী নির্বাচন করুন" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "ফরেন কী নির্বাচন করুন" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "অনুগ্রহ করে প্রাথমিক কী বা একটি অনন্য কী নির্বাচন করুন!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "দেখানোর জন্য স্বম্ভ পছন্দ করেন" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2327,96 +2332,96 @@ msgstr "" "আপনি নকশার পরিবর্তন সংরক্ষন করেন নাই। সংরক্ষন না করলে ওগুলো নষ্ট হয়ে যাবে। আপনি " "কি এগুতে চান?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "পাতার নাম" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "পাতা নির্বাচন" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "পাতা নির্বাচন" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "মুক্ত পাতাসমূহ" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "পাতা নির্বাচন" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "একক" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "সম্পাদনার জন্য একটি পাতা পছন্দ করেন" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "আন্তসম্পর্কীয় গঠনের আকৃতি সম্পাদনা বা রফতানী কর" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "পরিবর্তন সংরক্ষন করা হয়েছে" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "স্তম্ভের জন্য একটি অপশন যোগ কর " -#: js/messages.php:569 +#: js/messages.php:570 #, fuzzy, php-format #| msgid "%d object(s) created" msgid "%d object(s) created." msgstr "%d অবজেক্ট তৈরী করা হয়েছে" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "জমা" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "সম্পাদনা বাতিল করতে এস্কেপ কী চাপুন" -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2424,49 +2429,49 @@ msgstr "" "আপনি কিছু তথ্য সম্পাদনা করেছেন এবং ওগুলো সংরক্ষিত নয়। আপিন কি নিশ্চন্ত যে সংরক্ষনের " "পূর্বে আপনি পাতাটি ত্যাগ করতে চান?" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "পুনবিন্যাসের জন্য টানুন" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "চিহ্নিত/অচিহ্নিত করার জন্য ক্লীক করুন" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "স্তম্ভের নাম প্রতিলিপ করার জন্য দুইবার ক্লীক করুন" -#: js/messages.php:588 +#: js/messages.php:589 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "স্তম্ভ খোলা বন্ধ করতে চাইলে তীর চিহ্নটি ক্লীক করুন" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "সব দেখাও" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2474,135 +2479,135 @@ msgstr "" "এই টেবিলে কোন অনন্য স্তম্ভ নাই। সংরক্ষনের পরে সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার " "জন্য সংযোগগুলো কাজ করবে না।" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "প্রকৃত লেখা" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "বাতিল" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "বাতিলকৃত" -#: js/messages.php:607 +#: js/messages.php:608 #, fuzzy #| msgid "Success." msgid "Success" msgstr "সফল।" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "আমদানি সর্ম্পকিত স্বাভাবিক" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "লগ ফাইলের স্থান" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "টেবল নির্বাচন" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "প্রিন্ট" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "আপনি প্রায় সমস্ত তথ্য দুই বার ক্লীক করে সরাসরি সম্পাদনা করতে পারবেন।" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "আপনি প্রায় তথ্য সরাসরি ক্লীক করে সম্পাদনা করতে পারবেন।" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "সংযোগে যাও" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "স্তম্ভের নাম প্রতিলিপি" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "স্তম্ভের নামটির উপর ডান ক্লীক করুন ওটা ক্লীপর্বোডে প্রতিলিপি করার জন্য।" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "পাসওর্য়াড উৎপাদন কর" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "উৎপাদন কর" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "অধিক" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "প্যানেল দেখাও" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ইনডেক্স প্যানেল" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "চলাচল ফ্রেইমে লোগো দেখাও" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "পাতাটি হিস্টোরীতে পাওয়া যায়নি, সম্ভবত নষ্ট হয়েগেছে।" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2612,123 +2617,123 @@ msgstr "" "%s, বেরিয়েছে %s।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", সর্বশেষ সুস্থিত সংস্করন:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "তারিখ পর্যন্ত" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "ভিউ তৈরী" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ভুলের প্রতিবেদন দাখিল" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "একটি মারাত্মক জাভা স্ত্রিপট ভুল হয়েছে। আপনি কি এর প্রতিবেদন পাঠাতে চান?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "প্রতিবেদন সেটিংস পরিবর্তন" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "প্রতিবেদনের বিশদ দেখাও" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "উপেক্ষা" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "এই অনুসন্ধানটি আবার দেখাও" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to delete user group \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "আপনি কি নিশ্চিত ভাবে \"%s\" ব্যাবহারকরী দল মুছতে চান?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL query" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "টেবলের মন্তব্য" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "খোজাঁর ফলাফল লুকাও" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2737,385 +2742,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "ডাটাবেজ কপি কর" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "টেবিলের পুর্বপদ দিন:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "টেবল এর নামের পূর্বাংশ প্রতিস্থাপন করা" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "টেবল নামের পূর্বাংশসহ প্রতিলিপি কর" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "পূর্ববর্তী" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "আজ" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "জানুয়ারী" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "ফেব্রুয়ারী" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "মার্চ" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "এপ্রিল" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "মে" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "জুন" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "জুলাই" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "অগাষ্ট" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "সেপ্টেম্বর" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "অক্টোবর" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "নভেম্বর" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "ডিসেম্বর" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "জান" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "ফেব" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "মার" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "এপ্রি" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "জুল" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "আগ" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "সেপ" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "অক্ট" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "নভে" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "ডিসে" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "সোমবার" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "বুধবার" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "শনিবার" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "রবি" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "সোম" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "মঙ্গল" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "বৃধ" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "বৃহস্পতি" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "শুক্র" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "শনি" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "রবি" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "সোম" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "মঙ্গ" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "বুধ" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "বৃহ" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "শুক্র" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "শনি" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "সপ্তাহ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "বর্ষপঞ্জি-মাস-বছর" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "- কিছু না -" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "ঘন্টা" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "মিনিট" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "সেকেন্ড" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "ভুল" @@ -3176,20 +3201,20 @@ msgid "Charset" msgstr "বর্ণ রাশি" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "ভাষা" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "বাইনারী" @@ -3386,7 +3411,7 @@ msgid "Czech-Slovak" msgstr "চেক-স্লোভাক" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "অজানা" @@ -3434,57 +3459,57 @@ msgstr "ইহা সাধারনত বাক্যে ভুল বোঝ msgid "Font size" msgstr "অক্ষরের আকার" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "সর্ম্পক মুছা" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL অনুসন্ধান বক্স" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "কনফিগারেশন ফাইল পড়া যায়নি" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "সার্ভারটি সাড়া দিচ্ছে না। (বা স্থানীয় সার্ভারটির সকেট সঠিকভাবে কনফিগার করা হয়নি)।" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "সার্ভারটি সাড়া দিচ্ছে না।" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "ডাটাবেইজ ডিরেক্টরির অধিকারসমূহ পরীক্ষা করুন।" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "বিশদ…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "parameter নাই:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "নিয়ন্ত্রক ব্যবহারকারীর জন্য নির্ধারিত কনফিগারেশন সংযোগে ব্যার্থ হয়েছে।" @@ -3580,122 +3605,117 @@ msgstr "প্রবেশ:" msgid "Del:" msgstr "মুছ:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "ডাটাবেইজে SQL অনুসন্ধান %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "অনুসন্ধান পেশ কর" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "খোঁজা" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "সর্ম্পক মুছা" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "সর্ম্পক মুছা" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "বুকর্মাক দেখাচ্ছে" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "সর্ম্পক মুছা" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "অবশ্যই যে কোন একটি শব্দ" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "সবগুলো শব্দ" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "হুবহু শব্দসমষ্টি" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "রেগুলার এক্সপ্রেশনের মত" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\"এর অনুসন্ধান ফলাফল %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "মোট: %s মিল" msgstr[1] "মোট: %s মিল" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s মধ্যে %1$s মিল" msgstr[1] "%2$s মধ্যে %1$s গুলো মিল" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "দেখা" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s টেবলের মিলগুলো কি মুছব?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "ডাটাবেইজে খোঁজ" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "খোঁজার জন্য শব্দ বা সংখ্যা (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "খোঁজা:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "শব্দগুলো ফাকা (\" \") বর্ণ দিয়ে আলাদা করা।" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "টেবিলের ভিতরে:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "সবগুলো অনির্বাচন" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "স্তম্ভের ভিতরে:" @@ -3719,30 +3739,30 @@ msgstr "ফিল্টারসমূহ" msgid "Search this table" msgstr "ডাটাবেইজে খোঁজ" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "আরম্ভ" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "পরবর্তী" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "শেষ" @@ -3751,7 +3771,7 @@ msgstr "শেষ" msgid "All" msgstr "সবগুলো" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "রো সংখ্যা:" @@ -3760,8 +3780,8 @@ msgstr "রো সংখ্যা:" msgid "Sort by key" msgstr "কী দ্বারা গুছানো" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3783,10 +3803,10 @@ msgstr "কী দ্বারা গুছানো" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "অপশনস" @@ -3828,29 +3848,29 @@ msgstr "ভালভাবে জানা লেখা" msgid "Well Known Binary" msgstr "ভালভাবে জানা বাইনারী" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "রো টি মুছা হয়েছে।" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "হত্যা" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "সম্ভবত আনুমানিক। [doc@faq3-11]FAQ 3.11[/doc] দেখুন।" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "আপনার SQL অনুসন্ধানটি সফলভাবে কাজ করেছে." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3858,75 +3878,75 @@ msgid "" msgstr "" "এই ভিউটির অন্তত পক্ষে এক সারি তথ্য রয়েছে। অনুগ্রহ করে %sdocumentation%s দেখুন।" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "রো দেখাচ্ছে %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "মোট %1$d, অনুসন্ধানে %2$d" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d মোট" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "অনুসন্ধানে %01.4f সেঃ লেগেছ." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "নিবার্চিত গুলো নিয়ে:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "সবগুলোতে টিক দাও" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "অনুসন্ধান ফল" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "চিত্র দেখাও" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "জিআইএস তথ্য দেখা" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "সংযোগটি পাওয়া যায়নি!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "কিছু না" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "কানায় রুপান্তর কর" @@ -3934,73 +3954,73 @@ msgstr "কানায় রুপান্তর কর" msgid "Too many error messages, some are not displayed." msgstr "অনেক বেশী ভুল সংক্রান্ত তথ্য, কতগুলো দেখানো হয় নাই।" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "আমদানি" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "পরবর্তী সময়ে স্বয়ংক্রীয়ভাবে প্রতিবেদন পাঠাবে" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "ফাইলটি আপলোডকৃত ফাইল ছিল না।" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "আপলোডকৃত ফাইলের আকার php.ini তে দেওয়া upload_max_filesize চাইতে বেশী।" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "আপলোডকৃত ফাইলের আকার এইছটিএমএল র্ফমে দেওয়া MAX_FILE_SIZE চাইতে বেশী।" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "আপলোডের ফাইলটি আংশিক আপলোড করা হয়েছে।" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "সাময়িক ডিরেক্টরী পাওয়া যাচ্ছে না।" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "ফাইলটি ডিস্কে লিখতে ব্যর্থ্ হয়েছি।" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "ফাইল আপলোড সংযোজক দ্বারা বন্ধ হয়েছে।" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "ফাইল আপলোডের সময় অজ্ঞাত ভুল।" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "ফাইলটি পড়া যাচ্ছে না!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "আপলোডকৃত ফাইলটি সরাতে সমস্যা হয়েছে, [doc@faq1-11]FAQ 1.11[/doc] দেখুন।" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "আপলোডকৃত ফাইলটি সরানোর সময় সমস্যা হয়েছে।" -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "আপলোড ফাইলটি পড়া যায়নি।" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4009,28 +4029,28 @@ msgstr "" "আপনি অপরিচিত সংকোচন (%s) এর ফাইল ব্যবহার করছেন। সম্ভব এটি নিয়ে কাজ করার ব্যবস্থা " "নাই বা এটি অর্কাযকর করা আছে।" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "বর্তমানে Git'র %2$s শাখা হতে %1$s ব্যবহৃত হচ্ছে।" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git সম্পর্কিত তথ্য নাই।" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "নতুন phpMyAdmin উইন্ডো খোল" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "মুদ্রনের দেখা" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "পাতার উপরে যাওয়ার জন্য বারে ক্লীক করুন" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "এখানে আসার পুর্বেই জাভা স্ক্রীপট কার্যকর থাকতে হবে।" @@ -4039,20 +4059,20 @@ msgid "No index defined!" msgstr "কোন ইনডেক্স তৈরী করা হয়নি!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "ইনডেক্সসমূহ" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4062,78 +4082,78 @@ msgstr "ইনডেক্সসমূহ" msgid "Action" msgstr "কর্ম" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "কী'র নাম" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "অনন্য" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "প্যাক্ড" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "মন্তব্য" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "প্রাথমিক কী মুছা হয়েছে।" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "ইনডেক্স %s মুছা হয়েছে।" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "মুছ" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "ইনডেক্স %1$s এবং %2$s এক সমান মনে হয় এবং যে কোন একটি মুছে ফেলুন।" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "পাতার সংখ্যা:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "ভাষা" @@ -4157,11 +4177,11 @@ msgstr "সার্ভার" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4180,14 +4200,15 @@ msgid "View" msgstr "দেখা" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4196,8 +4217,8 @@ msgid "Table" msgstr "টেবল" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4205,45 +4226,45 @@ msgstr "টেবল" msgid "SQL" msgstr "এসকিউএল" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "খোঁজা" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "ইনর্সাট" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "অধিকারসমূহ" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "কাজসমূহ" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "ট্রেকিং" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4259,16 +4280,16 @@ msgstr "ট্রিগারসমূহ" msgid "Database seems to be empty!" msgstr "ডাটাবেইজটি খালি মনে হয়!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "অনুসন্ধান" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "রুটিনসমূহ" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4276,22 +4297,22 @@ msgstr "রুটিনসমূহ" msgid "Events" msgstr "ইভেন্টসমূহ" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "নকশাকারী" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "টেক্সএরিয়া স্তম্ভ" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "ডাটাবেইজ" @@ -4302,53 +4323,53 @@ msgid "User accounts" msgstr "ব্যবহারকারীর দল" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "বাইনারী লগ" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "অনুলিপি" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "বর্ণরাশী" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "ব্যবস্থাসমূহ" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "প্লাগইন" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d টি রো প্রভাবিত হয়েছে।" msgstr[1] "%1$d টি রো প্রভাবিত হয়েছে।" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d টি রো মুছেচে।" msgstr[1] "%1$d টি রো মুছেচে।" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4412,31 +4433,31 @@ msgstr "চলকসমূহ" msgid "Favorites" msgstr "চলকসমূহ" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "Missing information to save the bookmarked search." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "ব্যবহারকারী %s পূর্ব থেকেই আছে!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4500,7 +4521,7 @@ msgstr "খোলা টেবলগুলো দেখাও" msgid "Show slave hosts" msgstr "সহায়কের স্থানগুলো দেখাও" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "প্রধানটির অবস্থা" @@ -4554,73 +4575,73 @@ msgid_plural "%d minutes" msgstr[0] "%d মিনিট" msgstr[1] "%d মিনিট" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "মজুদ ব্যবস্থার অবস্থা সর্ম্পকে বিশদ তথ্য নাই।" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s এই মাইএসকিউএল সার্ভার এর স্বাভাবিক মজুদ ব্যবস্থা।" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s এই সার্ভারে আছে।" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s এই সার্ভারে অকার্যকর।" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "এই MySQL সার্ভারটি %s মজুদ ব্যবস্থা সমর্থন করে না।" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr "টেবিলের অবস্থা অজ্ঞাত: " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "মূল ডাটাবেইজ `%s` পাওয়া যায়নি!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "কাংখিত %s ডাটাবেইজ পাওয়া যায়নি!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "অকার্যকর ডাটাবেজ:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "অকার্যকর টেবিলের নাম:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "টেবিল %1$s টি %2$s নাম করনে ব্যাথ্য হয়েছে!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "টেবিল %1$s থেকে %2$s এ নামকরন করা হয়েছে।" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "টেবলের UI পছন্দ সংরক্ষন করা যায়নি" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4629,7 +4650,7 @@ msgstr "" "টেবলের UI পছন্দ পরিস্কার করতে ব্যার্থ হয়েছি ($cfg['Servers'][$i] " "['MaxTableUiprefs'] %s দেখুন)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4639,19 +4660,19 @@ msgstr "" "UI পছন্দের তথ্য \"%s\" সংরক্ষন করা যায়নি। পরিবর্তন গুলো এই পাতাটি রিফ্রেশ করলে " "থাকবে না। টেবলের গঠন পরিবর্তীত হয়েছে কিনা পরীক্ষা করে দেখুন।" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "প্রাথমিক কী'র নাম অবশ্যই \"PRIMARY\" হতে হবে!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "ইনডেক্সটি PRIMARY হিসাবে নাম করন করা যাবে না!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "ইনডেক্সের অংশ দেওয়া হয়নি!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s এ ফরেন কী তৈরী করতে সমস্যা হচ্ছে (তথ্যের ধরন পরীক্ষা করুন)" @@ -4957,7 +4978,7 @@ msgid "Date and time" msgstr "সময় এবং তারিখ" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "স্ট্রিং" @@ -4972,72 +4993,72 @@ msgstr "স্পাটিয়াল" msgid "Max: %s%s" msgstr "সবোর্চ্চ: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "স্থিত তথ্য" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL বলেছে: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL এর ব্যাখা" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL এর ব্যাখা এড়িয়ে যাও" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "পিএইছপি কোড ছাড়া" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "অনুসন্ধান পেশ কর" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "পিএইছপি কোড তৈরী কর" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "রিফ্রেশ" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "প্রোফাইলিং" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5045,65 +5066,65 @@ msgid "Edit inline" msgstr "ইনডেক্স সম্পাদনা" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "রবিবার" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s ঘন্টা, %s মিনিট এবং %s সেকেন্ড" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "parameter নাই:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "ডাটাবেইজ \"%s\" যাও।" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s কার্যকারিতা একটি চিহ্নিত সমস্যা, %s দেখুন" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "আপনার কম্পিউটারে দেখুন:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ওয়েভ সার্ভারের আপলোড ডিরেক্টরি থেকে নির্বাচন করুন %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "আপলোড করার জন্য নির্ধারিত ডিরেক্টরীটি পাওয়া যাচ্ছে না।" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "আপলোড করার জন্য কোন ফাইল নাই" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "খালি" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "কর" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "ব্যবহারকারী" @@ -5117,7 +5138,7 @@ msgstr "প্রতি মিনিটে" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "প্রতি ঘন্টায়" @@ -5125,12 +5146,12 @@ msgstr "প্রতি ঘন্টায়" msgid "per day" msgstr "প্রতি দিন" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "খুঁজ:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5138,7 +5159,7 @@ msgstr "খুঁজ:" msgid "Description" msgstr "বর্ণনা" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "এই মানটি ব্যবহার কর" @@ -5179,22 +5200,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "নাম" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "দৈর্ঘ্য/মানসমূহ" @@ -5205,7 +5226,7 @@ msgstr "দৈর্ঘ্য/মানসমূহ" msgid "Attribute" msgstr "গুনাবলী" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5226,13 +5247,13 @@ msgstr "স্বম্ভ যোগ করা" msgid "Select a column." msgstr "দুইটি স্তম্ভ নির্বাচন করুন" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "স্বম্ভ যোগ করা" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5240,7 +5261,7 @@ msgstr "স্বম্ভ যোগ করা" msgid "Attributes" msgstr "গুনাবলী" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5249,26 +5270,26 @@ msgstr "" "আপনার পিএইছপির জন্য mbstring.func_overload ফাংশনটি ব্যবহার করা হচ্ছে। এটা " "phpMyAdmin এর সঙ্গে সামঞ্জস্যপূর্ণ নয় এবং কিছু তথ্য নষ্ট করতে পারে!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "অকার্যকর সার্ভার ইনডেক্স:%s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "অকার্যকর হোষ্টের নাম %1$s। কনফিগারেশন আবার দেখুন।" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "সার্ভার %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "কনফিগারেশনে অকার্যকর প্রমাণীকরন পদ্ধতি:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5276,20 +5297,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "আপনি অবশ্যই %s %s বা পরের কোন সংস্করনে আপগ্রেড করবেন।" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "ভুল: টোকেন মিলে নাই" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS পুন লিখনের চেষ্টা" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "সাম্ভাব্য বিপদের সুযোগ" @@ -5924,7 +5945,7 @@ msgid "Compress on the fly" msgstr "কাজের মধ্যই সংকুচিত কর" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "কনফিগারেশন ফাইল" @@ -6038,13 +6059,13 @@ msgstr "একটি স্ক্রীপট চলার সময় (সেক msgid "Maximum execution time" msgstr "সম্পাদনের সর্বোচ্চ সময়" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s স্টেটমেন্ট যোগ কর" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "ফাইল এর মত সংরক্ষন" @@ -6054,7 +6075,7 @@ msgstr "ফাইলের বর্ণরাশি" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "গঠন" @@ -6179,7 +6200,7 @@ msgid "Save on server" msgstr "সার্ভারে সংরক্ষন কর" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "পূর্বের ফাইলটিতে রাখ" @@ -6194,7 +6215,7 @@ msgid "Remember file name template" msgstr "ফাইল নামের নকশা মনে রাখবে" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT যোগ কর" @@ -6203,7 +6224,7 @@ msgid "Enclose table and column names with backquotes" msgstr "টেবল এবং স্তম্ভের নামা backquotes দ্বারা আবদ্ধ কর" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL উপযুক্ততার ধরন" @@ -6235,7 +6256,7 @@ msgstr "phpMyAdmin কনফিগারেশনের storage table পাও #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s যোগ কর" @@ -6411,7 +6432,7 @@ msgid "Customize the navigation tree." msgstr "চলাচলের ফ্রেম পরিবর্তন" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "সার্ভার" @@ -7347,7 +7368,7 @@ msgstr "HTTP রাজ্য" msgid "Authentication method to use." msgstr "ব্যবহারের জন্য প্রমাণীকরনের পদ্ধতী।" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "প্রমাণীকরণের ধরন" @@ -8134,7 +8155,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "সেটিংসে উন্নয়নকারী টেবটি কার্যকর করুন" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "সর্বশেষ সংস্করনের জন্য খুঁজে দেখ" @@ -8142,10 +8163,10 @@ msgstr "সর্বশেষ সংস্করনের জন্য খুঁ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "নতুন কোন সংস্করন আছে কিনা তা phpMyAdmin page এ পরীক্ষা করে দেখবে।" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "সংস্করন পরীক্ষা" @@ -8289,24 +8310,24 @@ msgstr "মাইক্রোসফট ওর্য়াড ২০০০" msgid "OpenDocument Text" msgstr "ওপেন অফিস টেক্সট" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "টেবিল %s খালি করা হয়েছে।" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "ভিউ %s মুছা হয়েছে।" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "টেবল %s মুছা হয়েছে।" @@ -8320,12 +8341,12 @@ msgid "Position" msgstr "অবস্থান" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "ইভেন্টের ধরন" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "সার্ভার আইডি" @@ -8334,7 +8355,7 @@ msgid "Original position" msgstr "মূল অবস্থান" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "তথ্যাদি" @@ -8348,42 +8369,42 @@ msgstr "প্রদর্শিত অনুসন্ধান বাতিল msgid "Show Full Queries" msgstr "পূর্ণ অনুসন্ধান দেখাও" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "কোন ডাটাবেইজ নাই" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "ডাটাবেইজ %1$s তৈরী করা হয়েছে।" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d টি ডাটাবেইজ সফলভাবে মুছা হয়েছে।" msgstr[1] "%1$d টি ডাটাবেইজ সফলভাবে মুছা হয়েছে।" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "সারির #" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "মোট" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "অতিরিক্ত" @@ -8412,33 +8433,33 @@ msgstr "" msgid "Enable statistics" msgstr "পরিসংখ্যান কার্যকর" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "সার্ভারের চলকসমূহ এবং সেটিংস" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "চলক সেটিং ব্যার্থ হয়েছে" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "তথ্য আনার জন্য কোন SQL অনুসন্ধান নির্ধারন করা হয় নাই।" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "প্লটের জন্য টেবলে কোন গাণিতক স্তম্ভ পাওয়া যায়নি।" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "প্রর্দশনের কোন তথ্য নাই" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s টেবিলটি সফলভাবে পরিবর্তন করা হয়েছে।" @@ -8492,7 +8513,7 @@ msgstr "স্তম্ভগুলো সফলভাবে সরানো হ #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "অনুসন্ধানে ভুল" @@ -8510,12 +8531,12 @@ msgstr "পরিবর্তন" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "ইনডেক্স" @@ -8536,13 +8557,13 @@ msgstr "ফুলটেক্সট" msgid "Distinct values" msgstr "স্বতন্ত্র মানগুলো" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s সংযোজনক পাওয়া যাচ্ছে না। পিএইছপি কনফিগারেশন দেখুন।" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "পরিবর্তন নয়" @@ -8565,185 +8586,189 @@ msgstr "" "আমদানি সহায়ক (plugin) পাওয়া যাচ্ছে না, অনুগ্রহ করে আপনার ইন্সষ্টলেশন পরীক্ষা করুন" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "পাসওর্য়াড নাই" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "পাসওর্য়াড:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "আবার দিন:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Password Hashing" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "সার্ভার থেকে ডাটাবেইজ রফতানী করা হচ্ছে" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "ডাটাবেইজ থেকে \"%s\" টেবিল রফতানী করা হচ্ছে" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "টেবল থেকে \"%s\" রো রফতানী করা হচ্ছে" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "রফাতানীর ধরন" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "ফাইলের নামের নকশা:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "টেবিলের নাম" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "তৈরী" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "ফাইলের নামের নকশা:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "সাময়িক ডিস্ক হার" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "আধুনিকায়ন হয়েছে" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "টেবল নির্বাচন" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "রফতানী পদ্ধতী" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "দ্রুত - সাম্ভাব্য কম অপশনগুলো দেখাও" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "কাষ্টম - সাম্ভাব্য সবগুলো অপশন দেখাও" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "ডাটাবেইজ" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "টেবলসমুহ:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "গঠন:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "গঠন নির্দিষ্ট অপশনসমূহ:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "এই গঠনের অপশনগুলো পূর্ণ করার জন্য নীচে যান এবং অন্য গঠনের অপশনগুলো বাদ দিন।" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "এনকোডিং কনভারশন:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "সারি:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "কিছু রো স্তুপ কর" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "শুরুর রো:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "সব রো স্তুপ কর" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "আউটপুট:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "সার্ভারের %s ডিরেক্টরিতে রাখ" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "ফাইলের নামের নকশা:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "সার্ভারের নাম হবে @SERVER@" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ হবে ডাটাবেইজের নাম" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "@TABLE@ হবে টেবলের নাম" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8754,114 +8779,114 @@ msgstr "" "পারেন। এখন এই রুপান্তরটি হবে:%3$s। অন্যান্য লেখা ঠিকই থাকবে। %4$sFAQ%5$s এ বিশদ " "পাওয়া যাবে।" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "ভবিষৎ রফতানীতে ইহা ব্যবহার করবে" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "ফাইলের বর্ণ রাশি:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "সংকোচন:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "জিপ্ড" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "জিজিপ্ড" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "লেখার মত আউটপুট দেখা" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "ভিউ টেবিলের মত রফতানী করা হচ্ছে" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "সমান্তরাল (rotated headers)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "আউটপুট একটি ফাইলে রাখ" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "টেবল নির্বাচন" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "টেবল নির্বাচন" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "ডাটাবেইজের নাম" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "নতুন পাতার নাম: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "স্তম্ভের নাম প্রতিলিপি" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "স্তম্ভের নাম প্রতিলিপি" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "রফতানী সহায়কটি লোড করা যাচ্ছে না, ইনস্টলেশন পরীক্ষা করুন!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s থেকে %2$s শাখা" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "কোনা শাখা নাই" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%2$s দ্বারা %1$s কার্যকর করা হয়েছে" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%2$s দ্বারা %1$s প্রণয়ন করেছে" @@ -9310,13 +9335,13 @@ msgid "" msgstr "" "নথিপত্রাদি এবং PBXT'র অন্যান্য তথ্য %sPrimeBase XT Home Page%s এ পাওয়া যাবে।" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s ফাইলটি সংরক্ষন করার মত জায়গা নাই।" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9324,38 +9349,38 @@ msgstr "" "%s ফাইলটি পূর্ব থেকে আছে, ফাইল এর নাম পরিবর্তন করুন বা উপরে লেখার এর স্থানটি " "নির্বাচন করুন।" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "ওয়েব সার্ভারের %s ফাইলটি সংরক্ষন করার অনুমিত নাই।" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "স্তুপকৃত তথ্য %s ফাইলে সংরক্ষন করা হয়েছে।" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "মাইএসকিউএল কিছু পায়নি। (শুন্য তথ্য)।" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "এই আকৃতিটি তৈরী করা বা পরিবর্তন করা হয়েছে। এখানে আপনি:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "একটি আকৃতির বিশদ দেখুন তার নামে ক্লিক করে" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9363,42 +9388,42 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "\"Options\" এ ক্লীক করে যে কোন সেটিংস পরিবর্তন করুন" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "আকৃতি সম্পাদনা কর এই \"Structure\" সংযোগের দ্বারা" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "ডাটাবেইজ এ যাও: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "%s এর সেটিংস সম্পাদনা" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "টেবল এ যাও: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s এর আকৃতি" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "ভিউ এ যাও : %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9409,80 +9434,81 @@ msgstr "" msgid "Create an index on  %s columns" msgstr " %s  কলামসমূহে একটি ইনডেক্স তৈরী কর" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "লুকাও" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "ফাংশন" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "দৈর্ঘ্যের জন্য এই স্বম্ভ সম্পাদন করা যাবে না" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binary - সম্পাদন করবেন না" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "অথবা" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "ওয়েব সার্ভারের আপলোড ডিরেক্টরি:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "সম্পাদন/নতুন" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "%s রোতে প্রবেশ করানো চলতে থাকবে" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "এবং তারপর" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "নতুন রো হিসাবে প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "নতুন রো হিসাবে প্রবেশ করাও এবং ভুলসমূহ উপেক্ষা কর" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "প্রবেশ করানোর অনুসন্ধান দেখাও" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "পূর্ববর্তী পাতায় যাও" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "অন্য আরেকটি নতুন রো প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "এই পাতাতেই ফিরে আস" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "পরবর্তী রো সম্পাদনা" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9492,8 +9518,8 @@ msgstr "" "ট্যাব কি দিয়ে মান থেকে মানে যাওয়া যাবে বা CTRL+arrows দিয়ে যে কোন জায়গায় " "যাওয়া যাবে।" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9504,33 +9530,33 @@ msgstr "" msgid "Value" msgstr "মান" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "এসকিউএল অনুসন্ধান দেখাচ্ছে" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "প্রবেশকৃত রো আইডি: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 #, fuzzy #| msgid "Success." msgid "Success!" msgstr "সফল।" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "শুধুমাত্র গঠন" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "গঠন এবং তথ্য" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "শুধুমাত্র তথ্য" @@ -9541,14 +9567,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT যোগ কর" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "নিয়মাবলী যোগ কর" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9599,8 +9625,8 @@ msgstr "প্রোসিডিউরস:" msgid "Views:" msgstr "ভিউসমূহ:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "দেখাও" @@ -9647,17 +9673,17 @@ msgid_plural "%s results found" msgstr[0] "%s টি অন্যান্য ফলাফল পাওয়াগেছে" msgstr[1] "%s গুলো অন্যান্য ফলাফল পাওয়াগেছে" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "দ্রুত ফিল্টারটি সরাও" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9673,7 +9699,7 @@ msgstr "অযোগ্য ক্লাশ নাম \"%1$s\", স্বাভ msgid "Could not load class \"%1$s\"" msgstr "কনফিগারেশন সংরক্ষন করা যায়নি।" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9692,7 +9718,7 @@ msgstr "নতুন" msgid "Database operations" msgstr "ডাটাবেইজ কার্যক্রম" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "গোপন জিনিস দেখাও" @@ -9791,13 +9817,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "দুইটি স্তম্ভ নির্বাচন করুন" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Move column" msgid "No such column" @@ -10051,8 +10077,8 @@ msgid "Rename database to" msgstr "ডাটাবেজ পুনঃনামকরন" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10098,183 +10124,183 @@ msgstr "(একক ভাবে)" msgid "Move table to (database.table)" msgstr "টেবিলটি (ডাটাবেইজ.টেবল)এ সরানো হয়েছে" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "টেবিলটির নাম পরিবর্তন কর" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "টেবলের মন্তব্য" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "টেবলের অপশনস" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "মজুদ ব্যবস্থা" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "(ডাটাবেইজ.টেবল)এ টেবিলটির প্রতিলিপ কর" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "প্রতিলিপিকৃত টেবিলে যাও" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "টেবিল রক্ষণাবেক্ষণ" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "টেবিল নিরীক্ষা করা" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "টেবল পরীক্ষা" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "টেবল পরীক্ষা" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "টেবল ডিফ্রেগমেন্ট" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "%s টেবিলটি ফ্লাশ করা হয়েছে." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "টেবিলটি ফ্লাশ কর (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "টেবিল সর্বোচ্চ কার্যপযোগী কর" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "টেবিল মেরামত" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "তথ্য বা টেবিল মুছ" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "টেবিলটি খালি কর (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "টেবিলটি মুছ (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "নিরীক্ষা" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "পরীক্ষা" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "অপটিমাইজ" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "পুননির্মাণ" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "মেরামত" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "বন্ধ" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "খন্ড রক্ষণাবেক্ষন" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "খন্ড %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "খন্ড মুছ" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "রেফারেনসিয়াল ইন্টিগ্রিটি পরীক্ষা কর:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "একই ক্ষেত্রে টেবলটি সরানো যাবে না!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "একই ক্ষেত্রে টেবলটির অনুলিপি করা যাবে না!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s টেবিলটি %s এ সরানো হয়েছে।" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s টেবিল টি %s এ প্রতিলিপি করা হয়েছে।" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s টেবিলটি %s এ সরানো হয়েছে।" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s টেবিল টি %s এ প্রতিলিপি করা হয়েছে।" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "টেবিলের নামটি খালি!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "এই গঠনের কোন অপশন নাই" @@ -10301,18 +10327,18 @@ msgstr "রং দেখাও" msgid "Only show keys" msgstr "শুধু কী দেখাও" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "সংযোগ করা যায়নি: অকার্যকর সেটিংস।" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s এ স্বাগতম" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10321,7 +10347,7 @@ msgstr "" "সম্ভবত আপনি কোন কনফিগারেশন ফাইল তৈরী করেন নাই। আপনি %1$ssetup script%2$s " "ব্যবহার করে একটি তৈরী করতে পারেন।" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10331,7 +10357,7 @@ msgstr "" "MySQL server এ সংযোগের চেষ্ট সার্ভার ফিরিয়ে দিয়েছে। হোষ্ট, নাম, পাসওয়ার্ড ঠিক " "আছে কিনা দেখুন এবং MySQL server এর প্রশাসক দেয়া তথ্যানুযায়ী আছে কিনা নিশ্চিত করুন।" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "পুনরায় সংযোগের চেষ্ট কর" @@ -10357,15 +10383,15 @@ msgstr "নাম:" msgid "Server Choice:" msgstr "পছন্দের সার্ভার:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10428,7 +10454,7 @@ msgstr "তথ্য স্তুপের অপশন" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "টেবলের জন্য তথ্য স্তুপ করছি" @@ -10437,7 +10463,7 @@ msgstr "টেবলের জন্য তথ্য স্তুপ করছ #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "ইভেন্ট" @@ -10445,8 +10471,8 @@ msgstr "ইভেন্ট" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "সংজ্ঞা" @@ -10532,7 +10558,7 @@ msgstr "প্রথম সারিতে স্তম্ভের নাম #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "হোষ্ট:" @@ -11083,7 +11109,7 @@ msgstr "সুচিপত্র" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "বেশতী" @@ -11498,18 +11524,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "আধুনিক কনফিগারেশন ফাইল লোড করার জন্য phpMyAdmin এ আবার লগইন করুন।" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "বণর্না নাই" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11517,41 +11543,41 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "প্রধান প্রতিলিপি" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "প্রতিলিপির প্রধান হিসাবে এই সার্ভারটিকে কনফিগার করা হয়ছে।" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "সংযোগকারী সহায়কগুলো দেখাও" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "সহায়ক প্রতিলিপ তৈরীর ব্যবহারকারী যোগকর" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "প্রধানটির কনফিগারেশন" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11570,19 +11596,19 @@ msgstr "" "প্রতিলিপি করতে চাইলে এবং নির্দিষ্ট কিছু বাদে বা আপনি সবগুলো বাদ দিয়ে নির্দিষ্ট কিছু " "ডাটাবেইজের প্রতিলিপি করতে কনফিগার করতে পারেন। অনুগ্রহ করে কর্মপদ্ধতি নির্বাচন করুন:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "সব ডাটাবেইজের প্রতিলিপি তৈরী করুন; বাতিল:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "সব ডাটাবেইজ বাদে; প্রতিলিপি কর:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "ডাটাবেইজ নির্বাচন করুন:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11590,78 +11616,78 @@ msgstr "" "এখন, নীচের লাইনগুলো my.cnf ফাইলের [mysqld] অংশের নীচের অংশে যোগ করুন। তারপর " "MySQL সার্ভারটি পুনরায় চালু করুন।" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "সহযোগী প্রতিলিপি" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "নিরাপত্তাহীন সংযোগ" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "সহায়ক SQL Thread চলছে না!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread চলছে না!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "সার্ভারটি্ একটি সহায়ক প্রতিলিপিকারী হিসাবে করফিগার করা হয়েছ। আপনি কি চান:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "সহায়ক এর অবস্থা দেখুন" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "সহায়কের নিয়ন্ত্রন:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "সম্পুর্ন আরম্ভ" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "সম্পুর্ন বন্ধ" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "সহায়কটি পুর্বাবস্থায় নিয়ে যাও" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "শুধু এসকিউএল প্রক্রিয়া চালু কর" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "শুধু এসকিউএল প্রক্রিয়া বন্ধ কর" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "শুধু IO প্রক্রিয়া চালু কর" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "শুধু IO প্রক্রিয়া বন্ধ কর" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "প্রধান সার্ভারের পরিবর্তন বা রিকনফিগার করুন" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11670,24 +11696,24 @@ msgstr "" "সার্ভারটি প্রতিলিপির সহায়ক হিসাবে কনফিগার করা হয় নাই। আপিন কি configure করতে চান?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "ভূলের ব্যবস্থাপনা:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "ভূলসমূহ এড়িয়ে গেলে প্রধান এবং সহায়ক মধ্য সামঞ্জস্য নষ্ট হতে পারে!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "বর্তমান ভুলটি এড়িয়ে যাও" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "পরবর্তী %s টি ভুল এড়িয়ে যাও।" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11696,11 +11722,11 @@ msgstr "" "এই সার্ভারটি প্রতিলিপির প্রধান হিসাবে কনফিগার করা হয় নাই. আপনি কি ইহা configure করতে চান?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "সহায়কের কনফিগারেশন" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11708,91 +11734,91 @@ msgstr "" "নিশ্চিত করুন,আপনার কনফিগারেশন ফাইলে (my.cnf) অনন্য server-id আছে। না থাকলে " "নিন্মের লাইনগুলো [mysqld] অংশে যোগ করুন:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "ব্যাবহারকারীর নাম:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "ব্যবহারকারীর নাম" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "পাসওর্য়াড" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "পোর্ট:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "প্রধানের অবস্থা" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "সহায়কের অবস্থা" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "চলক" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "হোষ্ট" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "শুধু সহায়কটি --report-host=host_name সহ আরম্ভ হয়েছে।" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "যে কোন হোষ্ট" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "স্থানীয়" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "এই হোষ্ট" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "যে কোন ব্যবহারকারী" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "আক্ষরিক ক্ষেত্র ব্যবহার কর:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "হোষ্ট টেবল ব্যবহার কর" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11800,80 +11826,80 @@ msgstr "" "যখন হোষ্ট টেবল ব্যবহার করা হবে তখন এই ক্ষেত্রটি অকার্যকর থাকবে এবং হোষ্ট টেবলে " "রক্ষিত মানসমূহ ব্যবহার করা হবে।" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "পুনরায় লিখুন" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "পাসওর্য়াড উৎপাদন কর" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "প্রতিলিপির প্রস্তুত কাজ সফলভাবে শুরু হয়েছে।" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "প্রতিলিপি তৈরীরকাজে সমস্যা হয়েছে।" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "প্রতিলিপি সফলভাবে বন্ধ হয়েছে।" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "প্রতিলিপি বন্ধে সমস্যা হয়েছে।" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "প্রতিলিপি সফলভাবে পুনস্থাপন করা হয়েছে।" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "প্রতিলিপি পুনস্থাপনে সমস্যা হয়েছে।" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "সফল।" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "ভুল।" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "অজ্ঞাত ভুল" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "প্রধান %s সহিত সংযোগ করা যায়নি." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "প্রধান লগ পড়া যায়নি। প্রধান লগে অধিকার সমস্যা." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "প্রধানটি পরিবর্তন করা যায়নি" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "প্রধান সার্ভারটি সফলভাবে %s তে পরিবর্তন করা হয়েছে" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11894,7 +11920,7 @@ msgstr "ইভেন্ট %1$s পরিবর্তন হয়েছে।" msgid "Event %1$s has been created." msgstr "ইভেন্ট %1$s তৈরী হয়েছে।" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "আপনার কাজ প্রক্রিয়া করার সময় এক বা একাধীক ভুল হয়েছে:" @@ -11903,79 +11929,79 @@ msgstr "আপনার কাজ প্রক্রিয়া করার স msgid "Edit event" msgstr "ইভেন্ট সম্পাদনা" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "বিশদ" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "ইভেন্টের নাম" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "পরিবর্তন কর %s এ" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "নির্বাহ কর" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "সবগুলো নির্বাহ কর" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "আরম্ভ কর" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "শেষ" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "শেষ করার পর রক্ষাকর" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "সংজ্ঞা দানকারী" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 #, fuzzy #| msgid "The definer must be in the \"username@hostname\" format" msgid "The definer must be in the \"username@hostname\" format!" msgstr "সংজ্ঞা দানকারী অবশ্যই \"username@hostname\" গঠনে হবে" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide an event name" msgid "You must provide an event name!" msgstr "আপনাকে অবশ্যই একটি ইভেন্টের নাম দিতে হবে" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "আপনাকে এই ইভেন্টের জন্য অবশ্যই একটি কার্যকর বিরাম মান দিতে হবে।" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "আপনাকে অবশ্য্ই এই ইভেন্টের জন্য একটি কার্যকর সম্পাদন সময় দিতে হবে।" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "আপনাকে অবশ্যই এই ইভেন্টের জন্য একটি কার্যকর ধরন দিতে হবে।" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "আপনাকে অবশ্যই ইভেন্টের সংজ্ঞা দিতে হবে।" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "নির্দেশ প্রক্রিয়া করনে সমস্যা হয়েছে:" @@ -11996,7 +12022,7 @@ msgstr "ইভেন্ট সময়সূচীর অবস্থা" msgid "The backed up query was:" msgstr "ব্যাকআপকৃত অনুসন্ধানটি ছিল:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "ফেরৎ দিয়াছে" @@ -12011,99 +12037,99 @@ msgstr "" "অনুসন্ধান ত্বত্তাবধান করতে সক্ষম নয়। [strong]কিছু সঞ্চিত রুটিনের কাজ হয়ত ব্যার্থ হবে![/" "strong] সমস্যা এড়াতে 'mysqli' সংযোজক ব্যবহার করুন।" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "রুটিন সম্পাদনা" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "অকার্যকর রুটিন ধরন:\"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "রুটিন %1$s তৈরী করা হয়েছে।" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "দুখিত, মুছে ফেলা রুটিনটি ফেরত আনা যায়নি।" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "রুটিন %1$s পরিবর্তীত হয়েছে।" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "রুটিন %1$s পরিবর্তীত হয়েছে।" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "রুটিনের নাম" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "প্যারামিটার সমূহ" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "দিক" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "প্যারামিটার যোগকর" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "শেষ প্যারামিটারটি মুছ" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "ফেরতের ধরন" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "ফেরতের দৈর্ঘ্য/মানসমূহ" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "রুটিনের পছন্দসমূহ" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "নির্ধারক" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "নিরাপত্তার ধরণ" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL তথ্যে প্রবেশ" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "আপনাকে অবশ্যই একটি রুটিনের নাম দিতে হবে" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "প্যারামিটারের জন্য অকার্যকর নির্দেশনা \"%s\"।" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -12111,24 +12137,24 @@ msgstr "" "ENUM, SET,VARCHAR and VARBINARY এর রুটিনের প্যারামিটরে দৈর্ঘ্য/মান অবশ্যই দিতে " "হবে।" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "প্রতিটি রুটিন প্যারামিটারের জন্য অবশ্যই একটি নাম এবং ধরন দিতে হবে।" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "আপনাকে অবশ্যই রুটিনের কার্যকর ফেরত ধরণ দিতে হবে।" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "আপনাকে অবশ্যই রুটিনের একটি সংজ্ঞা দিতে হবে।" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "রুটিন %s এর সম্পাদনের ফলাফল" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12137,13 +12163,13 @@ msgid_plural "%d rows affected by the last statement inside the procedure." msgstr[0] "প্রসিউডারের শেষ স্টেটমেন্ট দ্বারা %d টি রো প্রভাবিত হয়েছে।" msgstr[1] "্রসিউডারের শেষ স্টেটমেন্ট দ্বারা %d টি রো প্রভাবিত হয়েছে।" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "রুটিন নির্বাহ কর" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "রুটিনের প্যারামিটার" @@ -12165,40 +12191,40 @@ msgstr "ট্রিগার %1$s তৈরী হয়েছে।" msgid "Edit trigger" msgstr "ট্রিগার সম্পাদনা" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "ট্রিগারের নাম" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "সময়" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a trigger name" msgid "You must provide a trigger name!" msgstr "অবশ্যই একটি ট্রিগারের নাম দিতে হবে" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" msgstr "ট্রিগারের জন্য অবশ্যই একটি বৈধ সময় দিতে হবে" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid event for the trigger" msgid "You must provide a valid event for the trigger!" msgstr "ট্রিগারটির জন্য অবশ্যই একটি বৈধ ইভেন্ট দিতে হবে" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "অবশ্যই একটি বৈধ টেবল নাম দিতে হবে" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "অবশ্যই ট্রিগারের একটি সংজ্ঞা দিতে হবে।" @@ -12325,92 +12351,92 @@ msgstr "বর্ণ তালিকা এবং ভাষা" msgid "Databases statistics" msgstr "ডাটাবেইজের পরিসংখ্যান" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "কোন অধিকার নাই।" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT ব্যাতিত সবগুলো অধিকার।" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "তথ্য পড়ার অনুমোদন।" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "তথ্য যোগকরা এবং প্রতিস্থাপনের অনুমোদন।" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "তথ্য পরিবর্তনের অনুমোদন।" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "তথ্য মুছার অনুমোদন।" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "নতুন ডাটাবেজ এবং টেবল তৈরীর অনুমোদন।" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "ডাটাবেজ এবং টেবল মুছার অনুমোদন।" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "সার্ভার সেটিংস এবং সার্ভারের সঞ্চয়কৃত তথ্যাবলী পরিবর্তনের অনুমোদন।" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "সার্ভার বন্ধ করার অনুমোদন।" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "সব ব্যবহারকারীর প্রসেস দেখার অনুমোদন" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "ফাইলে তথ্য আমদানি এবং রফতানীর অনুমোদন।" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "মাইএসকিউএলের এই ভার্সনে কোন প্রভাব নাই।" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "ইনডেক্স তৈরী এবং মুছার অনুমোদন।" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "তৈরীকৃত টেবিলের গঠন পরিবর্তনের অনুমোদন।" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "ডাটা বেইজের তালিকা সম্পুর্ন করার অনুমোদন দেওয়া।" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12419,132 +12445,106 @@ msgstr "" "সর্বোচ্চ সংখ্যক সংযোগ ব্যবহারের পরেও সংযোগের অনুমোদন; প্রশাসনিক কাজের যেমন সর্বময় " "চলক নির্ধারন বা অন্য ব্যবহারকারীরর থ্রেড হত্যার জন্য প্রয়োজন।" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "অস্থায়ী টেবিল তৈরীর অনুমোদন।" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "বর্তমান থ্রেড এর জন্য টেবল লক করার অনুমোদন।" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "সহায়তাকরী প্রতিলিপির জন্য প্রয়োজন।" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "সহায়তাকারী এবং প্রধানদের সম্পর্কে জিজ্ঞাসার অনুমোদন।" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "নতুন ভিউ তৈরীর অনুমোদন।" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "ইভেন্ট সিডিউলারের জন্য ইভেন্ট নিধার্রন করার অনুমোদন" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "ট্রিগার তৈরী এবং মুছার অনুমোদন" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW কোয়ারীজ তৈরীর অনুমোদন।" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "মজুদ করার জন্য রুটিন তৈরীর অনুমোদন।" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "মজুদকৃত রুটিনসমূহ পরিবর্তন এবং মুছার অনুমোদন।" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "ব্যবহারকারীর একাউন্ট তৈরী, মুছা এবং নাম পরিবর্তনের অনুমোদন।" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "মজুদকৃত রুটিন ব্যবহারের অনুমোদন।" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "কিছু না" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "ব্যাবহারকারীর দল" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "স্থীর সংযোগ" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "স্থীর সংযোগ" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "সম্পদের সীমাবদ্ধতা" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "টিকা: এটা ০ (শূন্য) দেওয়া থাকলে কোন সীমাবদ্ধতা থাকবে না।" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "এই ব্যবহারকারীর প্রতি ঘন্টায় ব্যবহৃত অনুসন্ধান নির্ধারন করন।" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12552,396 +12552,375 @@ msgstr "" "এই ব্যবহারকারীর ডাটাবেইজ বা টেবিল এর পরিবর্তন করতে পারে এমন কমান্ড ব্যবহারের " "পরিমান নির্ধারন করন।" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "এই ব্যবহারকারীর প্রতি ঘন্টায় ব্যবহার যোগ্য সংযোগ নির্ধারন করন।" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "এই ব্যবহারকারী একই সংগে কতগুলো সংযোগ ব্যবহার করতে পারবে তার পরিমান নির্ধারন করন।" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "রুটিনসমূহ" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "মজুদকৃত রুটিনসমূহ পরিবর্তন এবং মুছার অনুমোদন।" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "মজুদকৃত রুটিন ব্যবহারের অনুমোদন।" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "টেবিলের নির্দিষ্ট অধিকার" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "টিকা: মাইএসকিউএলের অধিকার গুলো ইংরেজীতে দেওয়া আছে" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "প্রশাসন" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "সর্বময় অধিকারসমূহ" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "সর্বময়" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "ডাটাবেইজ নির্ধারিত অধিকারসমূহ" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "নতুন টেবল তৈরীর অনুমোদন।" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "টেবিল মুছার অনুমোদন।" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "অধিকার টেবল রিলোড না করে ব্যবহারকারী এবং তাদের অধিকার যোগ করার অনুমোদন।" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "কুকি প্রমাণীকরণ" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "সাইনঅন প্রমাণীকরণ" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "কুকি প্রমাণীকরণ" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "লগইন তথ্যাবলী" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "ব্যাবহারকারীর নাম:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "লগের নাম" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "পাসওর্য়াডটি পরিবর্তন করবেন না" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "প্রমাণীকরণ" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Password Hashing" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s এর পাসওর্য়াডটি সফলভাবে পরিবর্তন করা হয়েছে।" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s অধিকার সমূহ বাতিল করা হয়েছে।" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "ব্যবহারকারীর দল যোগ কর" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "ব্যবহারকারীর ডাটাবেইজ" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "একই নামে ডাটাবেইজ তৈরী কর এবং সব অধীকার দাও।" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "সমস্ত অধিকার সব ব্যবহারকারীকে দাও (username\\_%)।" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" ডাটাবেইজে সমস্ত অধিকার দাও।" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "ব্যবহারকারীরা \"%s\" প্রবেশাধীকার পাবে" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "ব্যবহারকারী যোগ করা হয়েছে।" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "অনুমোদন" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "ব্যবহারকারী নাই।" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "যে কোন" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "সর্বময়" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "নির্দিষ্ট ডাটবেইজে" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "ওয়াইল্ডকার্ড" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "নির্দিষ্ট টেবলে" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "সুবিধাসমূহ সম্পাদনা:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "বাতিল" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "ব্যবহারকারী দল সম্পাদনা" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… পুরাতনটি রাখ।" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… ব্যবহারকারী টেবল থেকে পুরাতনটি মুছে ফেল।" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… পুরাতন সমস্ত অধিকার বাতিল কর এবং পরবর্তীগুলো মুছে ফেল।" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "পুরাতনটি ব্যবহারকারী টেবল থেকে মুছে ফেল এবং অধিকারগুলো পুনারায় চালু কর।" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "লগইন তথ্য পরিবর্তন/ব্যবহারকারীর অনুলিপি" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "একই অধিকারসহ একজন নতুন ব্যবহারকারী তৈরী কর এবং…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "স্বম্ভ সম্পকির্ত অধিকার" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "নির্বাচিত ব্যবহারকারীদের মুছ" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "ব্যাবহারকারীর দল" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "এই ব্যবহারকারীদের অধিকার বাতিল কর এবং মুছে ফেল।" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "এই ব্যবহারকারীর নামের সাথে মিল আছে এমন সব ডাটাবেইজ মুছে ফেল।" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "মুছার জন্য কোন ব্যবহারকারী নির্বাচন করা হয়নি!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "অধিকারসমূহ পুনরায় পূর্ণ করা হয়েছে" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "নির্বাচিত ব্যবহরকারীগনকে সফলভাবে মুছা হয়েছে।" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "%s এর অধীকার সমূহ আধুনিকায়ন করা হয়েছে।" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s মুছছি" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "অধিকারসমূহ সফলভাবে পুনরায় পূর্ণকরা হয়েছে।" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "ব্যবহারকারী %s পূর্ব থেকেই আছে!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s এর অধিকারসমূহ" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "ব্যবহারকারী" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "নতুন" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "সুবিধাসমূহ সম্পাদনা:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "ব্যাবহারকারীর দল" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "একনজরে ব্যবহারকারীগণ" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12954,7 +12933,7 @@ msgstr "" "হতে পারে যদি তা পরিবর্তীত হয়ে থাকে। এরুপ ক্ষেত্রে %sreload the privileges%s করতে " "হবে।" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12973,11 +12952,11 @@ msgstr "" "হতে পারে যদি তা পরিবর্তীত হয়ে থাকে। এরুপ ক্ষেত্রে %sreload the privileges%s করতে " "হবে।" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "অধিকার টেবিলে এই ব্যবহারকারী সর্ম্পকে কোন তথ্য নাই।" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "একজন নতুন ব্যবহারকারী যোগ করেছেন।" @@ -13274,12 +13253,12 @@ msgstr "কমান্ড" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "ফিল্টারসমূহ" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13302,12 +13281,12 @@ msgstr "প্রতি মিনিটে:" msgid "per second:" msgstr "প্রতি সেকেন্ডে:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "প্রতিবেদন" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13331,7 +13310,7 @@ msgstr "অবিন্নস্ত্য মানসমূহ দেখাও" msgid "Related links:" msgstr "সর্ম্পকিত সংযোগসমূহ:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13339,11 +13318,11 @@ msgstr "" "যে সমস্ত সংযোগকারীর সংযোগ সঠিকভাবে বিচ্ছিন্ন না করায় সংযোগ বাতিল করা হয়েছে তার " "সংখ্যা।" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "মাইএসকিউএল সার্ভারের সংগে সংযোগ স্থাপনে ব্যর্থ্য প্রচেষ্টাসমূহের সংখ্যা।" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13352,16 +13331,16 @@ msgstr "" "সাময়িক বাইনারী লগ ব্যবহার করেছে এমন লেনদেন সংখ্যা কিন্ত যা binlog_cache_size " "অতিক্রম করেছে এবং লেনদেনের তথ্য রাখার জন্য সাময়িক ফাইল ব্যবহার করেছে।" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "লেনদেনে সাময়িক বাইনারি লগ ক্যাশ ব্যবহার করেছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "মাইএসকিউএল সার্ভারের সংগে সমস্ত সংযোগ প্রচেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13372,17 +13351,17 @@ msgstr "" "যদি Created_tmp_disk_tables বেশী হয়, তাহলে আপনি tmp_table_size এর মানটি " "বাড়ান যা ডিস্কের পরীবর্তে মেমোরিতে বেশী টেবিল তৈরী করবে।" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "mysqld কতগুলো সাময়িক ফাইল তৈরী করেছ।" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "কাজ করার সময় সার্ভার দ্বারা মেমোরীতে প্রস্তুতকৃত সাময়িক টেবিলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13390,7 +13369,7 @@ msgstr "" "INSERT DELAYED এর মাধ্যমে লেখা রো গুলোর জন্য কিছু ভুল হয়ে থাকতে পারে (probably " "duplicate key)।" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13398,23 +13377,23 @@ msgstr "" "INSERT DELAYED থ্রেডসমূহের তত্ত্বাবধানকারী ব্যবহৃত হচ্ছে। প্রতিটি INSERT DELAYED " "ব্যবহারকারী তার নিজস্ব থ্রেড ব্যবহার করছে।" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED রো'র সংখ্যা লেখা হয়েছে।" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "ব্যবহৃত FLUSH এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "আভ্যন্তরীন COMMIT এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "একটি রো একটি টেবিল থেকে কতবার মুছা হয়েছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13424,7 +13403,7 @@ msgstr "" "করতে পারে। একে ডিসকভারী বলে। Handler_discover টেবিলটি কতবার ডিসকভার করা " "হয়েছে তা দেখায়।" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13434,7 +13413,7 @@ msgstr "" "সার্ভার প্রচুর সম্পুর্ন ইনডেক্স স্ক্যান করছে; যেমন SELECT col1 FROM foo, ধারনা করা " "যায় col1 ইনডেক্স করা আছে।" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13442,7 +13421,7 @@ msgstr "" "একটি key উপর ভিত্তি করে কত বার রো পড়ার চেষ্টা করা হয়েছে তার সংখ্যা। এটা যদি " "অনেক বেশী হয়, তাহলে তা টেবিল এবং অনুসন্ধানের ভালো ইনডেক্স হওয়ার ভাল লক্ষন।" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13451,7 +13430,7 @@ msgstr "" "পরবর্তী রো key order অনুযায়ী পড়ার চেষ্টার সংখ্যা। ইহা বাড়বে যদি আপনি ইনডেক্সড " "কলাম নির্দিষ্ট সীমার ভিতর অনুসন্ধান করেন বা ইনডেক্স স্ক্যান করেন।" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13459,7 +13438,7 @@ msgstr "" "পূর্ববর্তী রো key order অনুযায়ী পড়ার চেষ্টার সংখ্যা। পড়ার এই পদ্ধতীটি প্রধানত ORDER " "BY … DESC optimize করতে ব্যবহৃত হয়।" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13471,7 +13450,7 @@ msgstr "" "টেবিলটি স্কেন করে বা আপনি এমন ভাবে অন্য টেবিলে সংযোগ করেছেন যা keys সঠিক ভাবে " "ব্যবহার করছে না।" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13482,35 +13461,35 @@ msgstr "" "বেশী। মনে হয় আপনার টেবিলটি সঠিকভাবে ইনডেক্স করা হয়নি বা অনুসন্ধানগুলো ইনডেক্সের " "সুবিধা নেয়ার মত করে লেখা হয়নি।" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "internal ROLLBACK এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "একটি টেবিলে একটি রো আপডেট এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "একটি টেবিলে একটি রো প্রবেশ করানোর চেষ্টা।" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "তথ্য (পরিচ্ছন্ন বা অপরিচ্ছন্ন) আছে এমন পাতার সংখ্য।" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "অপরিচ্ছন্ন পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "মুছার চেষ্টা হয়েছে এমন buffer pool পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "খালি পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13519,7 +13498,7 @@ msgstr "" "InnoDB buffer pool এ থাকা পাতার সংখ্যা। এই পাতাগুলোতে কাজ করা হচ্ছে বা এখনো " "ডিস্কে রাখা হয়নি বা কোন কারনে মুছা হয়নি।" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13531,11 +13510,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data এর মাধ্যমেও " "পাওয়া যাবে।" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "বাফার পুলের মোট আকার, পাতায়।" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13543,7 +13522,7 @@ msgstr "" "InnoDB'র \"random\" পড়ার চেষ্টা করেছে তার সংখ্যা। যখন কোন অনুসন্ধান টেবলের একটি " "বড় অংশ random ভাবে স্ক্যন করে তখন ঘটে।" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13551,18 +13530,18 @@ msgstr "" "InnoDB'র ধারাবাহিকভাবে পড়ার চেষ্টা করেছে তার সংখ্যা। InnoDB যখন কোন টেবিলে " "ধারাবাহিকভাবে স্ক্যান করে তখন ঘটে।" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'র যৌক্তিক পড়ার সংখ্যা।" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" "যা InnoDB buffer pool থেকে পড়তে পারেনি এবং একটি পাতা পড়তে হয়েছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13575,51 +13554,51 @@ msgstr "" "অপেক্ষা করতে হয়। এই গণকটি এই অপেক্ষার সংখ্যাটি গুনে রাখে। যদি বাফার পুল আকার " "সঠিকভাবে সেট করা হয়, এর মান কম হবে।" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB বাফার পুলে লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "fsync() কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "আটকে থাকা fsync() কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "আটকে থাকা পড়ার সংখ্যা।" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "আটকে থাকা লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "পাঠকৃত তথ্যের পরিমান, বাইটে।" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "পাঠকৃত তথ্যের মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "লিখিত তথ্যের মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "লিথিত তথ্যের পরিমান, বাইটে।" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "পাতার সংখ্যা যা ডাবলরাইটের জন্য লেখা হয়েছে।" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "সম্পন্ন করা হয়েছে এমন ডাবলরাইট কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13627,35 +13606,35 @@ msgstr "" "লগ বাফার খুব ছোট থাকায় কৃত অপেক্ষার সংখ্যা এবং ইহা মুছার পূর্ব পর্যন্ত আমাদের অপেক্ষা " "করতে হয়েছে।" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "লগ লেখার জন্য প্রচেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "লগে লেখার সংথ্যা।" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "লগে fsync() লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "লগে fsync লেখা আটকে আছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "লগে লেখা বাকি আছে।" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "লগে লেখা বাইটের সংখ্যা।" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "প্রস্তুতকৃত পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13663,51 +13642,51 @@ msgstr "" "InnoDB কম্পাইল করার সময় স্বাভাবিক পাতার আকৃতিতে (16KB) থাকে। অনেক কিছুই পাতা " "হিসাবে গনা হয়; পাতার আকৃতি সহজেই বাইটে পরিবর্তন করা যায়।" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "পড়া পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "লিখিত পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "অপেক্ষারত রো লকের সংখ্যা।" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "একটি রো তে তালা দেওয়ার গড় সময়, মিলিসেকেন্ডে।" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "রো তালা দেওয়ার জন্য ব্যবহৃত মোট সময়, মিলিসেকেন্ডে।" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "একটি রো তে তালা দেওয়ার সর্বোচ্চ সময়, মিলিসেকেন্ডে।" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "একটি রো লক কতবার অপেক্ষা করতে হয়েছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB টেবিল থেকে মুছা রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB টেবিলে প্রবেশকৃত রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB টেবিল থেকে পড়া রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB টেবিলে আপডেটকৃত রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13715,7 +13694,7 @@ msgstr "" "কী ব্লকের সংখ্যা যা কী ক্যাশ পরিবর্তন করেছে কিন্ত এখনো ডিস্কে রাখা হয়নি। সাধারনত " "একে Not_flushed_key_blocks বলা হয়।" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13723,7 +13702,7 @@ msgstr "" "কী ক্যাশে অব্যবহৃত ব্লকের সংখ্যা। কি পরিমান কী ক্যাশ ব্যবহৃত হচ্চে তা আপনি এর মাধ্যমে " "জানতে পারবেন।" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13732,15 +13711,15 @@ msgstr "" "কী ক্যাশে ব্যবহৃত ব্লকের সংখ্যা। এটি high-water mark যার দ্বারা একবারে ব্যবহৃত " "সর্বোচ্চ সংখ্যার পরিমান দেখায়।" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "কী ক্যাশ ব্যবহারের শতকরা হার (হিসাব করা)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "ক্যাশ থেকে কী ব্লক পড়ার চেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13750,26 +13729,26 @@ msgstr "" "এর মানটি সম্বভত অনেক ছোট। ক্যাশের মিসের হারটি পাওয়া যাবে Key_reads/" "Key_read_requests মাধ্যমে।" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "কী ক্যাশ পড়ার চেষ্টা এবং আসলে পড়ার হার ভুল হিসাব করিয়াছে (হিসাবকৃত মান)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "ক্যাশে কী ব্লক লেখার চেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "ডিস্কে কী ব্লক লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "লেখার চেষ্টার তুলনায় সত্যকারের লেখার হার (হিসাবকৃত মান)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13779,36 +13758,36 @@ msgstr "" "বিভিন্ন ধরনের অনুসন্ধান পরিকল্পনার খরচ তুলনা উপকারি। এর মান ০ থাকা মানে কোন " "অনুসন্ধান এখনো অনুবাদ করা হয়নি।" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "সার্ভার আরম্ভ করার পর থেকে একই সময়ে স্থাপিত সংযোগের সংখ্যা।" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "অপেক্ষারত রো'র সংখ্যা যা INSERT DELAYED সারিতে আছে।" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" "খোলা টেবিলের সংখ্যা। যদি সংখ্যাটি বড় হয়, তবে আপনার টেবিল ক্যাশের মান খুবই ছোট।" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "খোলা ফাইলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "খোলা স্ট্রীম এর সংখ্যা (প্রধানত লগিং এর জন্য)।" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "খোলা টেবিলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13817,19 +13796,19 @@ msgstr "" "অনুসন্ধান ক্যাশে উন্মুক্ত মেমরীর সংখ্যা। বড় সংখ্যা ফ্র্যাগমেন্টেশনের জন্য ঈঙ্গিত দেয়, যা " "FLUSH QUERY CACHE এর মাধ্যমে সমাধান করা যেতে পারে।" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "অনুসন্ধান ক্যাশের উন্মুক্ত মেমরীর পরিমান।" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "ক্যাশ কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "ক্যাশে সঞ্চিত অনুসন্ধানের সংখ্যা।" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13840,7 +13819,7 @@ msgstr "" "আপনার ক্যাশের আকার ঠিক করতে সাহায্য করবে। কোন অনুসন্ধানটি মুছতে হবে তা নির্ধারন " "করার জন্য অনুসন্ধান ক্যাশ least recently used (LRU) কৌশল অনুসরন করে।" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13848,19 +13827,19 @@ msgstr "" "ক্যাশ করা হয়নি এমন অনুসন্ধানের সংখ্যা (ক্যাশ যোগ্য নয় বা query_cache_type setting " "এর জন্য)।" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "ক্যাশে রাখা হয়েছে এমন অনুসন্ধানের সংখ্যা।" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "অনুসন্ধান ক্যাশে থাকা ব্লকের মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13868,11 +13847,11 @@ msgstr "" "ইনডেক্স ব্যবহার করছে না এমন সংযোগের সংখ্যা। এই মানটি যদি ০ হয় তবে আপনার টেবিলের " "ইনডেক্সগুলো সর্তকভাবে পরীক্ষা করুন।" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "সংযোগের সংখ্যা যে গুলো reference table এ range search ব্যবহার করছে।" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13880,7 +13859,7 @@ msgstr "" "কী বিহীন সংযোগের সংখ্যা যেগুলো প্রতিটি রো'র পর কী চায়। (এই মানটি যদি ০ না হয় " "তবে আপনার টেবিলের ইনডেক্সগুলো সর্তকভাবে পরীক্ষা করুন।)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13888,60 +13867,60 @@ msgstr "" "সংযোগের সংখ্যা যা প্রথম টেবলে ranges ব্যবহার করেছে। (টেবল যদি অনেক বড়ও হয় তবুও " "তা বিপদজনক নয়।)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "সংযোগের সংখ্যা যেগুলো প্রথম টেবলে পুর্ণ স্ক্যান করে।" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "সহায়ক এসকিউএল থ্রেডের দ্বারা বর্তমানে খোলা সাময়িক টেবিলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "সহায়ক এসকিউএল থ্রেড (আরম্ভ থেকে) কতবার লেনদেন চেষ্টা করেছে তার মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "ইহা ON হয় যদি এই সহায়ক সার্ভারটি মাষ্টারের সাথে সংযুক্ত থাকে।" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "থ্রেডের সংখ্যা যেগুলো তৈরী হতে slow_launch_time সেকেন্ড থেকে বেশী সময় নিয়েছে।" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "অনুন্ধানের সংখ্যা যেগুলো long_query_time সেকেন্ডের থেকে বেশী সময় নিয়েছে।" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "গুছানোর সংখ্যা যেগুলো সীমার মধে হয়েছে।" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "গুছানো রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "সর্টের সংখ্যা যেগুলো করতে টেবিল স্ক্যান করা হয়েছে।" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "কতবার টেবিলকে সংগে সংগে তালা দেয়াগেছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13952,7 +13931,7 @@ msgstr "" "বেশী হয় তবে সমস্যা আছে, প্রথমে আপনাকে অনুসন্ধান অপটিমাইজ করতে হবে এবং তারপড় টেবল " "খন্ড করতে হবে বা প্রতিলিপি ব্যবহার করতে হবে।" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13961,11 +13940,11 @@ msgstr "" "খ্রেড ক্যাশে থ্রেডের সংখ্যা। এই সংখ্যাটি Threads_created/Connections এভাবে গণনা " "করা যাবে। এই সংখ্যাটি ছোট হলে আপনাকে thread_cache_size বাড়াতে হবে।" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "বর্তমানে ব্যবহৃত সংযোগের সংখ্যা।" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13975,11 +13954,11 @@ msgstr "" "সংযোগ ব্যবস্থাপনার জন্য তৈরীকৃত থ্রেডের সংখ্যা Threads_created যদি বেশী হয় তবে " "thread_cache_size বাড়াতে হবে।" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "থ্রেড ক্যাম হিটের হার" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "থ্রেডের সংখ্যা যা ঘুমন্ত নয়।" @@ -14008,37 +13987,37 @@ msgstr "ডাটাবেইজ লেবেল ট্যাব" msgid "Table level tabs" msgstr "টেবলের লেভেল ট্যাব" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "ব্যাবহারকারীদের দেখাও" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "ব্যবহারকারীর দল যোগ কর" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "ব্যবহারকারীর দল সম্পাদনা কর: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "ব্যবহারকারীর দলের মেনু নির্ধারন" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "দলের নাম:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "সার্ভার লেভেল ট্যাব" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "ডাটাবেইজ লেভেল ট্যাব" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "টেবলের লেবেল ট্যাব" @@ -14146,7 +14125,7 @@ msgstr "ডাটাবেইজ %s এ SQL অনুসন্ধান/অন msgid "Run SQL query/queries on table %s" msgstr "ডাটাবেইজ %s এ SQL অনুসন্ধান/অনুসন্ধানসমূহ চালাও" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "পরিস্কার" @@ -14234,179 +14213,179 @@ msgstr "এখন বন্ধ কর" msgid "Version" msgstr "সংস্করন" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "তৈরী হয়েছে" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "আধুনিকায়ন হয়েছে" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "সংস্করন তৈরী কর" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "ট্রেকিং প্রতিবেদন" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "গঠনের প্রতিচ্ছবি" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "কার্যকর" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "অকার্যকর" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "ট্রেকিং বিবরণী" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "প্রতিবেদনের রো থেকে ট্রেকিং তথ্য মুছে ফেল" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "কোন তথ্য নাই" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, 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 %5$s অনুযায়ী %1$s তারিখসহ " "দেখাও" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "স্তুপকৃত এসকিউএল (ফাইল ডাউনলোড করুন)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "স্তুপকৃত এসকিউএল" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "এই অপশনটি আপনার টেবল এবং এর তথ্য প্রতিস্থাপন (রিপ্লেস) করবে।" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "এসকিউএল সম্পাদন" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "%s মত রফতানী কর" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "তথ্য মেনিপুলেশন বিবরণী" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "তথ্য সংজ্ঞার বিবরণী" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "তারিখ" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "ব্যাবহারকারীর নাম" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "সংস্করন %s এর স্ন্যাপশট (SQL code)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "কিছু না" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "ট্রেকিং তথ্যের বিবরণী সফলভাবে মুছা হয়েছে" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "ট্রেকিং তথ্যের মেনিপুলেশন সফলভাবে মুছা হয়েছে" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "আপনি একটি সাময়িক ডাটাবেইজ তৈরী ও ব্যবহার করে স্তুপটি নির্বাহ করতে পারেন।" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "প্রয়োজন না হলে এই দু'টো লাইনে কমেন্ট চিহ্ন দিয়ে রাখুন।" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL রফতানী করা হয়েছে। স্তুপটি প্রতিলিপ বা কার্যকর কর।" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "টেবল %s এর ট্রেকিং প্রতিবেদন" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s ট্রেকিং কার্যকর করা হয়েছে সংস্করন %2$s এ।" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s ট্রেকিং অকার্যকর করা হয়েছে %2$s সংস্করনে।" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%1$s এর %2$s সংস্করন তৈরী কর" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s সংস্করন তৈরী করা হয়েছে, %2$s ট্রেকিং কার্য চলছে।" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "ট্রেকিং হয়নি যে টেবিলসমুহ" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "টেবিল ট্রেক" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "ট্রেক কৃত টেবিলসমূহ" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "শেষ সংস্করন" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "ট্রেকিং তথ্য মুচ্ছি" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "সংস্করন সমূহ" @@ -14414,7 +14393,7 @@ msgstr "সংস্করন সমূহ" msgid "Manage your settings" msgstr "আপনার সেটিংস রক্ষণাবেক্ষণ করুন" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "কনফিগারেশন সংরক্ষন করা হয়েছে।" @@ -14440,7 +14419,7 @@ msgstr "জিপ আর্কাইভের ভুল:" msgid "No files found inside ZIP archive!" msgstr "জিপ আর্কাইভের ভিতর কোন ফাইল পাওয়া যায়নি!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "মারাত্মক ভুল: চলাচলের সুবিধা শুধু মাত্র এজাক্সের মাধ্যমে পাওয়া যাবে" @@ -14450,57 +14429,57 @@ msgstr "মারাত্মক ভুল: চলাচলের সুবি msgid "Cannot save settings, submitted form contains errors!" msgstr "সেটিংস সংরক্ষন করা যায়নি, দেওয়া তথ্যে ভূল আছে" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "কনফিগারেশন আমদানি করা যায়নি" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "কিছু ক্ষেত্রে কনফিগারেশনে ভুল তথ্য আছে।" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "আপনি কি অন্যান্য সেটিংস আমদানি করতে চান?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "সংরক্ষনের তারিখ : @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "ফাইল থেকে আমদানি" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "ব্রাউজারের মজুদ স্থান থেকে আমদানি" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "আপনার ব্রাউজার থেকে সেটিংস আমদানি করা হবে।" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "আপনার কাছে সংরক্ষিত সেটিংস নাই!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "আপনার ব্রাউজার এটি সর্মথন করে না" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "বর্তমান কনফিগারেশনের সাথে মিশিয়ে দাও" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14509,25 +14488,25 @@ msgstr "" "আরো সেটিংসের জন্য config.inc.php ব্যবহার করে আপনি সেটিংস পরিবর্তন করতে পারেন, " "বা %sSetup script%s ও ব্যবহার করতে পারেন।" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "ফাইল এর মত সংরক্ষন" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "ব্রাউজারের স্থানে সংরক্ষন করুন" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "আপনার ব্রাউজারের নিধারীত স্থানে সেটিংস সংরক্ষতিত হবে।" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "পূর্ববতী সেটিংস এর উপর লেখা হবে!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "আপনি সমস্ত সেটিংস পুর্বাবস্থায় ফিরিয়ে নিতে পারেন এবং স্বাভাবিক অবস্থায় ফিরে যেতে " @@ -14537,46 +14516,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "ডাটাবেইজের স্তুপ(আকৃতি) দেখাও" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "কোন অধিকার নাই" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "প্রক্রিয়া %s সফলভাবে ধ্বংস করা হয়েছে।" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin %s প্রক্রিয়াটি ধ্বংস করতে পারে নাই। সম্ভবত ইহা পূর্বেই বন্ধ করা হয়েছে।" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "ডাউনলোড" @@ -14587,11 +14566,11 @@ msgstr "ডাউনলোড" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "ফর্মসেট ঠিক নাই, setup/frames/form.inc.php এ $formsets পরীক্ষা করুন" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "কনফিগারেশন লোড বা সংরক্ষন করতে পারছি না" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14601,7 +14580,7 @@ msgstr "" "ডিরেক্টরীতে যেভাবে [doc@setup_script]documentation[/doc] বর্ণনা করা হয়েছে। " "অন্যথায় আপনি শুধু ইহা ডাউনলোড বা প্রর্দশন করতে পারবেন।" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14609,24 +14588,27 @@ msgstr "" "আপনি নিরাপদ সংযোগ ব্যবহার করছেন না; সমস্ত তথ্য (গুরুত্বপূর্ণ তথ্য, যেমন " "পাসওয়ার্ড)আনএনক্রিপটেড স্থানান্তর করা হবে।" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "আপনার সার্ভার যদি HTTPS সংযোগের জন্য কনফিগারড হয় তবে নিরাপদ সংযোগের জন্য [a@" "%s]this link[/a] ব্যবহার করেন।" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "নিরাপত্তাহীন সংযোগ" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "কনফিগারেশন সংরক্ষন করা হয়েছে।" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14634,61 +14616,61 @@ msgstr "" "কনফিগারেশন config/config.inc.php ফাইলে সংরক্ষন করা হয়েছে। এটি প্রধান " "ডিরেক্টরীতে কপি করে config ডিরেক্টরীটি মুছে ফেলুন।" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "কনফিগারেশন সংরক্ষন করা হয়েছে।" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "একনজরে দেখা" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "গোপন বার্তা দেখাও (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "কনফিগার করা কোন সার্ভার নাই" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "নতুন সার্ভার" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "স্বাভাবিক ভাষা" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "ব্যবহারকারী পছন্দ করুক" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- কিছু না -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "স্বভাবিক সার্ভার" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "লাইনের শেষ" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "দেখাও" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "লোড" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "প্রধান পাতা" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "দান করা" @@ -14724,22 +14706,22 @@ msgstr "ভুল উপেক্ষা কর" msgid "Show form" msgstr "ফর্ম দেখাও" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" "সংস্করন পাঠ ব্যাথ্য হয়েছে। সম্ভবত আপনি অফলাইন বা উন্নতকরন সার্ভারটি সাড়া দিচ্ছে না।" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "সার্ভার থেকে অকার্যকর সংস্করন পাওয়া গেছে" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "অগ্রহন যোগ্য সংস্করন" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14748,7 +14730,7 @@ msgstr "" "আপনি Git সংস্করন ব্যবহার করছেন,[kbd]git pull[/kbd] চালান :-)[br] সর্বশেষ সুস্থিত " "সংস্করন হল %s, বেরিয়েছে %s।" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "কোন নতুন সুস্থিত সংস্করন পাওয়া যায়নি" @@ -14761,12 +14743,12 @@ msgstr "ভুল তথ্য" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' ডাটাবেইজটি নাই।" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "টেবিল %s পুর্ব থেকেই আছে!" @@ -14779,35 +14761,35 @@ msgstr "টেবিলের স্তুপ (গঠন) দেখাও" msgid "Invalid table name" msgstr "টেবিলের নামটি অকার্যকর" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "কোন রো নির্বাচন করা হয় নাই" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s ট্রেকিং কার্যকর করা হয়েছে।" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "নির্বাচিত ব্যবহরকারীগনকে সফলভাবে মুছা হয়েছে।" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "কোন রো নির্বাচন করা হয় নাই" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "এসকিউএল নির্বাহ করা হয়েছে।" @@ -15019,7 +15001,7 @@ msgid "List of available transformations and their options" msgstr "প্রাপপীয় রুপান্তরসমূহের তালিকা এবং উহাদের অপশন" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15044,7 +15026,7 @@ msgstr "" "ব্যাক স্ল্যাশ দিন ('\\\\কখগ' বা 'অ\\'ক'।" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15569,17 +15551,17 @@ msgid "Size" msgstr "আকার" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "প্রস্তুত" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "সর্বশেষ আপডেট" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "সর্বশেষ যাচাই" @@ -15616,6 +15598,12 @@ msgstr "" "আপনার ব্রাউজারে এই ডোমেইনের phpMyAdmin এর কনফিগারেশন আছে। আপনি কি এই সেশনের " "জন্য তা আমদানি করতে চান?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "ট্রেকিং তথ্য মুচ্ছি" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database:" @@ -15636,10 +15624,45 @@ msgstr "নিচের টেবিল এ সুবিধাসমূহ য msgid "Add privileges on the following table:" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "নতুন" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "কিছু না" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "নির্বাচিত ব্যবহারকারীদের মুছ" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "এই ব্যবহারকারীদের অধিকার বাতিল কর এবং মুছে ফেল।" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "এই ব্যবহারকারীর নামের সাথে মিল আছে এমন সব ডাটাবেইজ মুছে ফেল।" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "স্বম্ভ সম্পকির্ত অধিকার" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "সম্পদের সীমাবদ্ধতা" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "টিকা: এটা ০ (শূন্য) দেওয়া থাকলে কোন সীমাবদ্ধতা থাকবে না।" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "দেখার জন্য বাইনারি লগ নির্বাচন করুন" @@ -15672,7 +15695,7 @@ msgstr "সাহায্যকারী" msgid "Author" msgstr "প্রণেতা" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "অকার্যকর" @@ -15838,7 +15861,7 @@ msgstr "ব্যবহারকারী:" msgid "Comment:" msgstr "মন্তব্য:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15878,28 +15901,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "ফরেন কীর নিয়ম" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "নিয়মাবলী যোগ কর" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "অভ্যন্তরীন সর্ম্পক" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "আভ্যন্তরীন রিলেশন" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "যখন ফরেন কী সর্ম্পক থাকে তখন অভ্যন্তরীন সর্ম্পকটি প্রয়োজনীয় নয়।" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "প্রদর্শনের জন্য স্তম্ভ পছন্দ কর:" @@ -15955,11 +15978,11 @@ msgstr "প্রকৃত লেখা" msgid "Replaced string" msgstr "প্রতিস্থাপিত লেখা" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "প্রতিস্থাপন করা হয়েছে" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "খোঁজার অতিরিক্ত শর্ত" @@ -16039,7 +16062,7 @@ msgid "at beginning of table" msgstr "টেবিলের শুরুতে" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16075,28 +16098,28 @@ msgstr "রো'র দৈর্ঘ্য" msgid "Index length" msgstr "রো'র দৈর্ঘ্য" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "খন্ড করা হয়েছে" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "খন্ড মুছ" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "সম্পাদনা ভিউ" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "ব্যবহৃত জায়গা" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "কার্যকর" @@ -16125,31 +16148,31 @@ msgstr "প্রস্তাবিত টেবল গঠন" msgid "Track view" msgstr "টেবিল ট্রেক" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "রো'র পরিসংখ্যান" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "স্থায়ী" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "পরিবর্তনশীল" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "খন্ড করা হয়েছে" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "রো'র দৈর্ঘ্য" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "রো'র আকার" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "পরবর্তী অটোইনডেক্স" @@ -16162,50 +16185,50 @@ msgstr "স্বম্ভ %s মুছা হয়েছে।" msgid "Click to toggle" msgstr "টোগল ক্লীক করুন" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "খীম" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "আরও থীমের জন্য!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "মাইমের ধরন" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "প্রাপ্ত রুপান্তরসমূহ" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "প্রাপ্ত রুপান্তরসমূহ" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "বর্ণনা" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "ট্রেকিং প্রতিবেদন" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "এই মূহুর্তে এখানে থাকার জন্য আপনার পর্যাপ্ত অধিকার নাই!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "প্রোফাইল আপডেট করা হয়েছে।" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16281,7 +16304,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16306,19 +16329,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16381,29 +16404,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "ইভেন্ট %1$s তৈরী হয়েছে।" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "টেবলের নামের নকশা" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "টেবিলের শুরুতে" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16422,10 +16445,16 @@ msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "টেবিলের শুরুতে" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16472,7 +16501,7 @@ msgstr "" msgid "strict error" msgstr "ভুলসমূহ জড়ো" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17711,6 +17740,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert এর জন্য ০ নির্ধারন করা হয়েছে" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "কুকি প্রমাণীকরণ" + #~ msgid "Try to connect without password." #~ msgstr "পাসওর্য়াডহীন সংযোগের চেষ্টা কর।" diff --git a/po/br.po b/po/br.po index a66f07a9dd..7197d1fde2 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-07 15:36+0000\n" "Last-Translator: Nils Van Zuijlen \n" "Language-Team: Breton 1;\n" "X-Generator: Weblate 2.9\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -31,33 +31,33 @@ msgstr "" "N'eo ket hegerz ar restr %s er reizhiad-mañ. Kit da welet war www.phpmyadmin." "net evit gouzout hiroc'h." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 #, fuzzy #| msgid "Click to select" msgid "Click to sort." msgstr "Klikañ evit diuzañ" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Evezhiadenn diwar-benn an diaz roadennoù :" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Evezhiadennoù diwar-benn an daolenn :" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -69,13 +69,13 @@ msgstr "Evezhiadennoù diwar-benn an daolenn :" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -86,9 +86,9 @@ msgstr "Evezhiadennoù diwar-benn an daolenn :" msgid "Column" msgstr "Bann" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -99,12 +99,12 @@ msgstr "Bann" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -116,9 +116,9 @@ msgstr "Bann" msgid "Type" msgstr "Seurt" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -129,15 +129,15 @@ msgstr "Seurt" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -148,14 +148,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Dre ziouer" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -165,7 +165,7 @@ msgstr "Dre ziouer" msgid "Links to" msgstr "Liammet ouzh" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -179,19 +179,19 @@ msgstr "Liammet ouzh" msgid "Comments" msgstr "Evezhiadennoù" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -199,13 +199,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -213,17 +213,17 @@ msgstr "" msgid "No" msgstr "Ket" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -232,13 +232,13 @@ msgstr "Ket" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -250,15 +250,15 @@ msgstr "Ya" msgid "View dump (schema) of database" msgstr "Gwelet un ezporzhiadenn (chema) eus an diaz roadennoù" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -267,8 +267,8 @@ msgid "Tables" msgstr "Taolennoù" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -276,10 +276,10 @@ msgstr "Taolennoù" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -292,30 +292,30 @@ msgstr "Framm" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Roadennoù" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Diuzañ pep tra" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Goullo eo anv an diaz roadennoù !" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %1$s has been renamed to %2$s." msgid "Database %1$s has been renamed to %2$s." msgstr "Deuet eo anv an diaz roadennoù %1$s da vezañ %2$s" -#: db_operations.php:149 +#: db_operations.php:150 #, fuzzy, php-format #| msgid "Database %1$s has been copied to %2$s." msgid "Database %1$s has been copied to %2$s." @@ -332,43 +332,43 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: db_qbe.php:125 +#: db_qbe.php:126 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Ret eo deoc'h dibab da nebeutañ ur bann da vezañ diskwelet" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cheñch evit ar %ssavour gwelet%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Moned nac'het !" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking data deleted successfully." msgstr "Diverket eo bet an diaz roadennoù %s." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No rows selected" msgid "No tables selected." msgstr "N'eus bet diuzet linenn ebet" -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Marilh an diaz roadennoù" @@ -410,133 +410,133 @@ msgstr "Seurt faziek !" msgid "Bad parameters!" msgstr "Arventennoù fall !" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Talvoud evit ar bann \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Ober gant OpenStreetMaps evit ar gwiskad diazez" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID :" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Mentoniezh %d :" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Poent :" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Poent %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Ouzhpennañ ur poent" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Aradennad linennoù %d :" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 #, fuzzy #| msgid "Outer Ring:" msgid "Outer ring:" msgstr "Kelc'h diavaez :" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Kelc'h diabarzh %d :" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Ouzhpennañ un aradennad linennoù" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Ouzhpennañ ur c'helc'h diabarzh" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Lieskorneg %d :" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Ouzhpennañ ul lieskorneg" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Ouzhpennañ mentoniezh" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Mont" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Disoc'h" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 #, fuzzy #| msgid "" #| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " @@ -548,21 +548,21 @@ msgstr "" "Dibab \"GeomFromText\" er bann \"Arc'hwel\" ha pegañ an neudennad er " "vaezienn \"Talvoud\" a-is" -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Moned nac'het !" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "complete inserts" msgid "Incomplete params" msgstr "Ensoc'hadennoù sevenet" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -571,15 +571,15 @@ msgstr "" "Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " "%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "O tiskouez ar sined" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Diverket eo bet ar sined." -#: import.php:489 +#: import.php:486 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 " @@ -589,17 +589,17 @@ msgstr "" "anv restr ebet pe ez a ar vent anezhi dreist d'ar vent vrasañ aotreet gant " "ho kefluniadur PHP. Gwelet [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "Krouet eo bet ar sined %s" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -607,7 +607,7 @@ msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Enporzhiet eo bet an traoù ervat, %d rek zo bet kaset da benn." msgstr[1] "Enporzhiet eo bet an traoù ervat, %d reked zo bet kaset da benn." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -619,7 +619,7 @@ msgstr "" "Aet eur dreist d'ar vevenn amzer. Mar fell deoc'h kenderc'hel gant an " "enporzhiañ, adkasit ar restr hag e kendalc'ho an argerzh." -#: import.php:632 +#: import.php:629 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." @@ -628,7 +628,7 @@ msgstr "" "Peurliesañ e talvez n'hallo ket PhpMyAdmin echuiñ da enporzhiañ an traoù ma " "ne vez ket kresket ganeoc'h bevenn amzer PHP." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'." @@ -636,17 +636,17 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Distreiñ" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -654,51 +654,51 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "Change settings" msgid "General settings" msgstr "Kemmañ an arventennoù" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "" -#: index.php:213 +#: index.php:214 #, fuzzy #| msgid "Server configuration" msgid "Server connection collation" msgstr "Kefluniadur ar servijer" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "Change settings" msgid "Appearance settings" msgstr "Kemmañ an arventennoù" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Databases" msgid "Database server" msgstr "Diazoù roadennoù" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Servijer :" -#: index.php:295 +#: index.php:296 #, fuzzy #| msgid "Server" msgid "Server type:" msgstr "Servijer" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -706,90 +706,90 @@ msgstr "Servijer" msgid "Server version:" msgstr "Stumm diwezhañ" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Last version" msgid "Protocol version:" msgstr "Stumm diwezhañ" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "Username:" msgid "User:" msgstr "Anv implijer :" -#: index.php:314 +#: index.php:315 #, fuzzy #| msgid "Remove chart" msgid "Server charset:" msgstr "Dilemel ar grafik" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "" -#: index.php:338 +#: index.php:339 #, fuzzy #| msgid "Database comment" msgid "Database client version:" msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "Versions" msgid "PHP version:" msgstr "Stummoù" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Teuliadur" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 "" -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -797,21 +797,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -819,7 +819,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage has been deactivated. To find out " @@ -831,19 +831,19 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1022,7 +1022,7 @@ msgid "Save & close" msgstr "Enrollañ evel restr" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Adderaouekaat" @@ -1066,7 +1066,7 @@ msgstr "Menegerioù" msgid "Edit index" msgstr "Mod aozañ" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %s column(s) to index" @@ -1096,10 +1096,10 @@ msgstr "Ouzhpennañ/Diverkañ bannoù" msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1115,7 +1115,7 @@ msgstr "Hizivaat ar reked" msgid "Matched rows:" msgstr "Linennoù a sell outo :" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1136,13 +1136,13 @@ msgstr "Goullo eo anv ar servijer !" msgid "The user name is empty!" msgstr "Goullo eo anv an implijer !" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Goullo eo ar ger-tremen !" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" @@ -1150,8 +1150,8 @@ msgstr "Ne glot ket ar gerioù-tremen !" msgid "Removing Selected Users" msgstr "O lemel kuit an implijerien diuzet" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Serriñ" @@ -1178,19 +1178,19 @@ msgstr "Diverket eo bet ar sined." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Udb all" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1304,40 +1304,40 @@ msgid "Processes" msgstr "Argerzhioù" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "o" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "Eio" @@ -1357,7 +1357,7 @@ msgstr "Goulennoù" msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Arventennoù" @@ -1373,16 +1373,16 @@ msgid "Please add at least one variable to the series!" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Hini" @@ -1582,20 +1582,20 @@ msgstr "O tilesa…" msgid "Explain output" msgstr "Displegañ SQL" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Statud" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "" @@ -1686,10 +1686,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Enporzhiañ" @@ -1774,7 +1774,7 @@ msgstr "Arventennoù fall !" msgid "Cancel" msgstr "Nullañ" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" @@ -1822,8 +1822,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "" @@ -1871,7 +1871,7 @@ msgstr "Oc'h eilañ an diaz roadennoù" msgid "Changing charset" msgstr "O cheñch ar strobad arouezennoù" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1903,77 +1903,82 @@ msgstr "O furchal" msgid "Deleting" msgstr "O tiverkañ" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Bez' e rank bezañ un embannadenn RETURN e termenadur un arc'hwel stoket !" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Ezporzhiañ" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field." msgstr "Merkañ pep talvoud en ur vaezienn a-ziforc'h." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Notenn : ma vez meur a daolenn er restr e vint unanet." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Kuzhat ar voest rekedoù SQL" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Diskouez ar voest rekedoù SQL" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1981,371 +1986,371 @@ msgstr "Diskouez ar voest rekedoù SQL" msgid "Edit" msgstr "Kemmañ" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Diverkañ" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "Diweredekaat %s" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Klask en diaz roadennoù" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Memor vak" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Edit routine" msgid "Continue" msgstr "Kemmañ un argerzh" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Diverket eo bet an alc'hwez kentidik." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Danevell heuliañ" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Graet" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Create the following table" msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù \"%s\"." -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Enrollañ" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Klask" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Bann" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Bann" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Poent" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Aradennad linennoù" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Lieskorneg" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Mentoniezh" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Kelc'h diabarzh" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring:" msgid "Outer ring" msgstr "Kelc'h diavaez :" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Diuzit an alc'hwez daveet" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Diuzit an alc'hwez estren" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Dibab ar bann da ziskouez" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2353,261 +2358,261 @@ msgstr "" "N'eo ket bet enrollet ar c'hemmoù degaset d'an tres ganeoc'h. Kollet e vint " "ma n'o enrollit ket. Kenderc'hel memes tra ?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Save as file" msgid "Save page" msgstr "Enrollañ evel restr" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save as file" msgid "Save page as" msgstr "Enrollañ evel restr" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "Digor" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Diverkañ" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Niverenn borzh direizh" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Ouzhpennañ un dibarzh evit ar bann " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Diskouez pep tra" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Aradennad linennoù" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Nullañ" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Talvoudoù enporzhiañ dre ziouer" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Diuzañ pep tra" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Moullañ" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Set value: %s" msgid "Go to link:" msgstr "Lakaat an talvoud da %s" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "No rows selected" msgid "Copy column name." msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Genel" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Muioc'h" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Diskouez pep tra" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Kuzhat menegerioù" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2617,119 +2622,119 @@ msgstr "" "hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", stumm stabil diwezhañ :" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "hizivaet" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Diskouez pep tra" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Na ober van" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Issued queries" msgid "Execute this query again?" msgstr "Rekedoù resevet" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2738,36 +2743,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Eilañ an diaz roadennoù war" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Eilañ an daolenn enni ur rakger" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Kent" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2775,149 +2800,149 @@ msgid "Next" msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hiziv" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Genver" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "C'hwevrer" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Meurzh" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Ebrel" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mae" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Mezheven" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Gouere" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Eost" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Gwengolo" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Here" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Du" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Kzu" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Sul" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Lun" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Meurzh" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Merc'her" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Yaou" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Gwener" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sadorn" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2925,207 +2950,207 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "L" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Mz" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Mc" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Y" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "G" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sizh." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Hini" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Eur" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Munut" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Eilenn" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "Maeziennoù testenn" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Niverenn borzh direizh" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Niverenn borzh direizh" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Niverenn borzh direizh" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Niverenn borzh direizh" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Niverenn borzh direizh" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Niverenn borzh direizh" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Niverenn borzh direizh" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Niverenn borzh direizh" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Niverenn borzh direizh" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Niverenn borzh direizh" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Niverenn borzh direizh" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Niverenn borzh direizh" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Niverenn borzh direizh" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Niverenn borzh direizh" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Fazi" @@ -3187,20 +3212,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Etrerummadiñ" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3395,7 +3420,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3445,56 +3470,56 @@ msgstr "" msgid "Font size" msgstr "Ment an destenn" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Klask" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "Boest rekedoù SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Dibosupl lenn ar restr keluniañ" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Enter server connection parameters" msgid "Missing connection parameters!" msgstr "Merkañ arventennoù kevreañ ar servijer" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3602,74 +3627,74 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Reked SQL ouzh an diaz roadennoù %s :" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Kas ar reked" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Klask" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Klask" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Klask" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "O tiskouez ar sined" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Klask" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "unan eus ar gerioù da nebeutañ" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "an holl c'herioù" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "ar frazenn-rik" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "evel un droienn reoliek" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Disoc'hoù ar c'hlask evit \"%s\" %s : " -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Hollad : %s glotadenn" msgstr[1] "Hollad : %s klotadenn" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3678,48 +3703,43 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s glotadenn en daolenn %s" msgstr[1] "%s klotadenn en daolenn %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Furchal" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Klask en diaz roadennoù" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Gerioù pe dalvoudoù da glask (Joker: \"%\") :" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Kavout :" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Dispartiet e vez ar gerioù gant un esaouenn (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "E diabarzh an taolennoù :" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Diziuzañ pep tra" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Er bann :" @@ -3744,16 +3764,16 @@ msgstr "Silañ" msgid "Search this table" msgstr "Klask en diaz roadennoù" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Kregiñ" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3762,8 +3782,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Kent" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3772,8 +3792,8 @@ msgctxt "Next page" msgid "Next" msgstr "War-lerc'h" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3784,7 +3804,7 @@ msgstr "Fin" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3793,8 +3813,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3816,10 +3836,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3861,36 +3881,36 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The bookmark has been deleted." msgid "The row has been deleted." msgstr "Diverket eo bet ar sined." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Sevenet eo bet ho reked SQL ervat" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3899,79 +3919,79 @@ msgstr "" "Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " "%steulioù titouriñ%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d total" msgstr "%s daolenn" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Evit ar re zo diuzet :" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Askañ pep tra" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Theme %s not found!" msgid "Link not found!" msgstr "N'eo ket bet kavet an tem %s !" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3979,27 +3999,27 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Enporzhiañ" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " "c'hemennad upload_max_filesize directive e php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4007,52 +4027,52 @@ msgstr "" "Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " "c'hemennad MAX_FILE_SIZE spisaet er furmskrid HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Hanter bellgarget eo bet ar restr nemetken." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Mankout a ra ur c'havlec'h padennek." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Fazi en ur skrivañ ar restr war ar bladenn." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Harzet eo bet ar pellgargañ gant an astenn." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "N'haller ket lenn ar restr" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4062,28 +4082,28 @@ msgstr "" "gwasket (%s). Pe n'eo ket emplementet ar mod gwaskañ-se en ho kefluniadur, " "pe eo bet diweredekaet." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Stumm da voullañ" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4094,20 +4114,20 @@ msgid "No index defined!" msgstr "N'eus bet termenet meneger ebet !" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Menegerioù" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4117,59 +4137,59 @@ msgstr "Menegerioù" msgid "Action" msgstr "Oberiadenn" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Anv ar meneger" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Dibar" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Gwasket" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalegezh" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Evezhiadenn" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Diverket eo bet an alc'hwez kentidik." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Diverket eo bet ar meneger %s." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Dilezel" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4178,19 +4198,19 @@ msgstr "" "Evit doare eo kevatal an menegerioù %1$s ha %2$s hag unan anezho a c'hallfe " "bezañ dilamet." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Pajenn niv. : " -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4214,11 +4234,11 @@ msgstr "Servijer" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4237,14 +4257,15 @@ msgid "View" msgstr "Gwelet" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4253,8 +4274,8 @@ msgid "Table" msgstr "Taolenn" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4262,45 +4283,45 @@ msgstr "Taolenn" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Klask" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Ensoc'hañ" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Oberiadennoù" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4316,16 +4337,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4333,22 +4354,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Diazoù roadennoù" @@ -4357,53 +4378,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Eilañ" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d linenn tizhet." msgstr[1] "%1$d linenn tizhet." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d linenn diverket." msgstr[1] "%1$d linenn diverket." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4467,27 +4488,27 @@ msgstr "Taolennoù heuliet-pizh" msgid "Favorites" msgstr "Taolennoù heuliet-pizh" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Fazi dianav en ur bellgargañ ar restr." @@ -4550,7 +4571,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4604,87 +4625,87 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "N'eus tamm titour dre ar munud ebet evit al lusker stokañ-mañ." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "War ar servijer MySQL-mañ ez eo %s ar c'heflusker stokañ dre ziouer." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Hegerz eo %s war ar servijer MySQL-mañ." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Diweredekaet eo bet %s war ar servijer MySQL-mañ." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "N'eo ket skoret al lusker stokañ %s gant ar servijer MySQL-mañ." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show all" msgid "Unknown table status:" msgstr "Diskouez pep tra" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "N'eo ket bet kavet an tem %s !" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Diaz roadennoù direizh" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Anv taolenn direizh" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Fazi en ur adenvel %1$s e %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Anv an daolenn %s zo %s bremañ" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "N'eus ket bet gallet enrollañ dibaboù etrefas an taolennoù" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4692,19 +4713,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4979,7 +5000,7 @@ msgid "Date and time" msgstr "Krouiñ un argerzh" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Linestring" msgctxt "string types" @@ -4996,72 +5017,72 @@ msgstr "" msgid "Max: %s%s" msgstr "Ment vrasañ : %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Roadennoù stadegel" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Displegañ SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "N'eo ket dav displegañ SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Hep kod PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kas ar reked" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Krouiñ kod PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Freskaat" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "O profilañ" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5069,65 +5090,65 @@ msgid "Edit inline" msgstr "Mod aozañ" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y da %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s deiz, %s eur, %s munut ha %s eilenn" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Mont d'an diaz roadennoù \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer :" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "N'eus restr ebet da enporzhiañ" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Goullonderiñ" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Seveniñ" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -5141,7 +5162,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -5149,14 +5170,14 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Klask" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5164,7 +5185,7 @@ msgstr "Klask" msgid "Description" msgstr "Deskrivadur" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Ober gant an talvoud-mañ" @@ -5205,22 +5226,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -5229,7 +5250,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5250,13 +5271,13 @@ msgstr "" msgid "Select a column." msgstr "Ouzhpennañ/Diverkañ bannoù" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add/Delete columns" msgid "Add new column" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5264,34 +5285,34 @@ msgstr "Ouzhpennañ/Diverkañ bannoù" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Meneger servijer faziek : %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Servijer" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh :" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5299,20 +5320,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5931,7 +5952,7 @@ msgid "Compress on the fly" msgstr "Gwaskañ war ar prim" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Restr gefluniañ" @@ -6061,12 +6082,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Pad seveniñ hirañ" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Enrollañ evel restr" @@ -6076,7 +6097,7 @@ msgstr "Strobad arouezennoù ar restr" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Furmad" @@ -6211,7 +6232,7 @@ msgid "Save on server" msgstr "Enrollañ war ar servijer" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Frikañ ar restroù zo c'hoazh" @@ -6226,7 +6247,7 @@ msgid "Remember file name template" msgstr "Derc'hel soñj eus patrom anv ar restr" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" @@ -6235,7 +6256,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Mod kenglotañ gant SQL" @@ -6273,7 +6294,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Ouzhpennañ %s" @@ -6478,7 +6499,7 @@ msgid "Customize the navigation tree." msgstr "Personelaat ar framm merdeiñ" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servijerioù" @@ -7452,7 +7473,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Arventennoù dilesañ" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8121,7 +8142,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8129,10 +8150,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8283,25 +8304,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "Testenn Open Document" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Goullonderet eo bet an daolenn %s." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Diverket eo bet ar Gweled %s" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8316,12 +8337,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -8330,7 +8351,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -8344,16 +8365,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Krouet eo bet an diaz roadennoù %1$s." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8361,26 +8382,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Diverket eo bet an diaz roadennoù %s." msgstr[1] "Diverket eo bet an diaz roadennoù %s." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Linennoù" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Hollad" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Dilerc'hioù" @@ -8407,34 +8428,34 @@ msgstr "" msgid "Enable statistics" msgstr "Stadegoù war ar rekedoù" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "Choose column to display" msgid "No data to display" msgstr "Dibab ar bann da ziskouez" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8489,7 +8510,7 @@ msgstr "Diverket eo bet an diaz roadennoù %s." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -8507,12 +8528,12 @@ msgstr "Kemmañ" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -8535,13 +8556,13 @@ msgstr "" msgid "Distinct values" msgstr "Ober gant an talvoud-mañ" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8563,187 +8584,191 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Ger-tremen :" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "Ger-tremen :" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Seurt ezporzhiadenn" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgctxt "PDF" #| msgid "page" msgid "New template:" msgstr "Kemmañ" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "The database name is empty!" msgid "Template name" msgstr "Goullo eo anv an diaz roadennoù !" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s daolenn" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Hizivaet" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "Diuzañ pep tra" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Doare ezporzhiañ" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Diazoù roadennoù" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Taolennoù" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8751,115 +8776,115 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Invalid table name" msgid "Export databases as separate files" msgstr "Anv taolenn direizh" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export method" msgid "Export tables as separate files" msgstr "Doare ezporzhiañ" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "Diuzañ pep tra" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "Diuzañ pep tra" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "The database name is empty!" msgid "New database name" msgstr "Goullo eo anv an diaz roadennoù !" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "Invalid table name" msgid "New table name" msgstr "Anv taolenn direizh" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "No rows selected" msgid "Old column name" msgstr "N'eus bet diuzet linenn ebet" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "No rows selected" msgid "New column name" msgstr "N'eus bet diuzet linenn ebet" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Other core settings" msgid "committed on %1$s by %2$s" msgstr "Arventennoù pouezus all" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Other core settings" msgid "authored on %1$s by %2$s" @@ -9271,13 +9296,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "N'eus ket pealec'h da enrollañ ar restr %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9285,78 +9310,78 @@ msgstr "" "Emañ ar restr %s war ar servijer c'hoazh; cheñch an anv pe gwiriañ al log " "frikañ ar restroù." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "N'eo ket aotreet ar servijer web da enrollañ ar restr %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "Mont d'an diaz roadennoù" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Lakaat an talvoud da %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ar framm hepken" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9367,88 +9392,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Kuzhat" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Pe" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "Select from the web server upload directory %s:" msgid "web server upload directory:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ensoc'hañ" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9459,31 +9485,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Ar framm hepken" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Ar roadennoù hepken" @@ -9494,14 +9520,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Ouzhpennañ ar strishadurioù" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Reloading Privileges" @@ -9558,8 +9584,8 @@ msgstr "Argerzhioù" msgid "Views:" msgstr "Gwelet" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Diskouez" @@ -9606,19 +9632,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Enrollañ evel restr" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9634,7 +9660,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9655,7 +9681,7 @@ msgstr "" msgid "Database operations" msgstr "Dibarzhioù diskwel an diazoù roadennoù" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show indexes" msgid "Show hidden items" @@ -9758,13 +9784,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete columns" msgid "Select one…" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Inside column:" msgid "No such column" @@ -10016,8 +10042,8 @@ msgid "Rename database to" msgstr "Cheñch anv an diaz roadennoù hag e envel" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10063,183 +10089,183 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Dielfennañ an daolenn" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Gwiriañ an daolenn" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Gwiriañ an daolenn" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Lakaat an daolenn diouzh ar gwellañ" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Dresañ an daolenn" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Serriñ" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10268,18 +10294,18 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Dibosupl kevreañ : arventennoù direizh." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Degemer mat e %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10288,7 +10314,7 @@ msgstr "" "Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " "%1$sskript kefluniañ%2$s da sevel unan." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10300,7 +10326,7 @@ msgstr "" "ger-tremen en ho kefluniadur ha bezit sur e klotont gant an titouroù " "pourchaset gant merour ar servijer MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10329,15 +10355,15 @@ msgstr "Anv implijer :" msgid "Server Choice:" msgstr "Dibab ar servijer" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10400,7 +10426,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10409,7 +10435,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -10417,8 +10443,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -10512,7 +10538,7 @@ msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -11063,7 +11089,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -11407,18 +11433,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11430,13 +11456,13 @@ msgstr "" "Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ " "kefluniadurioù phpMyAdmin." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11446,28 +11472,28 @@ msgstr "" "Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ " "kefluniadurioù phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11476,303 +11502,303 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Force SSL connection" msgid "Master connection:" msgstr "Rediañ ar c'hevreadennoù SSL" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "Username:" msgid "User name:" msgstr "Anv implijer :" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "Maeziennoù testenn" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Genel ur ger-tremen" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Fazi" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11797,7 +11823,7 @@ msgstr "Kemmet eo bet an argerzh %1s." msgid "Event %1$s has been created." msgstr "Krouet eo bet an argerzh %1s." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -11809,87 +11835,87 @@ msgstr "Ur fazi, pe meur a hini, zo bet en ur seveniñ ho koulenn :" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 #, fuzzy #| msgid "Execute" msgid "Execute at" msgstr "Seveniñ" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute" msgid "Execute every" msgstr "Seveniñ" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Pajenn deraouiñ" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "Ensoc'hadennoù sevenet" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Anv taolenn direizh" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -11912,7 +11938,7 @@ msgstr "" msgid "The backed up query was:" msgstr "Setu amañ ar reked a oa bet miret :" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -11932,122 +11958,122 @@ msgstr "" "merañ ar rekedoù lies. Gallout a ra ar seveniñ argerzhioù stoket zo " "c'hwitañ ! Grit gant an astenn 'mysqli' gwellaet, kuit da gaout kudennoù." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Kemmañ un argerzh" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Seurt argerzh faziek : \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Krouet eo bet an argerzh %1$s." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Ho tigarez, disposupl eo bet assevel an argerzh." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Anv taolenn direizh" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Disoc'hoù seveniñ an argerzh %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12056,13 +12082,13 @@ msgid_plural "%d rows affected by the last statement inside the procedure." msgstr[0] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" msgstr[1] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Seveniñ an argerzh" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12090,42 +12116,42 @@ msgstr "Krouet eo bet an argerzh %1s." msgid "Edit trigger" msgstr "Kemmañ un argerzh" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Theme" msgctxt "Trigger action time" msgid "Time" msgstr "Tem" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Anv taolenn direizh" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Anv taolenn direizh" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Anv taolenn direizh" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Anv taolenn direizh" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12253,599 +12279,552 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Force SSL connection" msgid "Does not require SSL-encrypted connections." msgstr "Rediañ ar c'hevreadennoù SSL" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Force SSL connection" msgid "Requires SSL-encrypted connections." msgstr "Rediañ ar c'hevreadennoù SSL" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Edit routine" msgid "Routine" msgstr "Kemmañ un argerzh" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "Dilesadur" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change Password" msgid "SHA256 password authentication" msgstr "Cheñch ger-tremen" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authentication" -msgid "Native MySQL Authentication" -msgstr "Dilesadur" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "Anv implijer :" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Add constraints" msgid "Host name" msgstr "Ouzhpennañ ar strishadurioù" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Dilesadur" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Ger-tremen :" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Ouzhpennañ un implijer" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Databases display options" msgid "Database for user account" msgstr "Dibarzhioù diskwel an diazoù roadennoù" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "Oc'h adkargañ an dreistgwirioù" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "Gwiriañ ar gwirioù" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Removing Selected Users" -msgid "Remove selected user accounts" -msgstr "O lemel kuit an implijerien diuzet" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "Gwiriañ ar gwirioù" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "Oc'h adkargañ an dreistgwirioù" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12854,7 +12833,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12863,11 +12842,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -13159,14 +13138,14 @@ msgid "Progress" msgstr "" # verb pe ak. ? -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "Silañ" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -13190,12 +13169,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13219,33 +13198,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13253,78 +13232,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13332,7 +13311,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13340,42 +13319,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13383,33 +13362,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13418,244 +13397,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Furmad ar restr enporzhiañ" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13663,99 +13642,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13763,18 +13742,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13782,13 +13761,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "N'eo ket oberiant an heuliañ." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13823,46 +13802,46 @@ msgstr "Diazoù roadennoù" msgid "Table level tabs" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "Ouzhpennañ un implijer" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Ouzhpennañ un implijer" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Username:" msgid "Group name:" msgstr "Anv implijer :" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Last version" msgid "Server-level tabs" msgstr "Stumm diwezhañ" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Diazoù roadennoù" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13976,7 +13955,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "Reked SQL ouzh an diaz roadennoù %s :" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -14067,179 +14046,179 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Krouet" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Hizivaet" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "Stumm diwezhañ" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Danevell heuliañ" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Gwel prim eus ar framm" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "oberiant" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "dizoberiant" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Other core settings" msgid "Version %1$s of %2$s was deleted." msgstr "Arventennoù pouezus all" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Taolennoù n'int ket heuliet" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Heuliañ an daolenn" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Taolennoù heuliet-pizh" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Stumm diwezhañ" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "O tiverkañ ar roadennoù heuliañ" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Stummoù" @@ -14247,7 +14226,7 @@ msgstr "Stummoù" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -14271,7 +14250,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14279,82 +14258,82 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "Teuliadur phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Enrollañ evel restr" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14362,45 +14341,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14408,99 +14387,98 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration storage" msgid "Configuration not saved!" msgstr "Mirlec'h ar c'hefluniadurioù" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14536,28 +14514,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14570,12 +14548,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14588,36 +14566,36 @@ msgstr "" msgid "Invalid table name" msgstr "Anv taolenn direizh" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "N'eus bet diuzet linenn ebet" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "Oberiant eo an heuliañ." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "Diverket eo bet an diaz roadennoù %s." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "N'eus bet diuzet linenn ebet" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14824,7 +14802,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Servers display options" msgid "Browser display transformation" @@ -14846,7 +14824,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -15364,17 +15342,17 @@ msgid "Size" msgstr "Ment" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Krouiñ" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Hizivadenn ziwezhañ" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Gwiriadenn ziwezhañ" @@ -15409,6 +15387,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "O tiverkañ ar roadennoù heuliañ" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Check privileges for database \"%s\"." @@ -15429,10 +15413,45 @@ msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù \"%s\"." msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Removing Selected Users" +msgid "Remove selected user accounts" +msgstr "O lemel kuit an implijerien diuzet" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15465,7 +15484,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15648,7 +15667,7 @@ msgstr "Anv implijer :" msgid "Comment:" msgstr "Evezhiadenn" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15686,30 +15705,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Ouzhpennañ ar strishadurioù" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Internal relations" msgstr "Diverket eo bet ar sined." -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15773,13 +15792,13 @@ msgstr "Aradennad linennoù" msgid "Replaced string" msgstr "Erlec'hiañ rakger an daolenn" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "Eilet" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" @@ -15864,7 +15883,7 @@ msgid "at beginning of table" msgstr "Niver a linennoù da ensoc'hañ" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15896,30 +15915,30 @@ msgstr "Aradennad linennoù" msgid "Index length" msgstr "Menegerioù" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Relations" msgid "Partition table" msgstr "Darempredoù" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit mode" msgid "Edit partitioning" msgstr "Mod aozañ" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Stumm da voullañ" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -15950,33 +15969,33 @@ msgstr "Diazoù roadennoù" msgid "Track view" msgstr "Heuliañ an daolenn" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Query statistics" msgid "Row statistics" msgstr "Stadegoù war ar rekedoù" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15989,48 +16008,48 @@ msgstr "" msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tem" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Tables display options" msgid "Available browser display transformations" msgstr "Dibarzhioù diskwel an taolennoù" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Danevell heuliañ" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -16102,7 +16121,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16127,19 +16146,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." msgstr "N'eus bet diuzet linenn ebet" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16196,29 +16215,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Routine %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Krouet eo bet an argerzh %1s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Patrom anv taolenn" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "Number of inserted rows" msgid "Unexpected beginning of statement." msgstr "Niver a linennoù da ensoc'hañ" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16235,10 +16254,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Number of inserted rows" +msgid "Unexpected ordering of clauses." +msgstr "Niver a linennoù da ensoc'hañ" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16283,7 +16308,7 @@ msgstr "" msgid "strict error" msgstr "Dastum ar fazioù" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17456,6 +17481,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Dilesadur" + #, fuzzy #~| msgid "" #~| "Enable [a@https://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " diff --git a/po/brx.po b/po/brx.po index cbe76c9795..9207bb7a89 100644 --- a/po/brx.po +++ b/po/brx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2318,105 +2323,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2425,349 +2430,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2828,20 +2853,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3036,7 +3061,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3080,48 +3105,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3215,110 +3240,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3338,30 +3358,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3370,7 +3390,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3379,8 +3399,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3402,10 +3422,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3445,102 +3465,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3548,97 +3568,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3647,20 +3667,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3670,78 +3690,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3765,11 +3785,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3788,14 +3808,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3804,8 +3825,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3813,45 +3834,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3867,16 +3888,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3884,20 +3905,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3906,53 +3927,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4000,27 +4021,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4082,7 +4103,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4136,76 +4157,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4213,19 +4234,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4492,7 +4513,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4507,126 +4528,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4640,7 +4661,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4648,12 +4669,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4661,7 +4682,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4698,22 +4719,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4722,7 +4743,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4739,11 +4760,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4751,33 +4772,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4785,20 +4806,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5323,7 +5344,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5423,12 +5444,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5438,7 +5459,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5563,7 +5584,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5576,7 +5597,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5585,7 +5606,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5615,7 +5636,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5781,7 +5802,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6612,7 +6633,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7247,7 +7268,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7255,10 +7276,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7393,24 +7414,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7424,12 +7445,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7438,7 +7459,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7452,42 +7473,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7512,32 +7533,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7580,7 +7601,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7597,12 +7618,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7623,13 +7644,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7649,165 +7670,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7815,98 +7840,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8303,86 +8328,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8393,84 +8418,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8481,31 +8507,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8514,14 +8540,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8566,8 +8592,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8608,17 +8634,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8633,7 +8659,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8652,7 +8678,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8751,11 +8777,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -8989,8 +9015,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9034,177 +9060,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9231,25 +9257,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9257,7 +9283,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9282,15 +9308,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9351,7 +9377,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9360,7 +9386,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9368,8 +9394,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9455,7 +9481,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9949,7 +9975,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10269,57 +10295,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10328,293 +10354,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10635,7 +10661,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10644,75 +10670,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10733,7 +10759,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10745,132 +10771,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10892,32 +10918,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11033,565 +11059,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11600,7 +11583,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11609,11 +11592,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11880,12 +11863,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11906,12 +11889,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -11935,33 +11918,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11969,78 +11952,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12048,7 +12031,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12056,42 +12039,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12099,33 +12082,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12134,242 +12117,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12377,99 +12360,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12477,18 +12460,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12496,11 +12479,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12529,37 +12512,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12654,7 +12637,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12739,172 +12722,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12912,7 +12895,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12936,7 +12919,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12944,78 +12927,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13023,45 +13006,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13069,97 +13052,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13195,28 +13177,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13229,12 +13211,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13247,29 +13229,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13433,7 +13415,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13451,7 +13433,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13879,17 +13861,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13924,6 +13906,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13940,10 +13926,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13974,7 +13993,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14128,7 +14147,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14160,26 +14179,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14232,11 +14251,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14305,7 +14324,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14329,24 +14348,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14371,31 +14390,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14408,44 +14427,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14513,7 +14532,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14534,17 +14553,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14596,24 +14615,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14630,10 +14649,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14670,7 +14693,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/bs.po b/po/bs.po index 187edbf0fe..75c956f615 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " "information." msgstr "" -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1$s - %2$s." msgstr "Prikaz zapisa" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Komentar baze" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 #, fuzzy #| msgid "Table comments" msgid "Table comments:" msgstr "Komentari tabele" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -62,13 +62,13 @@ msgstr "Komentari tabele" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -79,9 +79,9 @@ msgstr "Komentari tabele" msgid "Column" msgstr "Kolona" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -92,12 +92,12 @@ msgstr "Kolona" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -109,9 +109,9 @@ msgstr "Kolona" msgid "Type" msgstr "Tip" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -122,15 +122,15 @@ msgstr "Tip" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -141,14 +141,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Podrazumjevano" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -158,7 +158,7 @@ msgstr "Podrazumjevano" msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -172,19 +172,19 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -192,13 +192,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -206,17 +206,17 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -225,13 +225,13 @@ msgstr "Ne" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -243,15 +243,15 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -260,8 +260,8 @@ msgid "Tables" msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -269,10 +269,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -285,30 +285,30 @@ msgstr "Struktura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Podaci" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Izaberi sve" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Naziv baze je prazan!" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %1$s has been renamed to %2$s." msgid "Database %1$s has been renamed to %2$s." msgstr "Baza %1$s je preimenovana u %2$s" -#: db_operations.php:149 +#: db_operations.php:150 #, fuzzy, php-format #| msgid "Database %1$s has been copied to %2$s." msgid "Database %1$s has been copied to %2$s." @@ -323,43 +323,43 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin konfiguracijski spremnik je isključen. %sSaznaj više%s." -#: db_qbe.php:125 +#: db_qbe.php:126 #, 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 izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pređi na %svizualni graditelj%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Ulaz nije dozvoljen!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy #| msgid "Chart generated successfully." msgid "Tracking data deleted successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Nije izabrana ni jedna baza." -#: db_tracking.php:149 +#: db_tracking.php:150 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -399,193 +399,193 @@ msgstr "Vrsta upita" msgid "Bad parameters!" msgstr "Dodaj novo polje" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dodaj novo polje" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Linije se završavaju sa" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, fuzzy, php-format msgid "Polygon %d:" msgstr "Dodaj novo polje" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 #, fuzzy msgid "Add a polygon" msgstr "Dodaj novo polje" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Kreni" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 #, fuzzy #| msgid "Access denied!" msgid "Succeeded" msgstr "Ulaz nije dozvoljen!" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "Complete inserts" msgid "Incomplete params" msgstr "Kompletan INSERT (sa imenima polja)" -#: import.php:195 +#: import.php:196 #, 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 "" -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Obilježivač je upravo obrisan." -#: import.php:489 +#: import.php:486 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 "" -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format msgid "Bookmark %s has been created." msgstr "Tabela %s je odbačena" -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -593,20 +593,20 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: import.php:632 +#: import.php:629 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 "" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -614,18 +614,18 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Nazad" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin dokumentacija" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -633,51 +633,51 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General relation features" msgid "General settings" msgstr "Opšte osobine relacija" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Promeni lozinku" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "General relation features" msgid "Appearance settings" msgstr "Opšte osobine relacija" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 #, fuzzy #| msgid "General relation features" msgid "More settings" msgstr "Opšte osobine relacija" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Databases" msgid "Database server" msgstr "Baze" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 #, fuzzy msgid "Server:" msgstr "Server" -#: index.php:295 +#: index.php:296 #, fuzzy msgid "Server type:" msgstr "Izbor servera" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -685,94 +685,94 @@ msgstr "Izbor servera" msgid "Server version:" msgstr "Verzija servera" -#: index.php:305 +#: index.php:306 #, fuzzy msgid "Protocol version:" msgstr "Verzija servera" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Korisnik" -#: index.php:314 +#: index.php:315 #, fuzzy msgid "Server charset:" msgstr "Izbor servera" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "" -#: index.php:338 +#: index.php:339 #, fuzzy #| msgid "Database comment" msgid "Database client version:" msgstr "Komentar baze:" -#: index.php:342 +#: index.php:343 #, fuzzy msgid "PHP extension:" msgstr "verzija PHP-a" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "verzija PHP-a" -#: index.php:377 +#: index.php:378 #, fuzzy msgid "Version information:" msgstr "Podatci o prijavi" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacija" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "phpMyAdmin veb sajt" -#: index.php:402 +#: index.php:403 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributi" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Nema izmjena" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 "" -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -780,21 +780,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -802,7 +802,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -814,19 +814,19 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1007,7 +1007,7 @@ msgid "Save & close" msgstr "Sačuvaj kao datoteku" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Resetuj" @@ -1047,7 +1047,7 @@ msgstr "Dodaj novo polje" msgid "Edit index" msgstr "Ključ" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Dodaj novo polje" @@ -1081,10 +1081,10 @@ msgstr "Dodaj novo polje" msgid "You have to add at least one column." msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "u upitu" msgid "Matched rows:" msgstr "Sub" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1121,13 +1121,13 @@ msgstr "Ime hosta je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -1137,8 +1137,8 @@ msgstr "Lozinke nisu identične!" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "" @@ -1165,19 +1165,19 @@ msgstr "Red je obrisan" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1294,40 +1294,40 @@ msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "bajta" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1347,7 +1347,7 @@ msgstr "Operacije" msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" @@ -1363,16 +1363,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "nema" @@ -1569,20 +1569,20 @@ msgstr "" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Vrijeme" @@ -1680,10 +1680,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 #, fuzzy msgid "Import" @@ -1765,7 +1765,7 @@ msgstr "Dodaj novo polje" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" @@ -1813,8 +1813,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." @@ -1859,7 +1859,7 @@ msgstr "Baza ne postoji" msgid "Changing charset" msgstr "Karakter set" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "" @@ -1895,74 +1895,80 @@ msgstr "Pregled" msgid "Deleting" msgstr "Brišem %s" -#: js/messages.php:391 +#: js/messages.php:388 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Prikaz podataka tabele" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Izvoz" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Broj redova po strani" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1970,106 +1976,106 @@ msgstr "SQL upit" msgid "Edit" msgstr "Promeni" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Obriši" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Promjenljiva" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pretraživanje baze" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Osnovni ključ je upravo dodan %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Promijeni" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2077,298 +2083,298 @@ msgstr "" msgid "End of step" msgstr "Na kraju tabele" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pretraživanje" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Imena kolona" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Imena kolona" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/obriši kolonu" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Sadržaj" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Dodaj novog korisnika" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Linije se završavaju sa" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Izaberi sve" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Izaberi sve" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2376,237 +2382,237 @@ msgstr "Izaberi sve" msgid "Open page" msgstr "Zauzeće" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Izaberi sve" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relaciona shema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Broj redova po strani" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Pošalji" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Imena kolona" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Linije se završavaju sa" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Uvoz fajlova" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Štampaj" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Baza ne postoji" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Imena kolona" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dodaj novo polje" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Prikaži mrežu" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2614,121 +2620,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "Izbor servera" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "Izbor servera" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opšte osobine relacija" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "Prikaži tabele" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2737,37 +2743,57 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy msgid "Copy tables to" msgstr "Baza ne postoji" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Dodaj novo polje" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2775,96 +2801,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "maj" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2872,78 +2898,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2951,201 +2977,201 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Izaberite bazu" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Greška" @@ -3206,20 +3232,20 @@ msgid "Charset" msgstr "Karakter set" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Sortiranje" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binarni" @@ -3420,7 +3446,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nepoznat" @@ -3470,7 +3496,7 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3478,46 +3504,46 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Pretraživanje" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL upit" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Add new field" msgid "Missing connection parameters!" msgstr "Dodaj novo polje" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3629,67 +3655,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Izvrši SQL upit" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Pretraživanje" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Pretraživanje" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Pretraživanje" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Search" msgid "Update bookmark" msgstr "Pretraživanje" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Pretraživanje" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "bar jednu od riječi" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "sve riječi" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "tačan izraz" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "kao regularni izraz" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3697,7 +3723,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodaka" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3705,53 +3731,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Pregled" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Prikaz podataka tabele" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Pretraživanje baze" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Traži:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Riječi se odvajaju razmakom (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tabela:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ništa" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -3778,16 +3798,16 @@ msgstr "Polja" msgid "Search this table" msgstr "Pretraživanje baze" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3796,8 +3816,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3806,8 +3826,8 @@ msgctxt "Next page" msgid "Next" msgstr "Slijedeći" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3818,7 +3838,7 @@ msgstr "Kraj" msgid "All" msgstr "Sve" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3829,8 +3849,8 @@ msgstr "Broj redova po strani" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3852,10 +3872,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "Operacije" @@ -3905,109 +3925,109 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Red je obrisan" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL upit je uspešno izvršen" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ukupno" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Označi sve" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Veza nije pronađena" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4015,7 +4035,7 @@ msgid "None" msgstr "nema" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4023,102 +4043,102 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy msgid "Report" msgstr "Izvoz" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy msgid "Automatically send report next time" msgstr "Verzija servera" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Datoteku nije moguće pročitati" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy msgid "Git information missing!" msgstr "Podatci o prijavi" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Za štampu" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4129,20 +4149,20 @@ msgid "No index defined!" msgstr "Ključ nije definisan!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4152,31 +4172,31 @@ msgstr "Ključevi" msgid "Action" msgstr "Akcija" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4184,47 +4204,47 @@ msgstr "Kardinalnost" msgid "Comment" msgstr "Komentari" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primarni ključ je obrisan." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Ključ %s je obrisan." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Odbaci" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Broj strane:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4248,11 +4268,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4271,14 +4291,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4287,8 +4308,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4296,45 +4317,45 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Pretraživanje" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4350,16 +4371,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4367,22 +4388,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dodaj/obriši kolonu" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Baze" @@ -4393,13 +4414,13 @@ msgid "User accounts" msgstr "Korisnik" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Binarni" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4407,41 +4428,41 @@ msgid "Replication" msgstr "Relacije" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Promjenljive" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4505,29 +4526,29 @@ msgstr "Promjenljive" msgid "Favorites" msgstr "Promjenljive" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Korisnik %s već postoji!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Allows reading data." msgid "Error while loading the search." @@ -4595,7 +4616,7 @@ msgstr "Prikaži tabele" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4652,82 +4673,82 @@ msgid_plural "%d minutes" msgstr[0] "se koristi" msgstr[1] "se koristi" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "Prikaži tabele" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy msgid "Invalid database:" msgstr "Baza ne postoji" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "Unutar tabela:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Verzija servera" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promjenjeno ime u %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4735,19 +4756,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnog ključa mora da bude PRIMARY!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Dijelovi ključa nisu definisani!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5017,7 +5038,7 @@ msgid "Date and time" msgstr "Napravi novi ključ" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5036,70 +5057,70 @@ msgstr "Ukupno" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "bez PHP koda" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izvrši SQL upit" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Napravi PHP kod" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5107,66 +5128,66 @@ msgid "Edit inline" msgstr "Dodaj novo polje" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Dodaj novo polje" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Pređi na bazu \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Direkcija koju ste izabrali za slanje nije dostupna." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5182,7 +5203,7 @@ msgstr "u minuti" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "na sat" @@ -5190,14 +5211,14 @@ msgstr "na sat" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Pretraživanje" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5205,7 +5226,7 @@ msgstr "Pretraživanje" msgid "Description" msgstr "Opis" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Koristi ovu vrijednost" @@ -5245,22 +5266,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Ime" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Dužina/Vrijednost*" @@ -5271,7 +5292,7 @@ msgstr "Dužina/Vrijednost*" msgid "Attribute" msgstr "Atributi" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5293,12 +5314,12 @@ msgstr "Dodaj novo polje" msgid "Select a column." msgstr "Dodaj/obriši kolonu" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy msgid "Add new column" msgstr "Dodaj novo polje" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5306,34 +5327,34 @@ msgstr "Dodaj novo polje" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5341,20 +5362,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5911,7 +5932,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6023,13 +6044,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Ime" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Sačuvaj kao datoteku" @@ -6040,7 +6061,7 @@ msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6186,7 +6207,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće fajlove" @@ -6202,7 +6223,7 @@ msgid "Remember file name template" msgstr "Šablon imena datoteke" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" @@ -6213,7 +6234,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6246,7 +6267,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -6425,7 +6446,7 @@ msgid "Customize the navigation tree." msgstr "Opcije za izvoz baze" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 #, fuzzy msgid "Servers" msgstr "Server" @@ -7328,7 +7349,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8015,7 +8036,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8023,10 +8044,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8172,24 +8193,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentacija" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Polje %s je obrisano" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8204,13 +8225,13 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 #, fuzzy msgid "Event type" msgstr "Vrsta upita" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 #, fuzzy msgid "Server ID" msgstr "Server" @@ -8220,7 +8241,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 #, fuzzy msgid "Information" msgstr "Podatci o prijavi" @@ -8235,16 +8256,16 @@ msgstr "Prikaži skraćene upite" msgid "Show Full Queries" msgstr "Prikaži kompletne upite" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Baza ne postoji" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8252,26 +8273,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s baza je uspješno odbačena." msgstr[1] "%s baza je uspješno odbačena." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Redova" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Ukupno" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Prekoračenje" @@ -8301,35 +8322,35 @@ msgstr "" msgid "Enable statistics" msgstr "Uključi statistike" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Serverske promenljive i podešavanja" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Baza ne postoji" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "Izabrani korisnici su uspješno obrisani." @@ -8385,7 +8406,7 @@ msgstr "Izabrani korisnici su uspješno obrisani." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8404,12 +8425,12 @@ msgstr "Promijeni" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Ključ" @@ -8431,13 +8452,13 @@ msgstr "Tekst ključ" msgid "Distinct values" msgstr "Pregledaj strane vrijednosti" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmjena" @@ -8457,202 +8478,206 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Lozinka:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Ponovite unos" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "Lozinka:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Napravi novu tabelu u bazi %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Napravi novu tabelu u bazi %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Nema tabela" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Šablon imena datoteke" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "User name" msgid "Template name" msgstr "Ime korisnika" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Napravi" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Šablon imena datoteke" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s tabela" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Ažuriraj upit" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Izaberi tabele" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export" msgid "Export method:" msgstr "Izvoz" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Baze" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tabele" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Format" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Opcije transformacije" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Redova" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Sačuvaj na server u direktorijum %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Šablon imena datoteke" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8660,124 +8685,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Karakter set datoteke:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Kompresija" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zipovano\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzip-ovano\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Sačuvaj kao datoteku" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Napravi novu tabelu u bazi %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Sačuvaj kao datoteku" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Izaberi tabele" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Izaberi tabele" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "Baza podataka" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Nema tabela" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Imena kolona" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Imena kolona" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Verzija servera" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Verzija servera" @@ -9184,13 +9209,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9198,75 +9223,75 @@ msgstr "" "Datoteka %s već postoji na serveru, promijenite ime datoteke ili uključite " "opciju prepisivanja." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9278,91 +9303,92 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcija" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ili" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direkcija za slanje web servera" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Novi zapis" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9373,31 +9399,31 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Samo struktura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktura i podatci" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Samo podaci" @@ -9408,14 +9434,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9473,8 +9499,8 @@ msgstr "Procesi" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Prikaži" @@ -9520,19 +9546,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Sačuvaj kao datoteku" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9547,7 +9573,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Dodaj novo polje" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9570,7 +9596,7 @@ msgstr "" msgid "Database operations" msgstr "Opcije za izvoz baze" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9674,13 +9700,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Dodaj/obriši kolonu" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9929,8 +9955,8 @@ msgid "Rename database to" msgstr "Promjeni ime tabele u " #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9980,83 +10006,83 @@ msgstr "(po jednom polju)" msgid "Move table to (database.table)" msgstr "Pomjeri tabelu u (baza.tabela)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Promjeni ime tabele u" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentari tabele" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opcije tabele" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopiraj tabelu u (baza.tabela)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Provjeri tabelu" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Provjeri tabelu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s je osvežena." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Osvježi tabelu (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Popravi tabelu" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10064,106 +10090,106 @@ msgstr "Popravi tabelu" msgid "Delete data or table" msgstr "Prikaz podataka tabele" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Baza ne postoji" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "Češki" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Nema tabela" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Ne mogu da premjestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s je pomjerena u %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomjerena u %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10192,25 +10218,25 @@ msgstr "Prikaži boju" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10222,7 +10248,7 @@ msgstr "" "php i uvjerite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10249,15 +10275,15 @@ msgstr "Korisničko ime:" msgid "Server Choice:" msgstr "Izbor servera" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10331,7 +10357,7 @@ msgstr "Opcije za izvoz baze" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10340,7 +10366,7 @@ msgstr "Prikaz podataka tabele" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "Poslato" @@ -10349,8 +10375,8 @@ msgstr "Poslato" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10453,7 +10479,7 @@ msgstr "Stavi imena polja u prvi red" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11018,7 +11044,7 @@ msgstr "Sadržaj" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Dodatno" @@ -11415,57 +11441,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "nema opisa" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11474,317 +11500,317 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "Konekcije" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo struktura" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo struktura" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Lozinka" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Sortiranje" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Promjenljiva" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Bilo koji host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ponovite unos" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Change password" msgid "Generate password:" msgstr "Promeni lozinku" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Greška" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Privilegije su uspešno ponovo učitane." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11806,7 +11832,7 @@ msgstr "Tabela %s je odbačena" msgid "Event %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11816,84 +11842,84 @@ msgstr "" msgid "Edit event" msgstr "Poslato" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy msgid "Event name" msgstr "Vrsta upita" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Promijeni" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Izvrši upamćen upit" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Status" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Kraj" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -11916,7 +11942,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -11930,134 +11956,134 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Imena kolona" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Napravljeno" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dodaj novo polje" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy msgid "Remove last parameter" msgstr "Promjeni ime tabele u " -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dužina/Vrijednost*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12065,13 +12091,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12095,36 +12121,36 @@ msgstr "Tabela %s je odbačena" msgid "Edit trigger" msgstr "Dodaj novog korisnika" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Ime korisnika" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Vrijeme" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12259,91 +12285,91 @@ msgstr "Karakter setovi i sortiranje" msgid "Databases statistics" msgstr "Statistika baze" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Nema privilegija." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12353,136 +12379,108 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "nema" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "Konekcije" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "Konekcije" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ograničenja resursa" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12490,403 +12488,382 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" msgid "Routine" msgstr "Dodaj novo polje" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy msgid "Allows executing this routine." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administracija" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globalne privilegije" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "globalno" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Promeni lozinku" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Dokumentacija" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Podatci o prijavi" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Ime korisnika" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Imena kolona" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Lozinka:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Bilo koji korisnik" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Opcije za izvoz baze" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Provjeri privilegije za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy msgid "User has been added." msgstr "Polje %s je obrisano" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "Džoker" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Ukloni izabrane korisnike" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Odbaci baze koje se zovu isto kao korisnici." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12899,7 +12876,7 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12918,11 +12895,11 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -13218,12 +13195,12 @@ msgstr "Naredba" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "Prikaži tabele" @@ -13251,12 +13228,12 @@ msgstr "u minuti" msgid "per second:" msgstr "u sekundi" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13286,34 +13263,34 @@ msgstr "Prikaži tabele" msgid "Related links:" msgstr "Relacije" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13321,78 +13298,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13400,7 +13377,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13408,42 +13385,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13451,33 +13428,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13486,243 +13463,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakter set datoteke:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13730,99 +13707,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13830,18 +13807,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13849,12 +13826,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vrsta upita" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13891,48 +13868,48 @@ msgstr "Baze" msgid "Table level tabs" msgstr "Komentari tabele" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "Bilo koji korisnik" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Bilo koji korisnik" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Nema privilegija." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Imena kolona" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Verzija servera" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Baze" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14040,7 +14017,7 @@ msgstr "Izvrši SQL upit(e) na bazi %s" msgid "Run SQL query/queries on table %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -14131,106 +14108,106 @@ msgstr "" msgid "Version" msgstr "verzija PHP-a" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Kreirano" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Verzija servera" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dozvoljava umetanje i zamjenu podataka." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza ne postoji" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Podaci" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14238,78 +14215,78 @@ msgctxt "None for default" msgid "None" msgstr "nema" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Verzija servera" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Dozvoljava umetanje i zamjenu podataka." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Verzije" @@ -14319,7 +14296,7 @@ msgstr "Verzije" msgid "Manage your settings" msgstr "Opšte osobine relacija" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14345,7 +14322,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14353,84 +14330,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin dokumentacija" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Uvoz fajlova" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Sačuvaj kao datoteku" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14438,46 +14415,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nema privilegija" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspješno prekinut." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14485,103 +14462,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Izmjene su sačuvane" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Izmjene su sačuvane" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Lokalni" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin dokumentacija" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14619,28 +14595,28 @@ msgstr "" msgid "Show form" msgstr "Prikaži boju" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14655,12 +14631,12 @@ msgstr "Baza ne postoji" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Korisnik %s već postoji!" @@ -14673,35 +14649,35 @@ msgstr "Prikaži sadržaj (shemu) tabele" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No databases selected." msgid "No row selected." msgstr "Nije izabrana ni jedna baza." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No databases selected." msgid "No versions selected." msgstr "Nije izabrana ni jedna baza." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14923,7 +14899,7 @@ msgid "List of available transformations and their options" msgstr "Dostupne transformacije" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14949,7 +14925,7 @@ msgstr "" "primjer '\\\\xyz' ili 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15482,17 +15458,17 @@ msgid "Size" msgstr "Veličina" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Napravljeno" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Posljednja izmjena" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Posljednja provjera" @@ -15527,6 +15503,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Dozvoljava umetanje i zamjenu podataka." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15549,10 +15531,47 @@ msgstr "Dodaj privilegije na slijedećoj tabeli" msgid "Add privileges on the following table:" msgstr "Dodaj privilegije na slijedećoj tabeli" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "nema" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Ukloni izabrane korisnike" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Odbaci baze koje se zovu isto kao korisnici." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ograničenja resursa" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15588,7 +15607,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15776,7 +15795,7 @@ msgstr "Korisnik" msgid "Comment:" msgstr "Komentari" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15810,30 +15829,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add a new User" msgid "+ Add constraint" msgstr "Dodaj novog korisnika" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy msgid "Internal relations" msgstr "Opšte osobine relacija" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy msgid "Internal relation" msgstr "Opšte osobine relacija" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15898,12 +15917,12 @@ msgstr "Linije se završavaju sa" msgid "Replaced string" msgstr "Relacije" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "Relacije" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL upit" @@ -15987,7 +16006,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16019,30 +16038,30 @@ msgstr "Dužina reda" msgid "Index length" msgstr "Dužina reda" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Relations" msgid "Partition table" msgstr "Relacije" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add new field" msgid "Edit partitioning" msgstr "Dodaj novo polje" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Za štampu" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Zauzeće" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektivne" @@ -16071,33 +16090,33 @@ msgstr "Predloži strukturu tabele" msgid "Track view" msgstr "Provjeri tabelu" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Statistike reda" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamički" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Dužina reda" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Veličina reda" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16111,52 +16130,52 @@ msgstr "Tabela %s je odbačena" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Dostupni MIME-tipovi" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Dostupne transformacije" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Dostupne transformacije" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "Promijeni" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovdje!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil je promjenjen." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -16229,7 +16248,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16253,19 +16272,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Nije izabrana ni jedna baza." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16321,27 +16340,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "Tabela %s je odbačena" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Šablon imena datoteke" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16358,10 +16377,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Na početku tabele" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16405,7 +16430,7 @@ msgstr "" msgid "strict error" msgstr "Vrsta upita" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17533,6 +17558,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Dokumentacija" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/ca.po b/po/ca.po index bd595efcb5..0d4eb86165 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:31+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Catalan " -"\n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,31 +27,31 @@ msgstr "" "L'arxiu %s no es troba en aquest sistema, si us plau, visita www.phpmyadmin." "net per a més informació." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "La llista central de columnes per la base de dades actual està buida." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Clica per classificar." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Mostrant registres %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Comentaris de la base de dades" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Comentaris de la taula:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -63,13 +63,13 @@ msgstr "Comentaris de la taula:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -80,9 +80,9 @@ msgstr "Comentaris de la taula:" msgid "Column" msgstr "Columna" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -93,12 +93,12 @@ msgstr "Columna" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -110,9 +110,9 @@ msgstr "Columna" msgid "Type" msgstr "Tipus" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -123,15 +123,15 @@ msgstr "Tipus" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nul" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -142,14 +142,14 @@ msgstr "Nul" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Defecte" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -159,7 +159,7 @@ msgstr "Defecte" msgid "Links to" msgstr "Enllaços a" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -173,19 +173,19 @@ msgstr "Enllaços a" msgid "Comments" msgstr "Comentaris" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Principal" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -193,13 +193,13 @@ msgstr "Principal" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -207,17 +207,17 @@ msgstr "Principal" msgid "No" msgstr "No" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -226,13 +226,13 @@ msgstr "No" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -244,15 +244,15 @@ msgstr "Si" msgid "View dump (schema) of database" msgstr "Veure el bolcat (esquema) de la base de dades" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Base de dades sense taules." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -261,8 +261,8 @@ msgid "Tables" msgstr "Taules" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -270,10 +270,10 @@ msgstr "Taules" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,27 +286,27 @@ msgstr "Estructura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Dades" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Selecciona-ho tot" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "S'ha reanomenat la base de dades %1$s a %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "S'ha copiat la base de dades %1$s a %2$s." @@ -319,27 +319,27 @@ msgstr "" "S'ha desactivat l'emmagatzemament de la configuració de phpMyAdmin. " "%sConsulta el motiu%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Has de triar al menys una columna per mostrar!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Canviar al %sconstructor visual%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Accés denegat!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Les dades de seguiment s'han eliminat correctament." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -347,11 +347,11 @@ msgstr "" "S'ha creat la versió %1$s de les taules seleccionades, el seu seguiment està " "actiu." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "No s'han triat taules." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Registre de la base de dades" @@ -392,131 +392,131 @@ msgstr "Tipus incorrecte!" msgid "Bad parameters!" msgstr "Paràmetres incorrectes!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor per la columna \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilitzar OpenStreetMaps com a capa base" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punt:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punt %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Afegir un punt" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Cadena de línies %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Cercle exterior:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Cercle interior %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Afegeix una cadena de línies" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Afegeix un cercle interior" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polígon %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Afegeix un polígon" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Afegir geometria" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Executa" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Sortida" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -524,19 +524,19 @@ msgstr "" "Tria \"GeomFromText\" de la columna \"Funció\" i enganxa la cadena següent " "al camp \"Valor\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Amb èxit" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Fallit" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Paràmetres incomplets" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -545,15 +545,15 @@ msgstr "" "Probablement has triat d'enviar un arxiu que és massa gran. Consulta la " "%sdocumentació%s per trobar formes de modificar aquest límit." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:489 +#: import.php:486 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 " @@ -563,24 +563,24 @@ msgstr "" "o el tamany de l'arxiu es més gran que el permès per la configuració del " "vostre PHP. Veieu [doc@faq1-16]PFC(FAQ) 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "%s creat com a Consulta desada." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importació finalitzada correctament, %d consulta executada." msgstr[1] "Importació finalitzada correctament, %d consultes executades." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -590,7 +590,7 @@ msgstr "" "l'importació %storneu a enviar el mateix arxiu%s a importar i el procés " "continuarà." -#: import.php:632 +#: import.php:629 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." @@ -599,7 +599,7 @@ msgstr "" "indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que " "incrementeu els límits de temps de php." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." @@ -607,17 +607,17 @@ msgstr "Instrucció \"DROP DATABASE\" desactivada." msgid "Could not load the progress of the import." msgstr "No es pot carregar la progressió en la importació." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Enrere" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Servidor de demostració de phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -628,107 +628,107 @@ msgstr "" "però sisplau no modifiquis els usuaris root, debian-sys-maint i pma. Més " "informació disponible a %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Paràmetres generals" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Canvi de contrasenya" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Ordenació de la connexió del servidor" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Paràmetres d'aparença" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Més paràmetres" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Servidor de base de dades" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Servidor:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Tipus de servidor:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Versió del servidor:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Versió del protocol:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Usuari:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Joc de caràcters del servidor:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Servidor web" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Versió del client de base de dades:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Extensió PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "versió de PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Informació de la versió:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentació" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Pàgina oficial del phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Contribueix" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Obtenir suport" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Llista de canvis" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licència" -#: index.php:443 +#: index.php:444 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 " @@ -738,7 +738,7 @@ msgstr "" "de caràcters multibyte. Sense l'extensió -mbstring-, phpMyAdmin és incapaç " "de dividir cadenes de text correctament i pot generar resultats inesperats." -#: index.php:458 +#: index.php:459 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." @@ -747,7 +747,7 @@ msgstr "" "a aixó, s'han desactivat algunes caracteristiques, com l'informe d'errors o " "la comprovació de la versió." -#: index.php:473 +#: index.php:474 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 " @@ -760,7 +760,7 @@ msgstr "" "degut a aixó, la vostra conenexió podria caducar abans de l'establert a " "phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -769,18 +769,18 @@ msgstr "" "configuració a phpMyAdmin, degut a aixó, la teva sessió caducarà més aviat " "que el que indica la configuració de phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "L'arxiu de configuració necessita ara una frase de pas secreta " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "La frase de pas secreta a la configuració (blowfish_secret) és massa curta." -#: index.php:528 +#: index.php:529 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 " @@ -793,7 +793,7 @@ msgstr "" "seguretat del teu servidor pot estar compromesa per la descàrrega de la " "configuració per part de persones no autoritzades." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -803,14 +803,14 @@ msgstr "" "completa, s'han desactivat algunes característiques avançades. %sConsulta el " "motiu%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "O alternativament anar a la pestanya \"Operacions\" de qualsevol base de " "dades per configurar-lo allà." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -819,7 +819,7 @@ msgstr "" "La teva llibreria MySQL de PHP MySQL versió %s és diferent del teu servidor " "MySQL versió %s. Aixó pot provocar comportaments inesperats." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -988,7 +988,7 @@ msgid "Save & close" msgstr "Desa i tanca" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Reinicia" @@ -1020,7 +1020,7 @@ msgstr "Afegir índex" msgid "Edit index" msgstr "Editar índex" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Afegeix %s columna(es) a l'index" @@ -1045,10 +1045,10 @@ msgstr "Tria columna(es) per a l'índex." msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Vista prèvia de l'SQL" @@ -1060,7 +1060,7 @@ msgstr "Simulació de consulta" msgid "Matched rows:" msgstr "Files coincidents:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Consulta SQL:" @@ -1077,13 +1077,13 @@ msgstr "El nom del servidor és buit!" msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" @@ -1091,8 +1091,8 @@ msgstr "Les contrasenyes no coincideixen!" msgid "Removing Selected Users" msgstr "Treu els usuaris triats" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Tanca" @@ -1114,19 +1114,19 @@ msgstr "S'ha esborrat la plantilla." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1233,40 +1233,40 @@ msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1284,7 +1284,7 @@ msgstr "Consultes" msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configuració" @@ -1298,16 +1298,16 @@ msgid "Please add at least one variable to the series!" msgstr "Afegeix al menys una variable a les series!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Res" @@ -1506,20 +1506,20 @@ msgstr "Analitzant…" msgid "Explain output" msgstr "Explicar sortida" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Estat" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Temps" @@ -1608,10 +1608,10 @@ msgstr "" "Restablint la configuració per defecte…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importa" @@ -1684,7 +1684,7 @@ msgstr "No s'han trobat paràmetres!" msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Configuració de la pàgina relacionada" @@ -1724,8 +1724,8 @@ msgid "Error text: %s" msgstr "Text de l'error: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "No s'han triat bases de dades." @@ -1763,7 +1763,7 @@ msgstr "Copiant base de dades" msgid "Changing charset" msgstr "Canviant de joc de caràcters" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Activa les comprovacions de claus externes" @@ -1791,72 +1791,77 @@ msgstr "Navegant" msgid "Deleting" msgstr "Esborrant" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Esborrar les coincidències per a la taula %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "La definició d'una funció enmagatzemada ha d'incloure una instrucció RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exporta" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "editor de ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Valors per la columna %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Valors per la nova columna" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Entra cada valor en un camp separat." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Afegir %d valors" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Nota: Si l'arxiu conté múltiples taules, es combinaran en una." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Amagar quadre de consultes" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Mostrar quadre de consultes" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1864,53 +1869,53 @@ msgstr "Mostrar quadre de consultes" msgid "Edit" msgstr "Edita" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Esborra" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Navega valors externs" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Cap consulta desada automàticament" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Triar" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Selector de columnes" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Cerca a aquesta llista" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1920,15 +1925,15 @@ msgstr "" "columnes per a la base de dades %s tingui columnes que no estiguin a la " "taula actual." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Veure més" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Estàs segur?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1936,51 +1941,51 @@ msgstr "" "Aquesta acció pot canviar la definició d'algunes columnes.
Estàs segur " "de voler continuar?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continua" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Afegir clau principal" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "S'ha afegit una clau principal." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Portant-te al següent pas…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "S'ha completat el primer pas de la normalització per a la taula '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fi de pas" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Segon pas de normalització (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Fet" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirmar dependències parcials" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Les dependències parcials seleccionades són:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1988,20 +1993,20 @@ msgstr "" "Nota: a, b -> d, f implica que els valors combinats de les columnes a i b " "poden determinar el valor de les columnes d i f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "No s'han triat dependències parcials!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostra'm les possibles dependències parcials basades en les dades de la taula" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Amaga la llista de dependències parcials" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2009,180 +2014,180 @@ msgstr "" "Paciència! Pot tardar uns segons, depenent de la mida de les dades i de la " "quantitat de columnes de la taula." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Pas" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Les següents accions es faràn:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnes %s de la taula %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Crea la següent taula" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tercer pas de la normalització (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Confirmar dependències transitives" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Les dependències seleccionades són:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "No s'han triat dependències!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Desa" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Amaga el criteri de cerca" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Interval de cerca" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Màxim de columna:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Mínim de columna:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valor mínim:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valor màxim:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Amaga el criteri de cerca i reemplaça" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Mostrar el criteri de cerca i reemplaça" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Cada punt representa una fila de dades." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Situant el cursor sobre un punt es mostrarà la seva etiqueta." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Per acostar, selecciona una secció del gràfic amb el ratolí." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Feu clic al botó de restaurar ampliació per tornar a l'estat original." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Prem en un punt de dades per veure i possiblement editar la fila de dades." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "El gràfic es pot re-dimensionar arrossegant la cantonada inferior dreta." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "selecciona dues columnes" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Selecciona dues columnes diferents" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Contingut del punter de dades" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Còpia" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Cadena de línies" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polígon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Cercle interior" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Cercle exterior" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Vols copiar la clau de xifratge?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Clau d'encriptació" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2190,24 +2195,24 @@ msgstr "" "Indica que has fet canvis en aquesta pàgina; se't preguntarà per la teva " "confirmació abans d'abandonar els canvis" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Tria la clau principal o una clau única!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Tria la columna a mostrar" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2215,76 +2220,76 @@ msgstr "" "No has desat els canvis en el disseny. Es perdran si no els deses. Vols " "continuar?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nom de pàgina" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Desa la pàgina" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Desa la pàgina com" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Obre la pàgina" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "esborra la pàgina" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sense títol" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Tria una pàgina per continuar" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Entra un nom de pàgina vàlid" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Vols desar els canvis a la pàgina actual?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Pàgina esborrada correctament" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exporta l'esquema relacional" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Afegeix una opció per a la columna \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objecte(s) creat(s)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Envia" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Prem la tecla escape per cancel·lar la edició." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2292,15 +2297,15 @@ msgstr "" "Has editat algunes dades i no s'han desat. Estàs segur que vols sortir " "d'aquesta pàgina per desar les dades?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Arrossega per reordenar." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Cliqueu per ordenar els resultats segons aquest columna." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2311,28 +2316,28 @@ msgstr "" "o Alt mentre cliqueu (Mac: Majúscules i Option mentre cliqueu) per treure " "aquesta columna de la clàusula «ORDER BY»" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Prem per marcar/desmarcar." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Feu doble clic per copiar el nom de columna." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Prem a la fletxa de llista desplegable
per alternar la visibilitat de " "la columna." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Mostra tot" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2341,13 +2346,13 @@ msgstr "" "l'edició de quadrícula, checkbox, Editar, Copiar i Esborrar enllaços poden " "no funcionar després de desar." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Introdueix una cadena hexadecimal correcta. Els caracters vàlids són 0-9 i A-" "F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2355,102 +2360,102 @@ msgstr "" "De veritat vols veure totes les files? Una taula gran pot fer fallar el " "navegador." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Longitud inicial" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "Cancel.lar" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avortat" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Correcte" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importar l'estat" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Deixa anar els arxius aquí" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Tria primer la base de dades" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimeix" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "També pots editar més valors
fent doble-clic en el seu contingut." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "També pots editar la majoria dels valors
prement directament en el seu " "contingut." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Vés a l'enllaç:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copia el nom de la columna." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Feu clic amb el botó dret al nom de la columna per copiar al porta-retalls." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Genera" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Més" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Mostra el panell" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Amagar el panell" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Mostra l'arbre d'ítems amagat." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Enllaç amb el panell principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Desenllaça amb el panell principal" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "No s'ha trobat la pàgina demanada a l'historial, pot haver caducat." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2460,42 +2465,42 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "actualitzat" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Crea una vista" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Enviar informe d'error" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Presentar informe d'error" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "S'ha produït un error fatal de JavaScript. Vols enviar un informe d'errors?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Canviar les configuracions de l'informe" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Mostra el detall de l'informe" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2503,7 +2508,7 @@ msgstr "" "La vostra exportació és incomplerta degut al límit de temps d'execució massa " "baix a nivell de PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2512,59 +2517,59 @@ msgstr "" "Avís: un formulari d'aquesta pàgina té més de %d camps. En enviar-lo es " "poden ignorar alguns camps donada la configuració «max_input_vars» de PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Detectats alguns errors al servidor!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Mira al peu d'aquesta finestra." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignora tot" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Un moment, s'estan enviant en aquest moment degut a la teva configuració." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Executar aquesta consulta de nou?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Realment vols esborrar aquesta marca?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "S'ha produït algun error en obtenir informació de depuració SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultes executades %s vegades en %s segons." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(s) correctes" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Mostra els arguments" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Amaga els arguments" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Temps dedicat:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2580,349 +2585,369 @@ msgstr "" "connexió\" podria ajudar. En Safari, tal problema és generalment causat pel " "\"Mode Privat de Navegació\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Còpia taules a" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Afegir prefix de taula" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Reemplaçar taula amb prefix" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia la taula amb prefix" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Mes anterior" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Mes següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Avui" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Gener" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Febrer" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Març" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Abril" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maig" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Juny" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Juliol" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Agost" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Setembre" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Octubre" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembre" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Des" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Divendres" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Se" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendari-mes-any" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "Sufix de l'any" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hora" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minut" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Segon" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Aquest camp és obligatori" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Corregeix aquest camp" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Entra una adreça de correu electrònic vàlida" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Entra una URL vàlida" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Entra una data vàlida" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Entra una data vàlida (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Entra un numero vàlid" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Entra un numero vàlid de targeta de crèdit" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Entra només digits" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Entra el mateix valor un altre cop" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Entra no més de {0} caracters" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Entra al menys {0} caracters" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Entra un valor de entre {0} i {1} caracters de mida" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Entra un valor entre {0} i {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Entra un valor menor o igual a {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Entra un valor més gran o igual a {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Entra una hora o data vàlida" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Entra valor HEX correcte" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Error" @@ -2987,20 +3012,20 @@ msgid "Charset" msgstr "Joc de caràcters" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Ordenació" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binari" @@ -3195,7 +3220,7 @@ msgid "Czech-Slovak" msgstr "Txec-Eslovac" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "desconegut" @@ -3243,26 +3268,26 @@ msgstr "" msgid "Font size" msgstr "Tamany de lletra" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Mostrant %1$d favorit (privat i compartit)" msgstr[1] "Mostrant %1$d favorits (privats i compartits)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Sense relacions desades" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Consola de consultes SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "No es pot establir el joc de caracters de connexió configurat!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3270,25 +3295,25 @@ msgstr "" "El servidor no està responent (o el sòcol del servidor local MySQL no està " "configurat correctament)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "El servidor no respon." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Comprova els permisos del directori que conté la base de dades." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalls…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Falta paràmetre:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexió de l'usuari de control ha fallat, tal com està definida ara a la " @@ -3384,110 +3409,105 @@ msgstr "Afegir:" msgid "Del:" msgstr "Esborrar:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL a la base de dades %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Executa consulta" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Cerca de consultes desades:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nova consulta desada" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Crear consulta desada" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Actualitzar consulta desada" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Esborrar consultab desada" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "al menys una d'aquestes paraules" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "totes les paraules" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "la frase exacta" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "com a expressió regular" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultats de la recerca per a \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultat" msgstr[1] "Total: %s resultats" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s resultat a %2$s" msgstr[1] "%1$s resultats a %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Navega" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Esborrar les coincidències per a la taula %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Cerca a la base de dades" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paraules o valors a cercar (comodí: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Trobat:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Paraules separades per un espai (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Dins les taules:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Desmarca tot" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Dins la columna:" @@ -3507,30 +3527,30 @@ msgstr "Filtrar files" msgid "Search this table" msgstr "Cerca aquesta taula" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Inici" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Pàgina anterior" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Pàgina següent" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Darrera pàgina" @@ -3539,7 +3559,7 @@ msgstr "Darrera pàgina" msgid "All" msgstr "Tot" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Nombre de files:" @@ -3548,8 +3568,8 @@ msgstr "Nombre de files:" msgid "Sort by key" msgstr "Classifica per la clau" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3571,10 +3591,10 @@ msgstr "Classifica per la clau" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opcions" @@ -3614,29 +3634,29 @@ msgstr "Text conegut" msgid "Well Known Binary" msgstr "Binari conegut" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "S'ha esborrat la fila." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Finalitzar" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Pot ser aproximat. Veieu [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "La vostra comanda SQL ha estat executada amb èxit." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3644,73 +3664,73 @@ msgid "" msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostrant registres %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d en total, %2$d a la consulta" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "La consulta tarda %01.4f segons." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Amb marca:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Marcar-ho tot" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copiar al porta-retalls" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualitzar dades GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "No s'ha trobat l'enllaç!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Cap" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Converteix a Kana" @@ -3718,24 +3738,24 @@ msgstr "Converteix a Kana" msgid "Too many error messages, some are not displayed." msgstr "Masses missatges d'error, alguns no es mostren." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Informe" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Enviar informe automàticament la propera vegada" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "L'arxiu no ha estat pujat." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3743,47 +3763,47 @@ msgstr "" "El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al " "formulari HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Només s'ha pujat parcialment l'arxiu." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "No es troba la carpeta temporal." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Error en gravar l'arxiu al disc." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Pujada de l'arxiu aturada per l'extensió." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "L'arxiu és un enllaç simbòlic" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "No es pot llegir l'arxiu!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Error movent l'arxiu pujat, consulta la [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Error moven l'arxiu pujat." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "No es pot llegir l'arxiu pujat." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3792,28 +3812,28 @@ msgstr "" "S'intenta carregar un arxiu amb una compresió no suportada (%s). O bé aquest " "suport no s'ha implementat encara o bé el teniu desactivat a la configuració." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "S'està executant la revisió Git %1$s de la branca %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "No es troba la informació de Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Obrir nova finestra de phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Imprimeix vista" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Feu clic a la barra per desplaçar-se al principi d'aquesta pàgina" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "A partir d'aquest punt és necessari tenir el javascript activat!" @@ -3822,20 +3842,20 @@ msgid "No index defined!" msgstr "No s'ha definit l'índex!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indexos" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3845,59 +3865,59 @@ msgstr "Indexos" msgid "Action" msgstr "Acció" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nom de clau" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Única" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalitat" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Comentari" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "S'ha esborrat la clau principal." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "S'ha esborrat l'índex %s." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Elimina" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3906,19 +3926,19 @@ msgstr "" "Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria " "esborrar." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Número de pàgina:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignorant codi d'idioma no suportat." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Idioma" @@ -3944,11 +3964,11 @@ msgstr "Servidor" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3967,14 +3987,15 @@ msgid "View" msgstr "Vista" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3983,8 +4004,8 @@ msgid "Table" msgstr "Taula" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3992,45 +4013,45 @@ msgstr "Taula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Cerca" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Insereix" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Permisos" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacions" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Seguiment" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4046,16 +4067,16 @@ msgstr "Disparadors" msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutines" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4063,20 +4084,20 @@ msgstr "Rutines" msgid "Events" msgstr "Esdeveniments" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dissenyador" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnes centrals" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Bases de dades" @@ -4085,53 +4106,53 @@ msgid "User accounts" msgstr "Comptes d'usuaris" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registre binari" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicació" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motors" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Complements" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d fila afectada." msgstr[1] "%1$d files afectades." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d fila esborrada." msgstr[1] "%1$d files esborrades." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4179,27 +4200,27 @@ msgstr "Taules favorites" msgid "Favorites" msgstr "Favorites" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Proporcioneu un nom per aquesta cerca preferida." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Falta informació per desar la cerca." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Ja existeix una entrada amb aquest nom." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Manca informació per esborrar la cerca." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Manca informació per carregar la cerca." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Error carregant la cerca." @@ -4261,7 +4282,7 @@ msgstr "Mostra taules obertes" msgid "Show slave hosts" msgstr "Mostra servidors esclaus" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Mostra l'estat del mestre -show master status-" @@ -4315,71 +4336,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuts" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "No hi ha informació detallada de l'estat disponible per a aquest motor " "d'emmagatzematge." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s està disponible en aquest servidor MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s s'ha desactivat en aquest servidor MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Estat de taula desconegut:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "No s'ha trobat la base de dades origen `%s`!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "No s'ha trobat la base de dades destí `%s`!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Base de dades incorrecte:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Nom de taula incorrecte:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Error reanomenant la taula %1$s a %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La taula %1$s ha canviat de nom a %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "No s'ha pogut desar la taula de preferències d'interfície!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4388,7 +4409,7 @@ msgstr "" "No s'ha pogut netejar la taula de preferències de la interfície d'usuari " "(vegeu $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4399,19 +4420,19 @@ msgstr "" "no seran persistents després d'actualitzar la pàgina. Comprova si " "l'estructura de la taula ha canviat." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "El nom de la clau principal ha de ser \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "No pots canviar el nom d'un índex a PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "No s'han definit parts de l'índex!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4741,7 +4762,7 @@ msgid "Date and time" msgstr "Data i hora" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Cadena" @@ -4756,127 +4777,127 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Màx: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Anàlisi estàtica:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "s'han trobat %d errors durant l'anàlisi." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analitzar Explain a %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Sense codi PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Executa consulta" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Crea codi PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Refresca" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Perfils" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar línia" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Diu" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Falta paràmetre:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Vés a la base de dades \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Selecciona des del directori de pujada d'arxius del servidor web %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "No està disponible el directori indicat per pujar arxius." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "No hi ha files per pujar!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Buida" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Usuaris" @@ -4890,7 +4911,7 @@ msgstr "per minut" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per hora" @@ -4898,12 +4919,12 @@ msgstr "per hora" msgid "per day" msgstr "per dia" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Cerca:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4911,7 +4932,7 @@ msgstr "Cerca:" msgid "Description" msgstr "Descripció" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Fes servir aquest valor" @@ -4952,22 +4973,22 @@ msgstr "SI" msgid "NO" msgstr "NO" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nom" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Longitud/Valors*" @@ -4976,7 +4997,7 @@ msgstr "Longitud/Valors*" msgid "Attribute" msgstr "Atribut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4993,11 +5014,11 @@ msgstr "Afegeix columna(es)" msgid "Select a column." msgstr "Tria una columna." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Afegir una nova columna" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5005,7 +5026,7 @@ msgstr "Afegir una nova columna" msgid "Attributes" msgstr "Atributs" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5015,27 +5036,27 @@ msgstr "" "PHP. Aquesta opció és incompatible amb phpMyAdmin i pot provocar la perdua " "de dades!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5047,20 +5068,20 @@ msgstr "" "phpMyAdmin fa servir actualment el fus horari per defecte del servidor de " "base de dades." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Error: No coincideix un «token»" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "intent de sobreescriure la variable GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "possible aprofitament" @@ -5652,7 +5673,7 @@ msgid "Compress on the fly" msgstr "Compressió al vol" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Arxiu de configuració" @@ -5763,12 +5784,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Màxim temps d'execució" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Usar l'instrucció %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Desa com a arxiu" @@ -5778,7 +5799,7 @@ msgstr "Joc de caràcters de l'arxiu" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -5903,7 +5924,7 @@ msgid "Save on server" msgstr "Desa al servidor" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Sobreescriu arxiu(s) existent(s)" @@ -5916,7 +5937,7 @@ msgid "Remember file name template" msgstr "Recorda la plantilla del nom d'arxiu" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" @@ -5925,7 +5946,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Usa -backquotes- amb noms de taules i columnes" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" @@ -5957,7 +5978,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Afegeix %s" @@ -6132,7 +6153,7 @@ msgid "Customize the navigation tree." msgstr "Configurar l'arbre de navegació." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servidors" @@ -7042,7 +7063,7 @@ msgstr "Domini HTTP" msgid "Authentication method to use." msgstr "Mètode d'autenticació a usar." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipus d'autenticació" @@ -7791,7 +7812,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Activa la pestanya del Desenvolupador en les opcions" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Comprova la darrera versió" @@ -7801,10 +7822,10 @@ msgstr "" "Activa la comprovació de la darrera versió a la pàgina principal de " "phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Comprovació de versió" @@ -7951,24 +7972,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texte OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "La llista de preferits és plena!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "S'ha buidat la taula %s." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Vista %s esborrada." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "S'ha esborrat la taula %s." @@ -7982,12 +8003,12 @@ msgid "Position" msgstr "Posició" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tipus d'event" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID de Servidor" @@ -7996,7 +8017,7 @@ msgid "Original position" msgstr "Posició original" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informació" @@ -8010,42 +8031,42 @@ msgstr "Talla les consultes mostrades" msgid "Show Full Queries" msgstr "Mostra Consultes completes" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "No hi ha bases de dades" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "S'ha esborrat %1$d base de dades correctament." msgstr[1] "S'han esborrat %1$d bases de dades correctament." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Fila" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Defragmentat" @@ -8072,33 +8093,33 @@ msgstr "" msgid "Enable statistics" msgstr "Activa estadístiques" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Permisos insuficients per veure variables del servidor i configuracions. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Errada a la configuració de la variable" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "No s'ha establert una consulta SQL per a obtenir dades." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "No existeixen columnes numèriques a la taula per fer el gràfic." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "No hi ha dades per mostrar" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "S'ha modificat la taula %1$s correctament." @@ -8141,7 +8162,7 @@ msgstr "Les columnes s'han mogut correctament." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Error de consulta" @@ -8158,12 +8179,12 @@ msgstr "Canvi" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Índex" @@ -8184,13 +8205,13 @@ msgstr "Text sencer" msgid "Distinct values" msgstr "Valors diferents" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "No es troba l'extensió %s. Comprova la configuració de PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sense canvis" @@ -8213,31 +8234,35 @@ msgstr "" "No es poden carregar les extensions d'esquema, comprova l'instal.lació!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Sense contrasenya" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Contrasenya:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Reescriu:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Contrasenya Hashing:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8247,83 +8272,83 @@ msgstr "" "\"connexió sense xifrar que xifra la contrasenya utilitzant RSA\"; " "mentre es connecta al servidor." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportant bases de dades des del servidor actual" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportar les taules de la base de dades \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportar les files de la taula \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Exportar plantilles:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nova plantilla:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Nom de plantilla" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Crea" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Plantilles existents:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Plantilla:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Actualitzar" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Tria una plantilla" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Tipus d'exportació:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Ràpid - mostra només les opcions mínimes a configurar" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Usuari - mostra totes les opcions possibles" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Bases de dades:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Taules:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opcions específiques del format:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8331,52 +8356,52 @@ msgstr "" "Desplaça avall per a les opcions del format triat i ignora les opcions per " "altres formats." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Conversió de codificació:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Files:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Bolca alguna(es) fila(es)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Fila que comença a:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Bolca totes les files" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Sortida:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Desa al servidor al directori %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Nom d'arxiu de plantilla:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ serà el nom del servidor" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ serà el nom de la base de dades" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ serà el nom de la taula" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8388,99 +8413,99 @@ msgstr "" "%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "usa això per futures exportacions" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Joc de caràcters de l'arxiu:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compressió:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "comprimit amb zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "comprimit amb gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Veure la sortida com a texte" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exportar bases de dades com a arxius separats" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exportar taules com a arxius separats" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Reanomenar les bases de dades/taules/columnes exportades" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Desa la sortida com a arxiu" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Ometre taules més grans que" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Tria la base de dades" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Tria la taula" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nom de la nova base de dades" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nom de la nova taula" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Nom de l'antiga columna" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nom de la nova columna" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'exportació, comprova l'instal.lació!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s de branca %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "sense branca" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revisió Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "incorporat en %1$s per %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "creadat en %1$s per %2$s" @@ -8941,13 +8966,13 @@ msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hi ha prou espai per desar l'arxiu %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8955,76 +8980,76 @@ msgstr "" "L'arxiu %s ja existeix al servidor, canvia el nom o marca l'opció de " "sobreescriure." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no té permisos per a desar l'arxiu %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[S'ha produït un ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Veure el contingut d'una estructura prement sobre el seu nom." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " "\"Opcions\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar estructura seguint l'enllaç \"Estructura\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Anar a la base de dades %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Editar configuració de %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Anar a la taula: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Anar a la vista: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Només es poden simular consultes UPDATE i DELETE sobre una sola taula." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9037,87 +9062,88 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Crea un índex de %s columnes" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Amaga" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funció" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" "A causa de la seva longitud,
aquesta columna podria no ser editable." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binari - no editeu" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "O" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "directori de pujada d'arxius del servidor web:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edita/Insereix" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "i llavors" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Torna" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9128,31 +9154,31 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Correcte!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Només l'estructura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Estructura i dades" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Només dades" @@ -9161,14 +9187,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Afegeix valor AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Afegeix restriccions" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ajusta els permisos" @@ -9213,8 +9239,8 @@ msgstr "Procediments:" msgid "Views:" msgstr "Vistes:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Mostra" @@ -9258,17 +9284,17 @@ msgid_plural "%s results found" msgstr[0] "%s resultat trobat" msgstr[1] "%s resultats trobats" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Escriu per filtrar aquests, tecla per buscar tot" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Buidar filtre ràpid" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Col.lapsar tots" @@ -9283,7 +9309,7 @@ msgstr "Nom de classe \"%1$s\" incorrecte, s'utilitza per defecte \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "No es pot carregar la classe \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Expandir/Col.lapsar" @@ -9302,7 +9328,7 @@ msgstr "Nou" msgid "Database operations" msgstr "Operacions de base de dades" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Mostra elements ocults" @@ -9406,11 +9432,11 @@ msgstr "" "Selecciona una columna que es pugui dividir en més d'una (seleccionant 'cap " "columna' anem al següent pas)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Selecciona una…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Cap columna" @@ -9687,8 +9713,8 @@ msgid "Rename database to" msgstr "Reanomena base de dades a" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9734,177 +9760,177 @@ msgstr "(només)" msgid "Move table to (database.table)" msgstr "Mou la taula a (base-de-dades.taula)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Reanomena les taules a" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Comentaris de la taula" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opcions de taula" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Motor d'emmagatzematge" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Canviar totes les intercalacions de columna" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Còpia taula a (base-de-dades.taula)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Canvia a una taula copiada" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Manteniment de la taula" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analitza la taula" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Verifica la taula" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Taula de suma de comprovació" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Desfragmenta la taula" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "S'ha buidat la memòria cau de la taula %s." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Buida la memòria cau de la taula (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimitza la taula" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Repara la taula" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Esborra les dades o la taula" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Buida la taula (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Esborra la taula (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analitza" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Comprova" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimitza" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Reconstrueix" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Repara" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Truncar" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Fusionar" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Manteniment de particions" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partició %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Elimina particionament" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "No es pot moure la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "No es pot copiar la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Taula %s moguda a %s. Els permisos s'han ajustat." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La taula %s s'ha copiat a %s. Els permisos s'han ajustat." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Taula %s moguda a %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "La taula %s s'ha copiat a %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "El nom de la taula és buit!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Aquest format no té opcions" @@ -9933,18 +9959,18 @@ msgstr "Mostra color" msgid "Only show keys" msgstr "Només mostrar claus" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "No puc connectar: paràmetres incorrectes." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Benvingut a %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9953,7 +9979,7 @@ msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9965,7 +9991,7 @@ msgstr "" "a l'arxiu config.inc.php i mira que es correspongui amb l'informació " "facilitada per l'administrador del servidor de MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Reintentar connexió" @@ -9990,15 +10016,15 @@ msgstr "Nom d'usuari:" msgid "Server Choice:" msgstr "Elecció de Servidor:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "El captcha entrat és incorrecte, intenta de nou!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Entra el captcha correcte!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "No tens permés connectar amb aquest servidor MySQL!" @@ -10059,7 +10085,7 @@ msgstr "Opcions de bolcat de dades" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" @@ -10068,7 +10094,7 @@ msgstr "Bolcant dades de la taula" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Esdeveniment" @@ -10076,8 +10102,8 @@ msgstr "Esdeveniment" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definició" @@ -10164,7 +10190,7 @@ msgstr "Posa els noms de columnes a la primera fila:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Servidor:" @@ -10696,7 +10722,7 @@ msgstr "Taula de continguts" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11078,11 +11104,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-entra a phpMyAdmin per a carregar l'arxiu de configuració actualitzat." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "sense descripció" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11092,7 +11118,7 @@ msgstr "" "d'anar a la pestanya 'Operacions' de qualsevol base de dades per establir la " "configuració d'enmagatzemament de phpMyAdmin allí." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11101,7 +11127,7 @@ msgstr "" "%sCrea%s una base de dades de nom 'phpmyadmin' i estableix la configuració " "d'enmagatzemament de phpMyAdmin aqui." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11109,36 +11135,36 @@ msgstr "" "%sCrea%s la configuració d'enmagatzemamant de phpMyAdmin a la base de dades " "actual." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" "%sCrea%s les taules d'enmagatzemament de configuració de phpMyAdmin que " "falten." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replicació del mestre" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Mostra els esclaus connectats" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Configuració del mestre" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11153,19 +11179,19 @@ msgstr "" "només determinades bases de dades es repliquin. Si us plau, selecciona " "l'opció:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replica totes les bases de dades; Ignora:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignora totes les bases de dades; Replica:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Selecciona bases de dades:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11173,7 +11199,7 @@ msgstr "" "Ara, afegeix les següents línies al final de la secció [mysqld] del teu " "arxiu -my.cnf- i després reinicia el servidor MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11183,69 +11209,69 @@ msgstr "" "de veure un missatge que t'informi que aquest servidor està " "configurat com a mestre." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replicació de l'esclau" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Connexió mestre:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "El fil SQL de l'esclau SQL no va!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "El fil IO de l'esclau IO no va!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Servidor configurat com a esclau en un procés de replicació. Vols:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Veure la taula d'estat de l'esclau" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Control esclau:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Inici total" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Parada total" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Reinicia l'esclau" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Inicia només el fil SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Atura només el fil SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Inicia només el fil IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Atura només el fil IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Canvia o reconfigura el servidor mestre" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11254,26 +11280,26 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo ?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Gestió d'errors:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Saltar errors podria donar lloc a falta de sincronització entre mestre i " "esclau!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Salta l'error actual" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Salta els següents %s 'errors." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11282,11 +11308,11 @@ msgstr "" "Aquest servidor no està configurat com a mestre en un procés de replicació. " "Vols configurar-lo ?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Configració de l'esclau" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11294,53 +11320,53 @@ msgstr "" "Assegura't que tens un identificador únic de servidor en el teu arxiu de " "configuració (my.cnf). Si no, afegeix la línia següent a la secció [mysqld] :" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nom d'usuari:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nom d'usuari" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Contrasenya" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Estat del mestre" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Estat de l'esclau" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Servidor" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11348,39 +11374,39 @@ msgstr "" "Només els servidors iniciats amb l'opció --report-host=nom_de_servidor es " "mostren en aquesta llista." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Aquest Host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Qualsevol usuari" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Usa camp de text:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11388,77 +11414,77 @@ msgstr "" "Quan s'utilitza la taula Host, aquest camp s'ignora i es fan servir els " "valors enmagatzemats a la taula Host en lloc seu." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Reescriu" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Genera una contrasenya:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replicació iniciada correctament." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Error iniciant la replicació." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replicació detinguda correctament." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Error en detenir la replicació." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replicació reiniciada correctament." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Error en reiniciar la replicació." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Correcte." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Error." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Error desconegut" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Incapaços de connectar amb el mestre %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Incapaços de llegir la posició del registre mestre. Posible problema de " "permissos en el mestre." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "No es pot canviar el mestre!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "S'ha canviat correctament el servidor mestre a %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11479,7 +11505,7 @@ msgstr "S'ha modificat l'esdeveniment %1$s." msgid "Event %1$s has been created." msgstr "S'ha creat l'esdeveniment %1$s." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "S'han produït un o més errors al processar la teva sol.licitud:" @@ -11488,75 +11514,75 @@ msgstr "S'han produït un o més errors al processar la teva sol.licitud:" msgid "Edit event" msgstr "Editar esdeveniment" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detalls" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nom d'esdeveniment" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Canviar a %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Executar en" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Executar cada" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Inici" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Final" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Preservar al completar" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definidor" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "El definidor ha d'estar en el format \"usuari@servidor\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Has de proporcionar un nom d'esdeveniment!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Has de proporcionar un valor de l'interval vàlid per a l'esdeveniment." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Has de proporcionar un temps d'execució vàlid per a l'esdeveniment." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Has de proporcionar un tipus vàlid per a l'esdeveniment." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Has de proporcionar una definició d'esdeveniment." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Error processant a la petició:" @@ -11577,7 +11603,7 @@ msgstr "Estat del planificador d'esdeveniments" msgid "The backed up query was:" msgstr "La consulta a la còpia de seguretat era:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Retorna" @@ -11593,72 +11619,72 @@ msgstr "" "emmagatzemats pot fallar![/strong] Utilitza l'extensió millorada 'mysqli' " "per evitar qualsevol problema." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "tipus de rutina invàlid: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "S'ha creat la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Malauradament, no hem pogut recuperar la rutina eliminada." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "S'ha modificat la rutina %1$s. S'han ajustat els permisos." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "S'ha modificat la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nom de rutina" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Paràmetres" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Direcció" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Afegir paràmetre" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Elimina el darrer paràmetre" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Tipus de retorn" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Retornar Longitud/Valors" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Retornar opcions" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "És deterministic" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11666,25 +11692,25 @@ msgstr "" "No tens prou permisos per realitzar aquesta operació; si us plau, consulta " "la documentació per a mes detalls" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tipus de seguretat" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Accés de dades SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Has de proporcionar un nom de rutina!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direcció \"%s\" no vàlida donada per al paràmetre." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11692,38 +11718,38 @@ msgstr "" "Has de proporcionar la longitud/valors dels paràmetres de tipus ENUM, SET, " "VARCHAR i VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Has de proporcionar un nom i un tipus per a cada paràmetre de la rutina." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Has de proporcionar un tipus de resposta vàlida per a la rutina." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Has de proporcionar una definició de la rutina." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Resultats de l'execució de la rutina %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 fila afectada per l'última sentència dins el procediment." msgstr[1] "%d files afectades per l'última sentència dins el procediment." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Executar rutina" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Paràmetres de rutina" @@ -11745,32 +11771,32 @@ msgstr "Disparador %1$s creat." msgid "Edit trigger" msgstr "Editar disparador" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nom del disparador" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Temps" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Has de proveïr un nom de disparador!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Has de proveïr una sincronització vàlida pel disparador!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Has de proveïr un event vàlid pel disparador!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Has de donar un nom de taula vàlid!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Has de proveïr una definició de disparador." @@ -11895,92 +11921,92 @@ msgstr "Jocs de Caràcters i ordenacions" msgid "Databases statistics" msgstr "Estadístiques de les bases de dades" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Sense permisos." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT -atorgar-." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permet llegir dades." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permet canviar dades." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permet esborrar dades." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Permet veure processos de tots els usuaris." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11990,129 +12016,103 @@ msgstr "" "permès; es necessari per moltes operacions d'administració com ara establir " "variables globals o bé cancel.lar fils d'execució d'altres usuaris." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Permet crear noves vistes." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Permet establir events per al planificador d'events." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Permet crear i eliminar disparadors -triggers-." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Cap" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Grup d'usuari" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "No requereix de connexions xifrades amb SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Requereix de connexions xifrades amb SSL." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Es requereix un certificat X509 vàlid." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Es requereix l'ús d'un mètode de xifratge específic per a la connexió." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Es requereix l'ús d'un certificat X509 vàlid emés per aquesta CA (Autoritat " "de Certificació)." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Es requereix que es presenti un certificat X509 vàlid amb aquest subjecte." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Limit de recursos" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero) ." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el numero de consultes que pot enviar l'usuari al servidor per hora." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12120,116 +12120,111 @@ msgstr "" "Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " "o base de dades per hora." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Permet alterar i esborrar aquesta rutina." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Permet executar aquesta rutina." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administració" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Permisos generals" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Permisos específics de base de dades" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permet crear noves taules." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permet eliminar taules." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permet afegir usuaris i permisos sense tenir que recarregar les taules de " "permisos." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Autenticació nativa MySQL" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Autenticació SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Autenticació nativa MySQL" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Informació d'Identificació" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12237,224 +12232,211 @@ msgstr "" "Ja existeix un compte amb el mateix nom d'usuari però possiblement amb nom " "de servidor diferent." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Nom de servidor:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Nom de servidor" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Complement d'autenticació" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Mètode de contrasenya Hashing" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Has tret els permisos per %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Afegir compte d'usuari" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Base de dades per al compte d'usuari" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Atorga tots els permisos a la base de dades %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuaris amb accés a \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Usuari afegit." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Atorga" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Permisos insuficients per veure usuaris." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "No s'han trobat usuaris." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Qualsevol" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "específic de la base de dades" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "comodins" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "específic de la taula" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Edita permisos" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Treu" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Editar grup d'usuari" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… respecta l'antic." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… esborra l'antic de les taules d'usuaris." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… treu tots els permisos actius de l'antic i esborra'l després." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… esborra l'antic de les taules d'usuaris i recarrega els permisos després." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Canvi d'Informació de connexió / Copiar el compte d'usuari" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Crea un nou compte d'usuari amb els mateixos permisos i …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Permisos específics de rutina" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Treu els comptes d'usuaris triats" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Grup d'usuari" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Treu tots els permisos actius dels usuaris i els esborra després." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Esborra les bases de dades que tenen els mateixos noms que els usuaris." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "No s'han triat usuaris per esborrar!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Permisos per a %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Usuari" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nou" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Edita permisos:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Compte d'usuari" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12462,11 +12444,11 @@ msgstr "" "Nota: estàs intentant editar els permisos de l'usuari amb el que has iniciat " "la sessió actual." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Vista global de comptes d'usuari" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12476,7 +12458,7 @@ msgstr "" "connectar-se. Això evita que altres usuaris es connectin si la part del host " "del seu compte permet una connexió des de qualsevol host (%)." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12489,7 +12471,7 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12503,11 +12485,11 @@ msgstr "" "cas, es necessari recarregar els permisos però, actualment, tu no tens el " "permís de RELOAD." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Has afegit un usuari nou." @@ -12819,12 +12801,12 @@ msgstr "Ordre" msgid "Progress" msgstr "Progrés" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtres" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Mostra només els actius" @@ -12845,12 +12827,12 @@ msgstr "per minut:" msgid "per second:" msgstr "per segon:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Sentències" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12874,7 +12856,7 @@ msgstr "Mostra valors sense format" msgid "Related links:" msgstr "Enllaços relacionats:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12882,11 +12864,11 @@ msgstr "" "El nombre de connexions que van ser avortades pel fet que el client va morir " "sense tancar la connexió correctament." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "La quantitat d'intents fallits de connexió al servidor MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12896,17 +12878,17 @@ msgstr "" "però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " "per desar elements de la transacció." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El nombre de transaccions que han fet servir el registre binari temporal." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "El nombre d'intents de connexió (amb èxit o no) amb el servidor MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12918,11 +12900,11 @@ msgstr "" "incrementar el valor de tmp_table_size per fer que les taules temporals " "treballin en memòria en lloc de treballar en disc." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12930,7 +12912,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12938,7 +12920,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12946,23 +12928,23 @@ msgstr "" "El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " "s'usa INSERT DELAYED té el seu propi fil." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12972,7 +12954,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12982,7 +12964,7 @@ msgstr "" "és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " "per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12991,7 +12973,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13001,7 +12983,7 @@ msgstr "" "Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " "rang o si s'està fent una cerca d'index." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13010,7 +12992,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY … " "DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13022,7 +13004,7 @@ msgstr "" "Probablement tens moltes consultes que fan que MySQL cerqui les taules " "senceres o bé hi ha joins que no fan servir les claus acuradament." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13034,37 +13016,37 @@ msgstr "" "taules no estàn indexades acuradament o bé les consultes no estàn fetes per " "aprofitar les avantatges dels índexos definits." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "El nombre de peticions per a actualitzar una fila en una taula." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "El nombre de peticions per a insertar una fila en una taula." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El nombre de pàgines a la memòria cau que s'han demanat per ser " "actualitzades." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13074,7 +13056,7 @@ msgstr "" "pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " "esborrar per qualsevol altra raó." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13086,11 +13068,11 @@ msgstr "" "Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13098,7 +13080,7 @@ msgstr "" "El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " "consulta cerca en una gran part de una taula però en ordre aleatori." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13106,11 +13088,11 @@ msgstr "" "El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " "fa una cerca secuencial a la taula sencera." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13118,7 +13100,7 @@ msgstr "" "El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " "memòria cau i ha de fer lectures de pàgines individuals." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13132,55 +13114,55 @@ msgstr "" "comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " "cau és adequat, aquest valor sól ser petit." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13188,35 +13170,35 @@ msgstr "" "El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " "registre i a esperar a que s'actualitzés abans de continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "El nombre d'escriptures físiques a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13225,51 +13207,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El temps promig en fer un bloqueig de fila, en milisegons." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "El temps total emprat en fer bloquejos de files, en milisegons." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13278,7 +13260,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13286,7 +13268,7 @@ msgstr "" "El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " "pot fer servir per saber quànta memòria cau de les claus s'utilitza." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13295,15 +13277,15 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Percentatge utilitzat de memòria cau de clau (valor calculat)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13313,7 +13295,7 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13321,23 +13303,23 @@ msgstr "" "Els errors al cau de claus es calculen como la taxa de lectures físiques " "comparades amb les peticions de lectura (valor calculat)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" "El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentatge d'escriptures físiques comparades amb peticions d'escriptura " "(valor calculat)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13348,7 +13330,7 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13356,11 +13338,11 @@ msgstr "" "El nombre màxim de connexions que han estat en ús a la vegada des de que el " "servidor s'ha iniciat." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13368,20 +13350,20 @@ msgstr "" "El nombre de taules que han estat obertes. Si el nombre de taules obertes és " "gran, probablement el valor de memòria cau de taula és massa petit." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El nombre de fluxes que estàn oberts (usats principalment per a registre)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13391,19 +13373,19 @@ msgstr "" "números alts poden indicar problemes de fragmentació, que poden ser resolts " "mitjançant una ordre FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "La quantitat de memòria liure per a memòria cau de consultes." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13416,7 +13398,7 @@ msgstr "" "l'estratègia menys recentment usada(least recently used - LRU) per decidir " "quines consultes treure de la memòria cau." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13424,19 +13406,19 @@ msgstr "" "El nombre de consultes no enviades a la memòria cau (no enviables, o no " "enviades degut al paràmetre query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "El nombre total de blocs a la memòria cau de consultes." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13444,12 +13426,12 @@ msgstr "" "El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " "comprovar acuradament els indexs de les taules." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "El nombre de joins que han usat un rang de cerca en una taula de referència." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13458,7 +13440,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13466,16 +13448,16 @@ msgstr "" "El nombre de joins que han usat rangs a la primera taula. (Normalment no és " "crític si el valor no és molt gran.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El nombre de taules temporals obertes actualment pel fil esclau de SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13483,25 +13465,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " "mestre." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "El nombre de fils que han tardat més que slow_launch_time segons a crear." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "El nombre de consultes que han tardat més que long_query_time segons." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13511,23 +13493,23 @@ msgstr "" "hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " "valor de la variable de sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13540,7 +13522,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13550,11 +13532,11 @@ msgstr "" "comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " "d'augmentar el valor de thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13565,11 +13547,11 @@ msgstr "" "gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " "no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Taxa d'encerts del cau de fils (valor calculat)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." @@ -13598,37 +13580,37 @@ msgstr "Pestanyes a nivell de base de dades" msgid "Table level tabs" msgstr "Pestanyes a nivell de taula" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Veure usuaris" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Afegir grup d'usuaris" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Editar grup d'usuaris: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Menu d'assignacions de grup d'usuaris" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Nom de grup:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Pestanyes a nivell de servidor" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Pestanyes a nivell de base de dades" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Pestanyes a nivell de taula" @@ -13729,7 +13711,7 @@ msgstr "Executa consulta/s SQL a la Base de Dades %s" msgid "Run SQL query/queries on table %s" msgstr "Executa consulta/s SQL a la taula %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Neteja" @@ -13814,112 +13796,112 @@ msgstr "Desactiva ara" msgid "Version" msgstr "Versió" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Creat" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Actualitzat" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Esborra versió" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Informe de seguiment" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Instantània de l'estructura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "actiu" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "no actiu" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Seguiment de declaracions" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Esborra les dades de seguiment de l'informe" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "No hi ha dades" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s amb dates des de %2$s fins a %3$s per l'usuari %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Bolcat SQL (descàrrega d'arxiu)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Bolcat SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Aquesta opció substituirà la taula i les dades contingudes." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Execució SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exporta com %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Declaració de manipulació de dades" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Declaració de definició de dades" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nom d'usuari" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantània de la versió %s (codi SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Cap" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Definició de seguiment de dades eliminat correctament" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "manipulació de seguiment de dades eliminat correctament" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13927,61 +13909,61 @@ msgstr "" "Pots executar el bolcat mitjançant la creació i utilització d'una base de " "dades temporal. Si us plau, assegura't que tens els permisos per fer-ho." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Comenta aquestes dues línies si no les necessites." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguiment per la taula `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "S'ha activat el seguiment de %1$s a la versió %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivat el seguiment per %1$s a la versió %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versió %1$s de %2$s esborrada." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "S'ha creat la versió %1$s, activat el seguiment per %2$s." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Taules no seguides" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Segueix taula" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Taules seguides" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Darrera versió" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Esborra seguiment" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versions" @@ -13989,7 +13971,7 @@ msgstr "Versions" msgid "Manage your settings" msgstr "Gestiona els teus paràmetres" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "S'a desat la configuració." @@ -14016,7 +13998,7 @@ msgstr "Error en arxiu ZIP:" msgid "No files found inside ZIP archive!" msgstr "No s'han trobat arxius dins de l'arxiu ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: Només es pot accedir a la navegació mitjançant AJAX" @@ -14024,58 +14006,58 @@ msgstr "Error fatal: Només es pot accedir a la navegació mitjançant AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "No es poden desar els paràmetres, el formulari enviat conté errors!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "No es pot importar la configuració" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "La configuració conté dades incorrectes per a alguns camps." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Vols importar la resta de paràmetres?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Desat en: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importar des de arxiu" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importar des de l'emmagatzemament del navegador" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "Els paràmetres s'importaran des del emmagatzemament local del teu navegador." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "No has desat els paràmetres!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Aquesta característica no està suportada pel teu navegador" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Fusiona amb la configuració actual" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14084,25 +14066,25 @@ msgstr "" "Pots establir més paràmetres modificant l'arxiu config.inc.php, ex. by usant " "%sSetup script%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Desa com a arxiu" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Desar a l'emmagatzemament del navegador" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Els paràmetres es desaran al emmagatzemament local del teu navegador." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Els paràmetres existents es sobreescriuran!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Pots restablir tots els teus paràmetres als valors per defecte." @@ -14110,12 +14092,12 @@ msgstr "Pots restablir tots els teus paràmetres als valors per defecte." msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Sense permisos" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14123,34 +14105,34 @@ msgstr "" "No es poden canviar ni el nom d'usuari ni el del servidor. Si només vols " "canviar la contrasenya, has de fer servir la pestanya 'Canviar contrasenya'." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Permisos insuficients per veure l'estat del servidor." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Permisos insuficients per veure l'assessor." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Fil %s cancel.lat correctament." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Permisos insuficients per veure estadístiques de consultes." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Permisos insuficients per veure variables d'estat." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Descarrega" @@ -14160,11 +14142,11 @@ msgstr "" "Conjunt de formularis incorrecte, comprova l'array $formsets a l'arxiu setup/" "frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "No es pot carregar o desar la configuració" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14175,7 +14157,7 @@ msgstr "" "[doc@setup_script]documentació[/doc]. En cas contrari només podràs " "descarregar o mostrar." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14184,24 +14166,27 @@ msgstr "" "informació potencialment sensible, com les contrasenyes) s'estàn transferint " "sense xifrar!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Si el teu servidor també està configurat per a acceptar peticions HTTPS, " "segueix [a@%s]aquest enllaç[/a] per a usar una connexió segura." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Connexió insegura" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuració desada." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14210,59 +14195,59 @@ msgstr "" "de phpMyAdmin, copia'l al nivell superior i elimina el directori de " "configuració per utilitzar-lo." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Configuració no desada!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Vista global" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Mostra missatges ocults (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "No hi ha servidors configurats" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nou servidor" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Idioma predeterminat" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "deixa triar a l'usuari" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- cap -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Servidor predeterminat" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Fi de linia" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Mostra" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Carregar" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "pàgina principal de phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Donacions" @@ -14298,7 +14283,7 @@ msgstr "Ignora errors" msgid "Show form" msgstr "Mostra el formulari" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14306,15 +14291,15 @@ msgstr "" "Ha fallat la lectura de la versió. Potser no estàs connectat o bé el " "servidor d'actualitzacions no respon." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "S'ha obtingut un text de versió incorrecte des del servidor" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "No es pot interpretar el text de versió" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14323,7 +14308,7 @@ msgstr "" "Estàs utilitzant una versió del repositori Git, executa [kbd]git pull[/" "kbd] :-)[br]La darrera versió estable és la %s, alliberada en %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "No hi ha disponible una versió estable més nova" @@ -14336,12 +14321,12 @@ msgstr "Dades incorrectes" msgid "Wrong data or no validation for %s" msgstr "Dada errònia o no validada per a %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "la base de dades '%s' no existeix." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "La taula %s ja existeix!" @@ -14354,29 +14339,29 @@ msgstr "Veure un bolcat (esquema) de la taula" msgid "Invalid table name" msgstr "Nom de taula incorrecte" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "No s'ha triat la fila." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "S'ha activat el seguiment de %s." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "S'han esborrat correctament les versions de seguiment." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "No s'han triat versions." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Declaracions SQL executades." @@ -14546,7 +14531,7 @@ msgid "List of available transformations and their options" msgstr "Llista de transformacions disponibles i les seves opcions" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformació de visualització del navegador" @@ -14568,7 +14553,7 @@ msgstr "" "'\\\\xyz' o 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformació d'entrada" @@ -15000,17 +14985,17 @@ msgid "Size" msgstr "Mida" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Creació" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Darrera actualització" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Darrera comprovació" @@ -15052,6 +15037,12 @@ msgstr "" "El teu navegador té la configuració de phpMyAdmin per a aquest domini. Vols " "importar-ho per a la sessió actual?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Esborra seguiment" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Afegeix permisos a la/les següent(s) base(s) de dades:" @@ -15069,10 +15060,44 @@ msgstr "Afegeix permisos a la rutina següent:" msgid "Add privileges on the following table:" msgstr "Afegeix permisos a la següent taula:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nou" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Cap" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Treu els comptes d'usuaris triats" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Treu tots els permisos actius dels usuaris i els esborra després." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Esborra les bases de dades que tenen els mateixos noms que els usuaris." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Permisos específics de columna" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Limit de recursos" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero) ." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Tria el registre binari per veure" @@ -15103,7 +15128,7 @@ msgstr "Complement" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "desactivat" @@ -15259,7 +15284,7 @@ msgstr "Analitzador:" msgid "Comment:" msgstr "Comentari:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Arrossega per reordenar" @@ -15291,20 +15316,20 @@ msgstr "Només es mostraran columnes amb índex. Pots definir un índex a sota." msgid "Foreign key constraint" msgstr "Límit de clau externa" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Afegeix restricció" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relacions internes" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relació interna" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15312,7 +15337,7 @@ msgstr "" "No es necessita una relació interna quan existeix una relació corresponent " "de FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Tria la columna a mostrar:" @@ -15365,11 +15390,11 @@ msgstr "String original" msgid "Replaced string" msgstr "String reemplaçat" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Reemplaça" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Criteri de cerca addicionals" @@ -15440,7 +15465,7 @@ msgid "at beginning of table" msgstr "a l'inici de la taula" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Particions" @@ -15464,24 +15489,24 @@ msgstr "Mida de les dades" msgid "Index length" msgstr "Mida de l'index" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Taula de partició" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Edita particionament" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Editar vista" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Utilització d'espai" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efectiu" @@ -15506,31 +15531,31 @@ msgstr "Millorar l'estructura de taula" msgid "Track view" msgstr "Vista de seguiment" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Estadística de la fila" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "estàtic" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinàmic" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "particionat" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Tamany de fila" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Mida de fila" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "AUTOINDEX Següent" @@ -15543,44 +15568,44 @@ msgstr "S'ha esborrat la columna %s." msgid "Click to toggle" msgstr "Prem per canviar" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Obtenir més temes!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tipus MIME disponibles" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Transformacions de navegador disponibles" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Transformacions d'entrada disponibles" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Descripció" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Portant-te a l'adreça de destí." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "No tens prou permisos per visualitzar aquesta informació!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "S'ha actualitzat el perfil." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Contrasenya massa llarga!" @@ -15652,7 +15677,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15673,17 +15698,17 @@ msgid "Unrecognized data type." msgstr "Tipus de dades desconegut." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "S'esperava un àlies." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "S'ha trobat un àlies anteriorment." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Punt inesperat." @@ -15736,24 +15761,24 @@ msgstr "S'esperava(en) espai(s) en blanc abans del delimitador." msgid "Expected delimiter." msgstr "S'esperava delimitador ." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "S'esperava una cometa de tancament %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "S'esperava un nom de variable." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Inici no esperat de declaració." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Tipus de declaració no reconegut." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "No s'ha iniciat cap transacció anteriorment." @@ -15770,10 +15795,16 @@ msgstr "Símbol (token) no esperat." msgid "This type of clause was previously parsed." msgstr "Aquest tipus de clàusula s'ha analitzat anteriorment." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Paraula clau no reconeguda." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Inici no esperat de declaració." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "S'esperava el nom de l'entitat." @@ -15814,7 +15845,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "Error estricte" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "El nom de la vista no pot estar buit" @@ -17131,6 +17162,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autenticació nativa MySQL" + #~ msgid "Try to connect without password." #~ msgstr "Intentar connectar sense contrasenya." diff --git a/po/ckb.po b/po/ckb.po index 33cad84ae0..fd499c7030 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-10-10 19:30+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kurdish Sorani Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "بەردەوامبوون" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "زۆرکردنی نرخی سەرەکیی" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "نرخی سەرەکیی زۆر کرا." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "هەنگاوی داهاتووت…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "کۆتایی هەنگاو" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "تەواو" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "هەنگاو" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "سڕینەوەی خانەکانی %s لە خشتەی %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "خشتەکانی خوارەوە درووست بکە" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "پاشەکەوتکردن" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "گەڕانی خشتە" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "ستون" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "ستون" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "هەر خاڵێک ڕیزە زانیاریەک دەنوێنێ." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "خستنەسەری سەر خاڵێک پێناسەکەی پێشان دەدات." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "دوو ستون هەڵبژێرە" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "دوو ستونی جیا هەڵبژێرە" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "ناوەڕۆکی زانیاری خاڵ" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "فەرامۆشکردن" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "لەبەرگرتنەوە" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "خاڵ" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "فرە گۆشە" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "ئەندازەزانی" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "ئەڵقەی ناوەکی" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "ئەڵقەی دەرەکی:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "پاشەکەوتکردنی پەڕە" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "پاشەکەوتکردن" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "کردنەوەی پەڕە" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "سڕینەوەی پەڕە" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "بێناو" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "تکایە پەڕەیەک هەڵبژێرە بۆ بەردەوامبوون" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "تکایە ناوێکی درووست بۆ پەڕە بنووسە" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "ئایا دەتەوێت گۆڕانکارییەکان پاشەکەوت بکەیت بۆ پەڕەی ئێستا؟" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "پەڕە بە سەرکەوتوویی سڕایەوە" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "دەستکاری کردن یان هەناردنی پەیوەندی نەخشە" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "گۆڕانکارییەکان پاشەکەوت کران" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "هەڵبژاردەیەک زۆر بکە بۆ خانەی \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d یەکە درووست کران." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "escape داگرە بۆ پاشگەزبوونەوە لە گۆڕین." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2209,149 +2214,149 @@ msgstr "" "تۆ چەند زانیاریەکت دەستکاری کردووە و پاشەکەوت نەکراون. تۆ دڵنیای لە دەرچوونت " "لەم پەڕە پێش پاشەکەوتکردنی زانیاریەکان؟" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "ڕایکێشە بۆ ڕیزکردنەوە." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "کرتە بکە بۆ ڕیزکردنی ئەنجام لەسەر بنەمای ئەم خانە." -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "کرتە بکە بۆ نیشانکردن / لابردنی نیشانکردن." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "دوو کرتە بکە بۆ ڕوونووسکردنی ناوی ستون." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "هه‌مووی ببینه‌" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "واژلێهێنان" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "پووچەڵ کرایەوە" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "سەرکەوتووبوو" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "ئاستی هێنان" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "پەڕگەکانت لە ئێرە دابنێ" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "بنکەیەکی دراوە هەڵبژێرە لە پێشدا" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "بڕۆ بۆ بەستەر:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "ڕوونووسکردنی ناوی بەستەر." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "کرتەی ڕاست لەسەر ناوی ستون بکە بۆ لەبەرگرتنەوەی بۆ ناو کلیپ بۆرد." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "دروستکردنی تێپەڕە وشە" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "دروستکردن" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "زیاتر" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "هەمووی پێشاندە" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "پێشاندانی نیشاندەرەکان" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2359,27 +2364,27 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "، دوایین وەشانی جێگیر:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "نوێترینە" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2387,79 +2392,79 @@ msgstr "" "هەڵەیەکی گەورەی JavaScript هاتە پێش، دەتەوێت لە ڕوودانی ئەو هەڵەیە " "ئاگادارمان بکەیتەوە؟" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "گۆڕینی ڕێکخستنەکانی ڕاپۆرت" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "وردە زانیارییەکانی ڕاپۆرت" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "تکایە چاو لە بەشی خوارەوەی ئەم پەنجەرە بکە." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "لە بیرکردنی هەموو" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "ئایا دڵنیایت کە دەتەوێت ئەو Bookmark‌ ـە بسڕیتەوە؟" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 msgid "Show arguments" msgstr "تێبینیەکانی خشتە" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2468,349 +2473,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "گۆڕینی پێشگری خشتە" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "گۆڕینی پێشگری خشتە" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "پێشتر" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "دواتر" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "ئەمڕۆ" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "کانونی دووەم" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "شوبات" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "مارت" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "نیسان" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "مایس" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "حوزەیران" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "تەموز" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "ئاب" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "ئەیلول" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "تشرینی یەکەم" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "تشرینی دووەم" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "کانونی یەکەم" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "کانوونی دووەم" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "شوبات" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "مارت" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "نیسان" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "مایس" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "حوزیران" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "تەموز" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "ئاب" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "ئەیلول" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "تشرینی یەکەم" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "تشرینی دووەم" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "کانوونی یەکەم" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "یەک شەم" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "دوو شەم" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "سێ شەم" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "چوار شەم" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "پێنج شەم" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "هەینی" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "شەممە" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "یەک شەم" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "دوو شەم" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "سێ شەم" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "چوار شەم" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "پێنج شەم" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "هەینی" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "شەممە" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "یەک شەم" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "دوو شەم" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "سێ شەم" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "چوار شەم" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "پێنج شەم" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "هەینی" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "شەممە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "هەفتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "ڕۆژژمێر-مانگ-ساڵ" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "كاتژمێر" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "خولەک" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "چرکە" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "هەڵە" @@ -2871,20 +2896,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "ڕێکخستن" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3079,7 +3104,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "نەناسراوە" @@ -3123,48 +3148,48 @@ msgstr "" msgid "Font size" msgstr "قەبارەی فۆنت" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "گەڕانی خشتە" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "داواکاری سیكوێڵ" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "چاودێری شێوه‌پێدانی ناوخۆیی نەگونجاوە" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "ڕادەی لەدەستچوو:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3258,110 +3283,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "پرسی SQL لەسەر بنکەی دراوەی %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "ناردنی داواکاری" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "گەڕان" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "گەڕانی خشتە" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "گەڕانی خشتە" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "پیشاندانی شوێندۆز" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "گەڕانی خشتە" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "لانی کەم یەکێک لە وشەکان" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "هەموو وشەکان" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "دەقاودەقی ڕستە" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ئەنجامی گەڕان بۆ \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "گەڕۆک" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "سڕینەوەی دووبارەکان بۆ خشتەی %s؟" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "گەڕان لە بنکەی دراو" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "دۆزینەوە:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "وشەکان بە هێمای بۆشایی جیا دەکرێنەوە (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "لەناو خشتە:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "هەلنەبژاردنی هەموو" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "لە نێو خشتەی:" @@ -3381,30 +3401,30 @@ msgstr "پاڵێو" msgid "Search this table" msgstr "گەڕان لە بنکەی دراو" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "دەسپێکردن" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "پێشتر" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "دواتر" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "کۆتایی" @@ -3413,7 +3433,7 @@ msgstr "کۆتایی" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3422,8 +3442,8 @@ msgstr "" msgid "Sort by key" msgstr "ڕیزکردنی بە پێی کلیل" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3445,10 +3465,10 @@ msgstr "ڕیزکردنی بە پێی کلیل" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "هەڵبژاردنەکان" @@ -3488,29 +3508,29 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "ڕیزەکە سڕایەوە" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "ڕایگرە" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "سیكوێڵ کیوریەکەت بەسەرکەوتوویی ئەنجامدرا" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3519,75 +3539,75 @@ msgstr "" "لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی " "%sبەڵگەسازی%s بکە ." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "ڕیزە پێشاندراوەکان" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "سەرجەم" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "داواکاریەکە %01.4f چرکەی خایاند" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "هەڵبژاردنی هەموو" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "کردارەکانی ئەنجامی داواکاری" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "پێشاندانی هێلکاری" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "بەستەر نەدۆزرایەوە" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3595,69 +3615,69 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "هەڵەنامەی زۆر، هەندێکیان پێشان نەدراون." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "هێنان" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "فایلەکە لە فایلی بارکراو نیە." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "بارکردنی فایل ڕاگیرا بەهۆی پاشگرەوە." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "هەڵەیەکی نەزانراو لە بارکردنی فایل." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "نەتوانرا پەڕگە بخوێنرێتەوە!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "هەڵەیەک لەکاتی گواستنەوەی فایلی بارکراو." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "فایلەکە لە فایلی بارکراو نیە." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3666,28 +3686,28 @@ msgstr "" "ئێوە فایلێک بە پەستێنەر سازێکی پاڵپشتی نەکراو بار ئەکەن (%s).لەوانەیە لە " "ڕێکخستنەکان ناچالاک بێت وە یان پاڵپشتی بەردەست نییە بۆ ئەم فایلە." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "زانیاری وەشان" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "پێشاندان بۆ چاپکردن" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3696,20 +3716,20 @@ msgid "No index defined!" msgstr "هیچ نیشاندەرێک پێناسە نەکراوە‌!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "نیشاندەرەکان" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3719,78 +3739,78 @@ msgstr "نیشاندەرەکان" msgid "Action" msgstr "کردار" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "کلیلەناو" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "بێهاوتا" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "لێدوان" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "فڕیدان" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "ژمارەی پەڕە:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "زمان" @@ -3814,11 +3834,11 @@ msgstr "سێرڤەر" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3837,14 +3857,15 @@ msgid "View" msgstr "نیشاندان" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3853,8 +3874,8 @@ msgid "Table" msgstr "خشتە" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3862,45 +3883,45 @@ msgstr "خشتە" msgid "SQL" msgstr "سیكوێڵ" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "گەڕان" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "تێخستن" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "تایبەتمەندێتیەکان" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "کارەکان" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3916,16 +3937,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "پێدەچێت بنکە زانیاریەکە بەتاڵ بێت!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "داواکاری" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "ڕۆتینەکان" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3933,20 +3954,20 @@ msgstr "ڕۆتینەکان" msgid "Events" msgstr "چالاکیەکان" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "شێوەساز" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "ستونەکان زیادبکە" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "بنکە زانیاریەکان" @@ -3955,53 +3976,53 @@ msgid "User accounts" msgstr "بەکارهێنەرەکان" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "تۆماری دوودانەیی" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "دووپاتکاری" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "گۆڕاوەکان" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "گورزەپیتەکان" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "بزوێنەرەکان" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "پێوەکراوەکان" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4049,27 +4070,27 @@ msgstr "گۆڕاوەکان" msgid "Favorites" msgstr "گۆڕاوەکان" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "هەڵەیەک لەکاتی گواستنەوەی فایلی بارکراو." @@ -4131,7 +4152,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4185,76 +4206,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s بیرگەی بزوێنەری سەرەکییە لەسەر ڕاژەکاری MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "دۆخی نەزانراوی خشتە:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "بنکە زانیاری سەرچاوە '%s' نەدۆزرایەوە!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "بنکە زانیاری ئامانج '%s' نەدۆزرایەوە!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "بنکە زانیاری نادروست" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "ناوی خشتەی نادروست" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "هەڵە لە ناونانەوەی خشتەی %1$s بۆ %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "نەتوانرا خشتە تازەکە پاشەکەوت بکرێت" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4262,19 +4283,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4541,7 +4562,7 @@ msgid "Date and time" msgstr "بەروار و کات" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "ده‌قه‌ڕیزبه‌ند" @@ -4556,126 +4577,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "مای‌ئێس‌كیو‌ئێڵ دەڵێت: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "ڕوونکردنەوەی سیكوێڵ" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "پشتگوێخستنی ڕوونکردنەوەی سیكوێڵ" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "بەبێ پی ئێچ پی کۆد" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "ناردنی داواکاری" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "پی ئێچ پی کۆد دروست بکە" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "تازەکردنەوە" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "چاکردنی نیشاندەر" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "ڕادەی لەدەستچوو:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "هیچ خشتەیەکی تازە نیە" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "بەتاڵ" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "بەکارهێنەرەکان" @@ -4689,7 +4710,7 @@ msgstr "لە خولەکێک دا" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "لە کاتژمێرێکدا" @@ -4697,12 +4718,12 @@ msgstr "لە کاتژمێرێکدا" msgid "per day" msgstr "لە ڕؤژێکدا" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "گەڕان:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4710,7 +4731,7 @@ msgstr "گەڕان:" msgid "Description" msgstr "پێناسە" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "ئەم نرخە هەڵبژێرە" @@ -4747,22 +4768,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4771,7 +4792,7 @@ msgstr "" msgid "Attribute" msgstr "بەشداری کردن" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4788,11 +4809,11 @@ msgstr "" msgid "Select a column." msgstr "دوو ستون هەڵبژێرە" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "زیادکردن/سڕینەوەی ستونەکان" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4800,7 +4821,7 @@ msgstr "زیادکردن/سڕینەوەی ستونەکان" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4810,27 +4831,27 @@ msgstr "" "درووستی لەگەڵ PhpMyAdmin کار ناکات و لەوانەیە ببێتە هۆکاری تێکچوونی هەندێک " "داتای بنکەی دراوە!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سێرڤەر" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4838,20 +4859,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5378,7 +5399,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5478,12 +5499,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5493,7 +5514,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5618,7 +5639,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5631,7 +5652,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" @@ -5640,7 +5661,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5670,7 +5691,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "زیادکردن %s" @@ -5836,7 +5857,7 @@ msgid "Customize the navigation tree." msgstr "پێشاندانی نیشاندەرەکان" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6667,7 +6688,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7302,7 +7323,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "پشکنین بۆ دۆزینەوەی نوێترین وەشان" @@ -7310,10 +7331,10 @@ msgstr "پشکنین بۆ دۆزینەوەی نوێترین وەشان" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7448,24 +7469,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "به‌ڵگه‌سازی" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "لیستی دڵخوازەکان پڕە!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "خشتەی %s خاڵی کرا." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "%s سڕایەوە" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "خشتەی %s سڕایەوە" @@ -7479,12 +7500,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7493,7 +7514,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7507,42 +7528,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "بنکەی دراوەی %1$s درووستکرا." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "خانە" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "سەرجەم" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7567,32 +7588,32 @@ msgstr "" msgid "Enable statistics" msgstr "ئامارەکانی داواکاری" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "هیچ زانیاریەک نەدۆزراوە" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7635,7 +7656,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7652,12 +7673,12 @@ msgstr "گۆڕین" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7678,13 +7699,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7704,165 +7725,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "هەڵە لە بارکردنی پێوەکراەکان, تکایە فۆناغەکانی دامەزراندن بپشکنن!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "وشەی نهێنی" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "هەناردن" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "بارکردنەوەى پەڕە" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "ناوی بنکەی دراو" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "دروستكردن" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "داڕێژه‌" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "نوێكردنه‌وه‌" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "هەڵبژاردنی هەموو" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "هەناردن" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "خێرا پیشاندانی بژارده‌ی كه‌مترین" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "بنكه‌ دراوی زانیاریه‌كان" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "خشتە" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "فۆرمات" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "ڕیز" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "ڕیزكردن به‌پێی" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "یه‌كه‌ی ده‌رخسته‌" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "ناوی تێمپیله‌یته‌كه‌ت" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7870,98 +7895,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "هەر نرخێک لە خانەی جیا بنووسە." -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "هەڵبژاردنی هەموو" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "هەڵبژاردنی هەموو" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "ناوی بنکەی دراو" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "ناوی خشتەی نادروست" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "لەبەرگرتنەوەی ناوی ستون" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "لەبەرگرتنەوەی ناوی ستون" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8358,13 +8383,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "شوێنی پێویست بۆ پاشەکەوت کردنی فایل %s ." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8372,74 +8397,74 @@ msgstr "" "فایلی %s لە ئێستادا بوونی هەیە , ناوی فایلەکە بگۆڕن وە یان ڕێکخستنەکانی " "لەسەرنوسین بپشکنە ." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "وێبڕاژه‌كار مۆڵەتی پاشه‌كه‌وت کردنی فایلی %s نییە ." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "زانیاری وەدەست هاتوو لە فایلی %s پاشەکەوت کرا." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8450,84 +8475,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "فرمان" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "یان" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "گۆڕین/تێخستن" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8538,31 +8564,31 @@ msgstr "" msgid "Value" msgstr "نرخ" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "تەنیا بنچینە" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "بنچینە و زانیاری" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "تەنیا زانیاری" @@ -8571,14 +8597,14 @@ msgid "Add AUTO INCREMENT value" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "زیادکردنی مەرج" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "تایبەتمەندێتیەکان" @@ -8623,8 +8649,8 @@ msgstr "پڕۆسەکان" msgid "Views:" msgstr "نیشاندان" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "پیشاندان" @@ -8665,17 +8691,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8691,7 +8717,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "ستونەکان زیادبکە" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8710,7 +8736,7 @@ msgstr "" msgid "Database operations" msgstr "وەشانی ڕاژەخوازی بنکەی دراوە" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "پێشاندانی نیشاندەرەکان" @@ -8809,11 +8835,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "دوو ستون هەڵبژێرە" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9047,8 +9073,8 @@ msgid "Rename database to" msgstr "ناوی بنکەی دراوە بگۆڕە بۆ" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9092,177 +9118,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "تێبینیەکانی خشتە" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "شیکردنەوەى خشتە" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "پشکنینی خشتە" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "پشکنینی خشتە" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "چاکسازی خشتە" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "چاکردنی خشتە" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "داخستن" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9289,25 +9315,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9315,7 +9341,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9340,15 +9366,15 @@ msgstr "" msgid "Server Choice:" msgstr "پیتەکانی ڕاژەکار" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "ڕێگەدان بە چوونەژوورەوە بۆ هەر ڕاژەکارێکی MySQL" @@ -9409,7 +9435,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9418,7 +9444,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9426,8 +9452,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9513,7 +9539,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10012,7 +10038,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10332,57 +10358,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10391,293 +10417,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "پەستانی پەیوەندی" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "ناوی بەکارهێنەر" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "وشەی نهێنی" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "دروستکردنی تێپەڕە وشە" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "هەڵە" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10698,7 +10724,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10707,75 +10733,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "هەڵە لە کردنەوەی داواکاری" @@ -10796,7 +10822,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10808,132 +10834,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10955,32 +10981,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11099,565 +11125,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "پەستانی پەیوەندی" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "پەستانی پەیوەندی" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "ڕۆتینەکان" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "گۆڕینی وشەی نهێنی" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "ناوی بەکارهێنەر" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "بەشداری کردن" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "ڕێکخستنەکانی هەنووکە" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "وشەی نهێنی" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "زیادکردنی بەکارهێنەر" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "وەشانی ڕاژەخوازی بنکەی دراوە" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "سڕینەوەی بەکارهێنەرە دەست نیشانکراوەکان" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "بەکارهێنەر" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "بەکارهێنەرەکان" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11666,7 +11649,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11675,11 +11658,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11946,12 +11929,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "تەنها نیشاندانی لیستی بنکەی دراو" @@ -11972,12 +11955,12 @@ msgstr "لە خولەکێک دا" msgid "per second:" msgstr "لە چرکەیەک دا" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12001,33 +11984,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12035,78 +12018,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12114,7 +12097,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12122,42 +12105,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12165,33 +12148,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12200,242 +12183,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12443,99 +12426,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12543,18 +12526,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12562,11 +12545,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12595,37 +12578,37 @@ msgstr "ڕاژەکاری بکنەی دراوە" msgid "Table level tabs" msgstr "تێبینیەکانی خشتە" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "بەکار دەبرێت" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "زیادکردنی بەکارهێنەر" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "ناوی بەکارهێنەر" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "وەشانی ڕاژە" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "ڕاژەکاری بکنەی دراوە" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "تێبینیەکانی خشتە" @@ -12720,7 +12703,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "پرسی SQL لەسەر بنکەی دراوەی %s:" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12806,172 +12789,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "دروستکراوە" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "بارکراوە" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "وەشانی کۆتا" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "ڕاپۆرتە شوێنکەتووەکان" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "وێنەی پێکهاتە" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "چالاک" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ناچالاکە" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "ناوی بەکارهێنەر" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "خشتە شوێن نەکەوتوەکان" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "شوێنکەوتنی خشتە" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "شوێنکەوتەی خشتە" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "وەشانی کۆتا" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "سڕینەوەی لێکۆڵینەوە" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "وەشانەکان" @@ -12979,7 +12962,7 @@ msgstr "وەشانەکان" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13003,7 +12986,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13011,78 +12994,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13090,45 +13073,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13136,97 +13119,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "گۆڕانکارییەکان پاشەکەوت کران" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13262,28 +13244,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13296,12 +13278,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13314,29 +13296,29 @@ msgstr "" msgid "Invalid table name" msgstr "ناوی خشتەی نادروست" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "سیكوێڵ کیوریەکەت بەسەرکەوتوویی ئەنجامدرا" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13500,7 +13482,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13518,7 +13500,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "زانیاری وەشان" @@ -13946,17 +13928,17 @@ msgid "Size" msgstr "قەبارە" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "درووستکردن" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "دواترین نوێکردنەوە" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "دواترین پشکنین" @@ -13991,6 +13973,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "سڕینەوەی لێکۆڵینەوە" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14007,10 +13995,43 @@ msgstr "خشتەکانی خوارەوە درووست بکە" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "سڕینەوەی بەکارهێنەرە دەست نیشانکراوەکان" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14041,7 +14062,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14195,7 +14216,7 @@ msgstr "بەکارهێنەر:" msgid "Comment:" msgstr "لێدوان" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "ڕایکێشە بۆ ڕیزکردنەوە" @@ -14227,26 +14248,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "زیادکردنی مەرج" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "ڕیزەکە سڕایەوە" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشاندان" @@ -14300,11 +14321,11 @@ msgstr "ڕیزبه‌ندی هێڵی" msgid "Replaced string" msgstr "گۆڕینی پێشگری خشتە" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "مەرجی گەڕانی زیاتر" @@ -14373,7 +14394,7 @@ msgid "at beginning of table" msgstr "ژمارەی ڕیزەکان" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "تێکستە لاوەکیەکان" @@ -14397,24 +14418,24 @@ msgstr "ڕیزبه‌ندی هێڵی" msgid "Index length" msgstr "نیشاندەرەکان" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "تێکستە لاوەکیەکان" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "چاکردنی نیشاندەر" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14439,31 +14460,31 @@ msgstr "" msgid "Track view" msgstr "شوێنکەوتنی خشتە" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "نیشاندانی سەرژمێری" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14476,44 +14497,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "تێبینیەکانی خشتە" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "هەنگاوی داهاتووت…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "وشەی نهێنی" @@ -14582,7 +14603,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14603,17 +14624,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "هیچ خشتەیەک هەڵنەبژێردراوە." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14666,24 +14687,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "ژمارەی ڕیزەکان" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14700,10 +14721,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "ژمارەی ڕیزەکان" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14742,7 +14769,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/cs.po b/po/cs.po index 75885a9995..b09cb83d44 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" -"PO-Revision-Date: 2016-11-24 13:35+0000\n" -"Last-Translator: ratajs \n" -"Language-Team: Czech " -"\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" +"PO-Revision-Date: 2016-12-10 22:56+0000\n" +"Last-Translator: Lucie Procházková \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -29,31 +29,31 @@ msgstr "" "Soubor %s nebyl nalezen, více informací naleznete na stránce www.phpmyadmin." "net." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Centrální seznam sloupců pro aktuální databázi je prázdný." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Klikněte pro seřazení." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Zobrazeny záznamy %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Komentář k databázi" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Komentář k tabulce:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -65,13 +65,13 @@ msgstr "Komentář k tabulce:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -82,9 +82,9 @@ msgstr "Komentář k tabulce:" msgid "Column" msgstr "Pole" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -95,12 +95,12 @@ msgstr "Pole" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -112,9 +112,9 @@ msgstr "Pole" msgid "Type" msgstr "Typ" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -125,15 +125,15 @@ msgstr "Typ" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nulový" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -144,14 +144,14 @@ msgstr "Nulový" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Výchozí" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -161,7 +161,7 @@ msgstr "Výchozí" msgid "Links to" msgstr "Odkazuje na" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -175,19 +175,19 @@ msgstr "Odkazuje na" msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primární" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -195,13 +195,13 @@ msgstr "Primární" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -209,17 +209,17 @@ msgstr "Primární" msgid "No" msgstr "Ne" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -228,13 +228,13 @@ msgstr "Ne" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -246,15 +246,15 @@ msgstr "Ano" msgid "View dump (schema) of database" msgstr "Zobrazit výpis (schéma) databáze" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "V databázi nebyly nalezeny žádné tabulky." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -263,8 +263,8 @@ msgid "Tables" msgstr "Tabulky" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -272,10 +272,10 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -288,27 +288,27 @@ msgstr "Struktura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Data" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Vybrat vše" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Databáze %1$s byla přejmenována na %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Databáze %1$s byla zkopírována do %2$s." @@ -320,38 +320,38 @@ msgid "" msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZjistěte proč%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Musíte zvolit alespoň jedno pole, které si přejete zobrazit!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Přepnout na %svizuálního návrháře%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Přístup odepřen!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Sledovací údaje byly úspěšně smazány." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "Verze %1$s vytvořena pro vybrané tabulky a jejich sledování je zapnuté." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Nebyly vybrány žádné tabulky." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Záznam databáze" @@ -389,150 +389,150 @@ msgstr "Chybný typ!" msgid "Bad parameters!" msgstr "Chybné parametry!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pro sloupec „%s“" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použít OpenStreetMap jako základní vrstvu" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometrie %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Bod:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Přidat bod" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Linka %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Vnější obrys:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Vnitřní obrys %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Přidat linku" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Přidat vnitřní obrys" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Mnohoúhelník %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Přidat mnohoúhelník" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Přidat geometrii" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Proveď" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" "Z funkcí zvolte „GeomFromText“ a vložte níže uvedený text jako hodnotu." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Úspěch" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Chyba" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Chybí parametry" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -541,15 +541,15 @@ msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:489 +#: import.php:486 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 " @@ -559,17 +559,17 @@ msgstr "" "nebo jeho velikost překročila velikost povolenou v nastavení PHP. Viz " "[doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Byl vytvořen oblíbený dotaz %s." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -577,7 +577,7 @@ msgstr[0] "Import byl úspěšně dokončen, byl proveden %d dotaz." msgstr[1] "Import byl úspěšně dokončen, byly provedeny %d dotazy." msgstr[2] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -586,7 +586,7 @@ msgstr "" "Limit pro běh importu vypršel, prosím %sodešlete formulář%s znovu se stejným " "souborem a import bude pokračovat." -#: import.php:632 +#: import.php:629 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." @@ -595,7 +595,7 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." @@ -603,17 +603,17 @@ msgstr "Příkaz „DROP DATABASE“ je vypnutý." msgid "Could not load the progress of the import." msgstr "Nelze zjistit průběh importu." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Zpět" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Demo server phpMyAdmina" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -623,107 +623,107 @@ msgstr "" "Používáte demo server. Můžete zde provádět cokoliv, ale prosím neměňtě " "uživatele root, debian-sys-maint a pma. Více informací naleznete na %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Obecná nastavení" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Změnit heslo" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Porovnávání pro toto připojení k serveru" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Nastavení vzhledu" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Více nastavení" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Databázový server" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Typ serveru:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Verze serveru:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Verze protokolu:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Uživatel:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Znaková sada:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Webový server" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Verze databázového klienta:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Rozšíření PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Verze PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Informace o verzi:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentace" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Oficiální stránka phpMyAdmina" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Přispějte" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Získejte podporu" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Seznam změn" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licence" -#: index.php:443 +#: index.php:444 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 " @@ -733,7 +733,7 @@ msgstr "" "bajtovou znakovou sadu. Bez rozšíření mbstring neumí phpMyAdmin správně " "rozdělovat řetězce a proto to může mít nečekané následky." -#: index.php:458 +#: index.php:459 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." @@ -741,7 +741,7 @@ msgstr "" "Rozšíření curl nebylo nalezeno a allow_url_fopen je vypnuto. Kvůli tomuto " "jsou některé funkce, jako hlášení chyb a kontrola verze, vypnuty." -#: index.php:473 +#: index.php:474 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 " @@ -753,7 +753,7 @@ msgstr "" "a]) je menší než platnost cookie nastavená v phpMyAdminovi. Z tohoto důvodu " "bude vaše přilášení neplatné dříve, než jak je nastaveno v phpMyAdminovi." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -762,17 +762,17 @@ msgstr "" "phpMyAdminovi. Z tohoto důvodu vaše přihlášení vyprší dříve než je nastavené " "v phpMyAdminovi." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte klíč pro šifrování cookies (blowfish_secret) v konfiguračním " "souboru (config.inc.php)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "Tajné heslo v konfiguraci (blowfish_secret) je příliš krátké." -#: index.php:528 +#: index.php:529 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 " @@ -784,7 +784,7 @@ msgstr "" "phpMyAdmin nastaven. Pokud tak neučiníte, může být váš server ohrožen cizími " "lidmi přistupujícími k vašemu nastavení." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -793,14 +793,14 @@ msgstr "" "Úložiště nastavení phpMyAdmina není plně dostupné, některé z rozšířených " "funkcí phpMyAdmina nelze používat. %sZjistěte proč%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Nebo alternativně jděte do oddílu 'Operace' u jakékoli databáze, kde je " "možné rovněž toto nastavit." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -809,7 +809,7 @@ msgstr "" "Používaný MySQL modul v PHP je kompilován pro MySQL %s a server používá " "verzi %s. Používání různých verzí může způsobit problémy." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -974,7 +974,7 @@ msgid "Save & close" msgstr "Uložit a zavřít" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Původní" @@ -1006,7 +1006,7 @@ msgstr "Přidat klíč" msgid "Edit index" msgstr "Upravit klíč" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Přidat %s polí do klíče" @@ -1031,10 +1031,10 @@ msgstr "Prosím zvolte které pole chcete přidat do klíče." msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Náhled SQL" @@ -1046,7 +1046,7 @@ msgstr "Simulovat dotaz" msgid "Matched rows:" msgstr "Odpovídající záznamy:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL dotaz:" @@ -1063,13 +1063,13 @@ msgstr "Jméno počítače je prázdné!" msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" @@ -1077,8 +1077,8 @@ msgstr "Hesla nejsou stejná!" msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Ukončit" @@ -1100,19 +1100,19 @@ msgstr "Šablona byla smazána." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Ostatní" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1217,40 +1217,40 @@ msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1268,7 +1268,7 @@ msgstr "Dotazy" msgid "Traffic" msgstr "Provoz" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavení" @@ -1282,16 +1282,16 @@ msgid "Please add at least one variable to the series!" msgstr "Prosím přidejte do série alespoň jednu hodnotu!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Žádná" @@ -1487,20 +1487,20 @@ msgstr "Analyzuji…" msgid "Explain output" msgstr "Vysvětlení dotazu" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Stav" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Čas" @@ -1588,10 +1588,10 @@ msgstr "" "nastavení…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Import" @@ -1664,7 +1664,7 @@ msgstr "Nebyly nalezeny parametry!" msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Nastavení stránky" @@ -1704,8 +1704,8 @@ msgid "Error text: %s" msgstr "Popis chyby: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." @@ -1743,7 +1743,7 @@ msgstr "Kopíruji databázi" msgid "Changing charset" msgstr "Měním znakovou sadu" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Zapnout kontrolu cizích klíčů" @@ -1771,71 +1771,76 @@ msgstr "Procházím" msgid "Deleting" msgstr "Odstraňuji" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Odstranit nalezené záznamy z tabulky %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Export" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "Žádná rutina nejde exportovat. Možná chybí požadovaná oprávnění." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Upravit ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Hodnoty pro sloupec %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Hodnoty pro nový sloupec" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Zadejte každou hodnotu do samostatného pole." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Přidat %d hodnot" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Skrýt pole pro dotaz" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1843,53 +1848,53 @@ msgstr "Zobrazit pole pro dotaz" msgid "Edit" msgstr "Upravit" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Odstranit" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Není automaticky ukládaný dotaz" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Proměnná %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Zvolit" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Vybrat sloupec" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Vyhledávání v tomto seznamu" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1898,15 +1903,15 @@ msgstr "" "Žádné sloupce v centrálním seznamu. Ujistěte se, že centrální sloupcový " "seznam pro databázi %s má sloupce, které se nenacházejí v aktuální tabulce." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Zobrazit více" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Jste si jistý?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1914,51 +1919,51 @@ msgstr "" "Tato akce může změnit některé definice sloupců.
Jste si jisti, že chcete " "pokračovat?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Pokračovat" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Přidat primární klíč" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Byl přidán primární klíč." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Přesměrovávám na další krok…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "První krok normalizace pro tabulku '%s' je hotový." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Konec kroku" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Druhý krok normalizace (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Hotovo" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Potvrzení částečných závislostí" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Byly zvoleny následující částečné závislosti:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1966,19 +1971,19 @@ msgstr "" "Poznámka: a,b -> d,f zahrnuje hodnoty sloupců a a b kombinaci dohromady může " "určit hodnoty sloupce d a sloupce f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Nebyly vybrány žádné částečné závislosti!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Ukaž mi možné částečné závislosti založené na datech v tabulce" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Skrýt seznam částečných závislostí" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1986,166 +1991,166 @@ msgstr "" "Vydržte! Může to trvat i několik sekund v závislosti na velikosti dat a " "počtu sloupců v tabulce." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Krok" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Budou provedeny následující úpravy:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "ODSTRANIT sloupce %s z tabulky %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Vytvořit následující tabulku" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Třetí krok normalizace (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Potvrzení tranzitivních závislostí" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Byly zvoleny následující závislosti:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nebyly vybrány žádné závislosti!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Uložit" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Skrýt parametry vyhledávání" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Vyhledávání rozsahu" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Největší hodnota sloupce:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Nejmenší hodnota sloupce:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Nejmenší hodnota:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Největší hodnota:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Skrýt parametry vyhledávání a nahrazování" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Zobrazit parametry vyhledávání a nahrazování" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje řádek dat." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Najetí myší nad bod ukáže jeho název." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pro přiblížení označte oblast grafu myší." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Klikněte na tlačítko pro návrat do původního stavu." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Klikněte na datový bod pro zobrazení a případnou úpravu řádky." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Graf můžete zvětšit táhnutím za pravý dolní roh." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Zvolte dva sloupce" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Zvolte dva odlišné sloupce" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopírovat" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Bod" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linka" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Mnohoúhelník" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrie" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Vnitřní obrys" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Vnější obrys" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Přejete si zkopírovat šifrovací klíč?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Šifrovací klíč" -#: js/messages.php:527 +#: js/messages.php:528 #, fuzzy msgid "" "MySQL accepts additional values not selectable by the slider; key in those " @@ -2154,13 +2159,13 @@ msgstr "" "Další přijaté hodnoty nelze vybrat nastavením jezdce; Zadejte tyto hodnoty " "přímo podle potřeby" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2168,24 +2173,24 @@ msgstr "" "Indikuje, že jste provedli změny na této stránce; budete vyzváni k potvrzení " "před opuštěním změn" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Prosím zvolte primární nebo unikátní klíč!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2193,90 +2198,90 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Jméno stránky" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Uložit stránku" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Uložit stránku jako" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otevřít stránku" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Odstranit stránku" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Beze jména" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Prosím vyberte stránku pro pokračování" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Prosím zadejte platný název stránky" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Přejete si uložit změny na aktuální stránce?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Stránka byla odstraněna" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exportovat relační schéma" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Přidat paramer pro sloupec „%s“." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "Bylo vytvořeno %d objektů." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Provést" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Klávesou Esc ukončíte editaci." -#: js/messages.php:575 +#: js/messages.php:576 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 "Na stránce jsou neuložené změny. Opravdu si ji přejete opustit?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Uspořádejte přetažením." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Klikněte pro seřazení výsledků podle tohoto sloupce." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2286,26 +2291,26 @@ msgstr "" "
- Control+Kliknutí nebo Alt+Kliknutí(MAC: Shift+Option+Kliknutí) " "sloupec odstraní z ORDER BY podmínky" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klikněte pro označení." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Poklepejte pro zkopírování jména pole." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klikněte na šipku
pro vybrání sloupců." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Zobrazit vše" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2314,12 +2319,12 @@ msgstr "" "editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání " "fungovat." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Prosím zadejte platný šestnáctkový řetězec. Můžete použít znaky 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2327,101 +2332,101 @@ msgstr "" "Opravdu si přejete zobrazit všechny řádky? U velké tabulky by mohlo dojít ke " "spadnutí prohlížeče." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Původní délka" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "zrušit" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Přerušené" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Úspěch" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Přetáhněte sem soubory" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Nejdříve zvolte databázi" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Vytisknout" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Většinu polí můžete přímo upravit
dvojklikem na jejich obsah." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "Většinu polí můžete přímo upravit
kliknutím na jejich obsah." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Přejít na odkaz:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Zkopírovat název pole." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klikněte pravým tlačítkem myši pro zkopírování názvu pole do schránky." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Více" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Zobrazit panel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Skrýt panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Zobrazit skryté položky navigačního panelu." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Spojit s hlavním panelem" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Odpojit od hlavního panelu" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Požadovaná stránka nebyla nalezena v historii, možná jí již vypršela " "platnost." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2431,48 +2436,48 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "aktuální" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Vytvořit pohled" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Došlo k chybě při běhu Javascriptu. Přejete si odeslat chybové hlášení?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Změnit nastavení hlášení" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Zobrazit podrobnosti hlášení" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Váš export není kompletní kvůli omezené době běhu PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2481,58 +2486,58 @@ msgstr "" "Varování: Formulář na této stránce má více než %d polí. Při jeho odeslání " "mohou být kvůli nastavení PHP max_input_vars některá z nich ignorována." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Na serveru došlo byly zjištěny chyby!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Prosím podívejte se na spodní část okna." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorovat vše" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Podle vašeho nastavení jsou právě odesílány, prosím buďte trpěliví." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Spustit tento dotaz znovu?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Opravdu si přejete odstranit tuto záložku?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Při získávání ladících informací došlo k neznámé chybě." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s dotazů bylo provedno %s krát během %s sekund." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "Zadáno %s argumentů" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Zobrazit argumenty" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Skrýt argumenty" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Doba běhu:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2541,349 +2546,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Zkopírovat tabulky do" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Přidat tabulce předponu" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Nahradit tabulce předponu" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Předchozí" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Následující" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Dnešek" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "leden" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "únor" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "březen" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "duben" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "květen" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "červen" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "červenec" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "srpen" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "září" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "říjen" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "listopad" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "pro" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Pátek" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Týd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuty" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekundy" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Prosím opravte hodnotu v tomto poli" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Prosím zadejte platný e-mail" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Prosím zadejte platnou adresu URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Prosím zadejte platné datum" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadejte platné datum dle ISO8601" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Prosím zadejte platné číslo" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Prosím zadejte platné číslo platební karty" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Prosím zadávejte pouze číslice" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Prosím zadejte stejnou hodnotu znovu" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Prosím nezadávejte více než {0} znaků" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Prosím zadejte více než {0} znaků" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosím vložte hodnotu delší než {0} znaků a kratší než {1} znaků" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadejte hodnotu mezi {0} a {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadejte číslo menší nebo rovno {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadejte číslo větší nebo rovno {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Prosím zadejte platné datum nebo čas" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Prosím zadejte platné hexadecimalní číslo" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Chyba" @@ -2916,6 +2941,8 @@ msgstr "Selhalo formátování textu pro pravidlo „%s“." #, php-format msgid "Error in reading file: The file '%s' does not exist or is not readable!" msgstr "" +"Chyba při čtení souboru: Soubor '%s' neexistuje, nebo se jej nepodařilo " +"přečíst" #: libraries/Advisor.php:494 #, php-format @@ -2947,20 +2974,20 @@ msgid "Charset" msgstr "Znaková sada" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Porovnávání" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binární" @@ -3156,7 +3183,7 @@ msgid "Czech-Slovak" msgstr "Čeština/Slovenština" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "neznámý" @@ -3210,7 +3237,7 @@ msgstr "" msgid "Font size" msgstr "Velikost písma" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3218,47 +3245,47 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Žádné záložky" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Konzole pro SQL dotazy" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Nepodařilo se načíst konfigurační soubor!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Server neodpovídá." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Podrobnosti…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Chybějící parametr:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." @@ -3353,57 +3380,57 @@ msgstr "Přidat:" msgid "Del:" msgstr "Smazat:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL dotaz na databázi %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Provést dotaz" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Uložená vyhledávání:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nová záložka" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Uložit vyhledávání" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Upravit uložené vyhledávání" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Odstranit uložené vyhledávání" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "alespoň jedno ze slov" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "všechna slova" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "přesnou frázi" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "jako regulární výraz" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Výsledky vyhledávání pro „%s“ %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3411,7 +3438,7 @@ msgstr[0] "Celkem: %s odpovídající záznam" msgstr[1] "Celkem: %s odpovídající záznamy" msgstr[2] "Celkem: %s odpovídajících záznamů" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -3419,46 +3446,41 @@ msgstr[0] "%1$s odpovídající záznam v %2$s" msgstr[1] "%1$s odpovídající záznamy v %2$s" msgstr[2] "%1$s odpovídajících záznamů v %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Projít" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Odstranit nalezené záznamy z tabulky %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Vyhledávání v databázi" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slova nebo hodnoty, které si přejete vyhledat (zástupný znak: „%“):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Najít:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Slova jsou oddělena mezerou („ “)." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "V tabulkách:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Odznačit vše" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Uvnitř pole:" @@ -3478,30 +3500,30 @@ msgstr "Filtrovat řádky" msgid "Search this table" msgstr "Vyhledávání v této tabulce" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "První" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Předchozí" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Následující" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Poslední" @@ -3510,7 +3532,7 @@ msgstr "Poslední" msgid "All" msgstr "Všechno" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Počet řádků:" @@ -3519,8 +3541,8 @@ msgstr "Počet řádků:" msgid "Sort by key" msgstr "Seřadit podle klíče" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3542,10 +3564,10 @@ msgstr "Seřadit podle klíče" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Nastavení" @@ -3585,29 +3607,29 @@ msgstr "Text (WKT)" msgid "Well Known Binary" msgstr "Binární (WKB)" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Řádek byl smazán." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Ukončit" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Váš SQL-dotaz byl úspěšně vykonán." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3615,73 +3637,73 @@ msgid "" msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Zobrazeny záznamy %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d celkem, %2$d v dotazu" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d celkem" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Dotaz trval %01.4f sekund." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Zaškrtnuté:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Zaškrtnout vše" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Zobrazit data GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Odkaz nebyl nalezen!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Žádná" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Převést na Kanu" @@ -3689,24 +3711,24 @@ msgstr "Převést na Kanu" msgid "Too many error messages, some are not displayed." msgstr "Příliš mnoho chyb, některé nebudou zobrazeny." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Nahlásit" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Příště odeslat hlášení automaticky" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Soubor nebyl nahrán." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3714,48 +3736,49 @@ msgstr "" "Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " "zadána v HTML formuláři." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Soubor byl nahrán jen částečně." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Chybějící adresář pro dočasné soubory." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Chyba při zapisování souboru na disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Nahrávání souboru zastaveno rozšířením." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.php:424 +#: libraries/File.php:445 +#, fuzzy msgid "File is a symbolic link" -msgstr "" +msgstr "Soubor je symbolická linka." -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Soubor nelze přečíst!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Chyba při přejmenování nahraného soubory, viz [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Chyba při přesouvání nahraného souboru." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Nahraný soubor nelze přečíst." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3764,28 +3787,28 @@ msgstr "" "Pokusili jste se importovat soubor s nepodporovanou kompresí (%s). Buďto " "podpora není implementována nebo je vypnuta ve vašem nastavení." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Používáte revizi z Gitu %1$s z větve %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Chybí informace o revizi Gitu!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Náhled pro tisk" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Klikněte na pruh pro posunutí stránky nahoru" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Pro použití phpMyAdmina musíte mít zapnutý Javascript!" @@ -3794,20 +3817,20 @@ msgid "No index defined!" msgstr "Není definován žádný klíč!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Klíče" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3817,59 +3840,59 @@ msgstr "Klíče" msgid "Action" msgstr "Operace" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Název klíče" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Mohutnost" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komentář" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primární klíč byl odstraněn." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Klíč %s byl odstraněn." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Odstranit" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3878,19 +3901,20 @@ msgstr "" "Klíče %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " "odstraněn." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Strana číslo:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 +#, fuzzy msgid "Ignoring unsupported language code." -msgstr "" +msgstr "Ignorován nepodporovaný jazykový kód." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Jazyk" @@ -3916,11 +3940,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3939,14 +3963,15 @@ msgid "View" msgstr "Pohled" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3955,8 +3980,8 @@ msgid "Table" msgstr "Tabulka" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3964,45 +3989,45 @@ msgstr "Tabulka" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Vyhledávání" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Vložit" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Oprávnění" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Úpravy" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Sledování" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4018,16 +4043,16 @@ msgstr "Spouště" msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Dotaz" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4035,20 +4060,20 @@ msgstr "Rutiny" msgid "Events" msgstr "Události" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Návrhář" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centrální sloupce" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databáze" @@ -4057,39 +4082,39 @@ msgid "User accounts" msgstr "Uživatelské účty" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binární log" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikace" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Proměnné" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Úložiště" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Rozšíření" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4097,7 +4122,7 @@ msgstr[0] "Byl ovlivněn %1$d řádek." msgstr[1] "Byly ovlivněny %1$d řádky." msgstr[2] "Bylo ovlivněno %1$d řádků." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4105,7 +4130,7 @@ msgstr[0] "Byl smazán %1$d řádek." msgstr[1] "Byly smazány %1$d řádky." msgstr[2] "Bylo smazáno %1$d řádků." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4154,27 +4179,27 @@ msgstr "Oblíbené tabulky" msgid "Favorites" msgstr "Oblíbené" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Prosím zadejte název tohoto vyhledávání." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Chybějící informace pro uložení vyhledávání." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Položka s tímto názvem již existuje." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Chybějící informace pro odstranění vyhledávání." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Chybějící informace pro načtení vyhledávání." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Chyba při nahrávání vyhledávání." @@ -4236,7 +4261,7 @@ msgstr "Zobrazit otevřené tabulky" msgid "Show slave hosts" msgstr "Zobrazit podřízené servery" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" @@ -4292,69 +4317,69 @@ msgstr[0] "%d minuta" msgstr[1] "%d minuty" msgstr[2] "%d minut" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Nejsou dostupné podrobnější informace o tomto úložišti." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Úložiště %s je na tomto MySQL serveru je dostupné." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Úložiště %s je na tomto MySQL serveru vypnuté." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložiště %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Neznámý stav tabulky:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Zdrojová databáze „%s“ nebyla nalezena!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Cílová databáze „%s“ nebyla nalezena!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Chybné jméno databáze:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Chybné jméno tabulky:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Chyba při přejmenování tabulky %1$s na %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabulka %1$s byla přejmenována na %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Nepodařilo se uložit nastavení prohlížení tabulky!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4363,7 +4388,7 @@ msgstr "" "Selhalo vyčištění tabulky s nastavením procházení (viz $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4373,19 +4398,19 @@ msgstr "" "Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení " "stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Jméno primárního klíče musí být „PRIMARY“!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Klíč nelze přejmenovat na „PRIMARY“!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nebyla zadána žádná část klíče!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Chyba při vytváření cizího klíče na %1$s (zkotrolujte typ pole)" @@ -4697,7 +4722,7 @@ msgid "Date and time" msgstr "Datum a čas" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Řetězce" @@ -4712,126 +4737,126 @@ msgstr "Prostorové" msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statická analýza:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Při analýze bylo nalezeno %d chyb." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Bez vysvětlení SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analyzovat výstup příkazu EXPLAIN na %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Bez PHP kódu" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Provést dotaz" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Vytvořit PHP kód" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Obnovit" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilování" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Upravit zde v řádku" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Chybějící parametr:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Přejít na databázi „%s“." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Adresář určený pro upload souborů nemohl být otevřen." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Nebyl zvolen žádný soubor pro nahrání!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vyprázdnit" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Spustit" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Uživatelé" @@ -4845,7 +4870,7 @@ msgstr "za minutu" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "za hodinu" @@ -4853,12 +4878,12 @@ msgstr "za hodinu" msgid "per day" msgstr "za den" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Vyhledat:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4866,7 +4891,7 @@ msgstr "Vyhledat:" msgid "Description" msgstr "Popis" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Použít tuto hodnotu" @@ -4905,22 +4930,22 @@ msgstr "ANO" msgid "NO" msgstr "NE" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Název" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Délka/Množina" @@ -4929,7 +4954,7 @@ msgstr "Délka/Množina" msgid "Attribute" msgstr "Vlastnost" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4946,11 +4971,11 @@ msgstr "Přidat sloupec" msgid "Select a column." msgstr "Zvolte sloupec." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Přidat nový sloupec" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4958,7 +4983,7 @@ msgstr "Přidat nový sloupec" msgid "Attributes" msgstr "Vlastnosti" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4967,26 +4992,26 @@ msgstr "" "V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není " "kompatibilní s phpMyAdminem a může způsobit poškození dat!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Chybné číslo serveru: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "V nastavení máte špatnou přihlašovací metodu:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4997,20 +5022,20 @@ msgstr "" "nastavení pro [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. phpMyAdmin " "momentálně používá výchozí časové pásmo databázového serveru." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Chyba: neplatný token" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Pokus o přepsání GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "možný pokus o exploit" @@ -5615,7 +5640,7 @@ msgid "Compress on the fly" msgstr "Komprimovat za letu" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfigurační soubor" @@ -5720,12 +5745,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Časový limit běhu skriptu" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Použi %s příkaz" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Uložit jako soubor" @@ -5735,7 +5760,7 @@ msgstr "Znaková sada souboru" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formát" @@ -5860,7 +5885,7 @@ msgid "Save on server" msgstr "Uložit na server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Přepsat existující soubory" @@ -5873,7 +5898,7 @@ msgid "Remember file name template" msgstr "Pamatovat si vzor pro jména souborů" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" @@ -5882,7 +5907,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Použít zpětné uvozovky u jmen tabulek a polí" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" @@ -5912,7 +5937,7 @@ msgstr "Exportovat související metadata z úložiště konfigurace phpMyAdmin" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Přidat %s" @@ -6085,7 +6110,7 @@ msgid "Customize the navigation tree." msgstr "Přizpůsobení navigačního stromu." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servery" @@ -6999,7 +7024,7 @@ msgstr "HTTP doméma" msgid "Authentication method to use." msgstr "Která přihlašovací metoda se má použít." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Typ přihlašování" @@ -7755,7 +7780,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Povolit záložku Pro vývojáře v nastaveních" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Zkontrolovat nejnovější verzi" @@ -7763,10 +7788,10 @@ msgstr "Zkontrolovat nejnovější verzi" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Povolí kontrolu poslední verze phpMyAdmina na hlavní stránce." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Kontrola verze" @@ -7919,24 +7944,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Text OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Seznam oblíbených je plný!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabulka %s byla vyprázdněna." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Pohled %s byl odstraněn." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabulka %s byla odstraněna." @@ -7950,12 +7975,12 @@ msgid "Position" msgstr "Pozice" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Typ události" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID serveru" @@ -7964,7 +7989,7 @@ msgid "Original position" msgstr "Původní pozice" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informace" @@ -7978,16 +8003,16 @@ msgstr "Zobrazit zkrácené dotazy" msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Žádné databáze" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -7995,26 +8020,26 @@ msgstr[0] "%1$d databáze byla úspěšně zrušena." msgstr[1] "%1$d databáze byly úspěšně zrušena." msgstr[2] "%1$d databází bylo úspěšně zrušeno." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Řádků" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Celkem" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Navíc" @@ -8041,33 +8066,33 @@ msgstr "" msgid "Enable statistics" msgstr "Zobrazit statistiky" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Proměnné a nastavení serveru" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Nastavení proměnné selhalo" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Nebyl zadán SQL dotaz pro načtení dat." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Ve zvolené tabulce nejsou žádná číselná pole pro vykreslení do grafu." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Nebyla nalezena žádná data" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabulka %1$s byla úspěšně změněna." @@ -8111,7 +8136,7 @@ msgstr "Vybraná pole byla úspěšně přesunuta." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Chyba dotazu" @@ -8128,12 +8153,12 @@ msgstr "Změnit" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Klíč" @@ -8154,13 +8179,13 @@ msgstr "Fulltext" msgid "Distinct values" msgstr "Odlišné hodnoty" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žádná změna" @@ -8183,31 +8208,35 @@ msgstr "" "Nepodařilo se nahrát pluginy schémata, zkontrolujte prosím vaší instalaci!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Žádné heslo" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Heslo:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Heslo znovu:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hašovací funkce pro heslo:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8216,83 +8245,83 @@ msgstr "" "Tato metoda připojení k serveru vyžaduje použití 'SSL spojení' nebo " "'nešifrovaného spojení s podporou šifrování hesla pomocí RSA'." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportuji databáze z aktuálního serveru" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportuji tabulky z databáze „%s“" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportuji řádky z tabulky „%s“" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Exportní šablony:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nová šablona:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Jméno šablony" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Vytvořit" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Existující šablony:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Šablona:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Aktualizovat" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Zvolte šablonu" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Způsob exportu:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rychlý - zobrazí jen minimum nastavení" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Vlastní - zobrazí všechna nastavení" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Databáze:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabulky:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formát:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Parametry pro výstupní formát:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8300,52 +8329,52 @@ msgstr "" "Posuňte se níže pro nastavení vybraného formátu a ignorujte nastavení " "ostatních." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Převod znakové sady:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Řádky:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Vypsat některé řádky" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Začít od řádku:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Všechny řádky" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Výstup:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Uložit na serveru v adresáři %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Šablona pro jméno souboru:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ bude nahrazen jménem server" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ bude nahrazen jménem databáze" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ bude nahrazen jménem tabulky" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8357,99 +8386,99 @@ msgstr "" "následující nahrazení: %3$s. Jakýkoliv jiný text zůstane zachován beze " "změny. Více podrobností je ve %4$sFAQ%5$s." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "použít i pro budoucí exporty" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Znaková sada souboru:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Komprese:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zazipováno" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "zagzipováno" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Zobrazit výstup jako text" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exportovat databáze jako samostatné soubory" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exportovat tabulky jako samostatné soubory" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Přejmenovat exportovanou databázi/tabulky/sloupce" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Uložit do souboru" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Přeskočit tabulky větší než" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Zvolte databázi" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Vybrat tabulku" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nové jméno databáze" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nové jméno tabulky" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Starý název sloupce" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nový název sloupce" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s z větve %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "žádná větev" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revize Gitu:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "zapsal %2$s dne %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "vytvořil %2$s dne %1$s" @@ -8898,13 +8927,13 @@ msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatek místa pro uložení souboru %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8912,74 +8941,74 @@ msgstr "" "Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte " "přepsání souboru." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávnění uložit výpis do souboru %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK nastal]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Obsah struktury se zobrazí po kliknutí na její jméno." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Přejít na databázi: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Upravit nastavení pro %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Přejít na tabulku: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Přejít na pohled: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Dotazy UPDATE nebo DELETE mohou být simulovány pouze na jedné tabulce." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8992,78 +9021,79 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Vytvořit klíč na  %s polích" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Skrýt" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkce" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Toto pole možná nepůjde
kvůli délce upravit." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Nebo" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "soubor z adresáře pro upload:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Upravit/Vložit" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "a poté" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9073,8 +9103,8 @@ msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9085,31 +9115,31 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Úspěch!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Pouze strukturu" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Strukturu a data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Jen data" @@ -9120,14 +9150,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Přidat integritní omezení" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Upravit oprávnění" @@ -9172,8 +9202,8 @@ msgstr "Procedury:" msgid "Views:" msgstr "Pohledy:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Zobrazit" @@ -9219,17 +9249,17 @@ msgstr[0] "nalezen %s výsledek" msgstr[1] "nalezeny %s výsledky" msgstr[2] "nalezeno %s výsledků" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Vymazat filtr" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Sbalit vše" @@ -9245,7 +9275,7 @@ msgstr "Neplatný název třídy \"%1$s\", používám výchozí \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Nepodařilo se přidat sloupce!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Rozbalit/sbalit" @@ -9264,7 +9294,7 @@ msgstr "Nové" msgid "Database operations" msgstr "Operace s databází" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Zobrazit skryté položky" @@ -9371,11 +9401,11 @@ msgstr "" "Vyberte sloupec, který může být rozdělen do více než jednoho. (při výběru " "'žádný ze sloupců', budete přesunuti na další krok)" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Vyberte jeden…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Žádný ze sloupců" @@ -9634,8 +9664,8 @@ msgid "Rename database to" msgstr "Přejmenovat databázi na" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9681,179 +9711,179 @@ msgstr "(po jednom)" msgid "Move table to (database.table)" msgstr "Přesunout tabulku do (databáze.tabulka)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Přejmenovat tabulku na" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentář k tabulce" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Parametry tabulky" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Úložiště" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Změnit kódování všech sloupců" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopírovat tabulku do (databáze.tabulka)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Přepnout na zkopírovanou tabulku" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Údržba tabulky" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Tabulka kontrolních součtů" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Opravit rozdrobení tabulky" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Vyrovnávací paměť pro tabulku %s byla vyprázdněna." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Opravit tabulku" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Odstranit data nebo tabulku" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Vyprázdnit tabulku (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analyzovat" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Zkontrolovat" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimalizovat" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Přestavět" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Opravit" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Vyprázdnit" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Vyhledat první platný záznam" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Údržba oddílů" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Oddíl %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Zrušit dělení" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Nelze přesunout tabulku na sebe samu!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Nelze kopírovat tabulku na sebe samu!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabulka %s byla přesunuta do %s. Práva byla upravena." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabulka %s byla zkopírována do %s. Práva byla upravena." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabulka %s byla přesunuta do %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabulka %s byla zkopírována do %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Jméno tabulky je prázdné!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Tento formát nemá žádná nastavení" @@ -9882,18 +9912,18 @@ msgstr "Barevné šipky" msgid "Only show keys" msgstr "Jen zobrazit klíče" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Nepodařilo se připojit: chybné nastavení." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Vítejte v %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9902,7 +9932,7 @@ msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9914,7 +9944,7 @@ msgstr "" "php a ujistěte se, že jsou totožné s těmi, které máte od administrátora " "MySQL serveru." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Zkusit se připojit znovu" @@ -9939,15 +9969,15 @@ msgstr "Jméno:" msgid "Server Choice:" msgstr "Volba serveru:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Zadaný kód nebyl správný, zkuste to znovu!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Zadejte, prosím, správný kód!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Nemáte povolení se přihlásit k tomuto MySQL serveru!" @@ -10008,7 +10038,7 @@ msgstr "Nastavení výpisu dat" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" @@ -10017,7 +10047,7 @@ msgstr "Vypisuji data pro tabulku" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Událost" @@ -10025,8 +10055,8 @@ msgstr "Událost" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definice" @@ -10112,7 +10142,7 @@ msgstr "Přidat jména polí na první řádek:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Počítač:" @@ -10643,7 +10673,7 @@ msgstr "Obsah" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Další" @@ -11026,18 +11056,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "žádný popisek" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11045,41 +11075,41 @@ msgid "" "configuration storage there." msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replikace nadřízeného" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Zobrazit připojené podřízené" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Nastavení nadřízeného" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11099,19 +11129,19 @@ msgstr "" "přejete replikovat většinu databází) nebo můžete zvolit opačný přístup - jen " "vybrat databáze, které chcete synchronizovat. Prosím zvolte požadovaný režim:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replikovat všechny databáze s výjimkou:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Nereplikovat databáze s výjimkou:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Prosím vyberte databáze:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11119,7 +11149,7 @@ msgstr "" "Nyní, prosím, přidejte následující řádky na konec sekce [mysqld] ve vašem " "souboru my.cnf a poté restartutje MySQL server." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11128,71 +11158,71 @@ msgstr "" "Prosím klikněte na tlačítko po restartování MySQL serveru. Poté byste měli " "vidět zprávu informující vás že server je nastaven jako nadřízený." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replikace podřízeného" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Nezabezpečené připojení" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "SQL vlákno pro podřízený server neběží!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "IO vlákno pro podřízený server neběží!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server je nastaven jako podřízený v replikačním procesu. Přejete si:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Zobrazit tabulku se stavem podřízených" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Ovládání podřízeného:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Kompletně spustit" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Kompletně zastavit" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Resetovat podřízený server" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Spustit jen SQL vlákno" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Zastavit jen SQL vlákno" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Spustit jen IO vlákno" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Zastavit jen IO vlákno" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Změnit nebo přenastavit nadřízený server" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11201,26 +11231,26 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Práce s chybami:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném " "serveru!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Přeskočit současnou chybu" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Přeskočit %s dalších chyb." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11229,11 +11259,11 @@ msgstr "" "Tento server není nastaven jako nadřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Nastavení podřízeného" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11241,53 +11271,53 @@ msgstr "" "Ujistěte se, že máte unikátní ID serveru ve vašem konfiguračním souboru (my." "cnf). Pokud ne, prosím přidejte následující řádek to sekce [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Jméno uživatele:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Jméno uživatele" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Heslo" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Stav nadřízeného" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Stav podřízeného" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Proměnná" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Počítač" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11295,39 +11325,39 @@ msgstr "" "V tomto seznamu jsou zobrazeny jen podřízené servery spuštěné s parametrem --" "report-host=host_name." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokální" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Jakýkoliv uživatel" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Použít textové pole:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11335,77 +11365,77 @@ msgstr "" "Pokud je použita tabulka Host, toto pole je ignorováno a jsou použity " "hodnoty uložené v tabulce Host." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Heslo znovu" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Vytvořit heslo:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replikace byla úspěšně spuštěna." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Chyba při spuštění replikace." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replikace byla úspěšně zastavena." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Chyba při zastavování replikace." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replikace byla úspěšně obnovena." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Chyba při obnovování replikace." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Úspěch." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Chyba." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Neznámá chyba" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Nepodařilo se připojit k nadřízenému %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nepodařilo se zjistit pozici v logu na nadřízeném serveru. Pravděpodobně je " "na něm problém s přístupovými právy." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Nepodařilo se změnit nadřízeného!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Nadřízený server bych úspěšně změněn na %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11426,7 +11456,7 @@ msgstr "Byla změněna událost %1$s." msgid "Event %1$s has been created." msgstr "Byla vytvořena událost %1$s." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Při zpracování požadavku došlo k několika chybám:" @@ -11435,75 +11465,75 @@ msgstr "Při zpracování požadavku došlo k několika chybám:" msgid "Edit event" msgstr "Upravit událost" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Podrobnosti" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Název události" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Změnit na %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Spustit v" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Spustit každých" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Počátek" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Konec" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Při dokončení zachovat" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Zadavatel" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Zadavatel musí být ve tvaru \"uživatel@počítač\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Musíte zadat jméno události!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Musíte zadat platný interval pro událost." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Musíte zadat platnou dobu spuštění události." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Musíte zadat správný typ události." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Musíte zadat definici události." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Chyba při zpracování požadavku:" @@ -11524,7 +11554,7 @@ msgstr "Stav plánovače událostí" msgid "The backed up query was:" msgstr "Záložní dotaz byl:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Vrací" @@ -11540,96 +11570,96 @@ msgstr "" "přejete se těmto problémům vyhnout, začněte, prosím, používat nové rozšíření " "„mysqli“." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Upravit rutinu" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: „%s“" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Byla vytvořena rutina %1$s." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Bohužel se nepodařilo obnovit odstraněnou rutinu." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Byla změněna rutina %1$s. Práva byla upravena." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Byla změněna rutina %1$s." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Jméno rutiny" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametry" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Směr" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Přidat parametr" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Odstranit poslední parametr" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Návratová délka/hodnoty" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Možnosti návratové hodnoty" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Je deterministická" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Typ zabezpečení" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Přístup k SQL datům" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Musíte zadat jméno rutiny!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "„%s“ je chybný směr parametru." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11637,24 +11667,24 @@ msgstr "" "Musíte zadat parametr „Délka/Hodnoty“ pro parametry typu ENUM, SET, VARCHAR " "nebo VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Pro každý parametr musíte zadat jeho jméno a typ." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Musíte zadat platný návratový typ rutiny." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Musíte zadat definici rutiny." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Výsledek spuštění rutiny %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -11662,13 +11692,13 @@ msgstr[0] "Posledním příkazem v proceduře byla ovlivněna %d řádka." msgstr[1] "Posledním příkazem v proceduře byly ovlivněny %d řádky." msgstr[2] "Posledním příkazem v proceduře bylo ovlivněno %d řádků." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Spustit rutinu" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parametry rutiny" @@ -11690,32 +11720,32 @@ msgstr "Byla vytvořena spoušť %1$s." msgid "Edit trigger" msgstr "Upravit spoušť" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Název spouště" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Spouštění" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Musíte zadat jméno spouště!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Musíte zadat platné časování spouště!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Musíte zadat platnou událost pro spoušť!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Musíte zadat platné jméno tabulky!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Musíte zadat definici spouště." @@ -11840,92 +11870,92 @@ msgstr "Znakové sady a porovnávání" msgid "Databases statistics" msgstr "Statistiky databází" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Žádná oprávnění." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Umožňuje vybírat data." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Umožňuje měnit data." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Umožňuje mazat data." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Umožňuje prohlížet procesy všech uživatelů." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a odstraňovat klíče." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11935,126 +11965,100 @@ msgstr "" "pro většinu operací pro správu serveru jako nastavování globálních " "proměnných a zabíjení vláken jiných uživatelů." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Umožňuje plánovat úlohy pomocí plánovače." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Umožňuje vytváření a mazání spouští." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Žádná" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Skupina uživatele" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Požaduje zabezpečené připojení." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Požaduje zabezpečené připojení." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Omezení zdrojů" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12062,373 +12066,354 @@ msgstr "" "Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " "spustit za hodinu." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutiny" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Umožňuje měnit a rušit uložené procedury." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Umožňuje spouštět uložené procedury." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: Názvy oprávnění MySQL jsou uváděny anglicky." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Správa" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globální oprávnění" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globální" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " "s oprávněními." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Přihlašování přes cookie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Přihlašování signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Přihlašování přes cookie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Přihlašování" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" "Přístupové údaje pro tohoto uživatele již existují (možná pro jiný počítač)." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Název počítače:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Název počítače" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Neměnit heslo" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Rozšíření pro přihlašování" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hašovací funkce pro heslo:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Byla zrušena práva pro %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Přidat uživatele" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Databáze pro uživatele" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Přidělit všechna oprávnění na databázi „%s“." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Uživatelé mající přístup k „%s“" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Uživatel byl přidán." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Přidělování" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Jakýkoliv" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globální" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "závislé na databázi" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "maska" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "závislé na tabulce" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Upravit oprávnění" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Zrušit" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Upravit skupinu" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… zachovat původního uživatele." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… smazat původního uživatele ze všech tabulek." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… smazat uživatele a poté znovu načíst oprávnění." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Vytvořit nového uživatele se stejnými oprávněními a …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Odstranit vybrané uživatele" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Skupina uživatele" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Odstranit databáze se stejnými jmény jako uživatelé." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které si přejete odstranit!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Oprávnění pro %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Uživatel" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nový" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Upravit oprávnění:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Uživatel" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Přehled uživatelů" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12441,7 +12426,7 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12460,11 +12445,11 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Uživatel byl přidán." @@ -12773,12 +12758,12 @@ msgstr "Příkaz" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtry" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Zobrazit jen aktivní" @@ -12799,12 +12784,12 @@ msgstr "za minutu:" msgid "per second:" msgstr "za sekundu:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12828,18 +12813,18 @@ msgstr "Zobrazit neformátované hodnoty" msgid "Related links:" msgstr "Související odkazy:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" "Počet spojení, která byla ukončena bez korektního ukončení ze strany klienta." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet chybných připojení k MySQL serveru." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12849,16 +12834,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcí, které využily dočasnou mezipaměť binárního záznamu." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Celkový počet připojení (i chybných) k MySQL serveru." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12869,18 +12854,18 @@ msgstr "" "Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " "bude používat větší dočasné tabulky v paměti." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" "Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12888,7 +12873,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12896,23 +12881,23 @@ msgstr "" "Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " "použit INSERT DEKAYED má přiděleno jedno vlákno." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12921,7 +12906,7 @@ msgstr "" "Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " "tabulce daného jména." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12931,7 +12916,7 @@ msgstr "" "provádí mnoho kompletních procházení klíčů. Na příklad SELECT col1 FROM foo, " "pokud je col1 v klíči." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12939,7 +12924,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z klíče. Vysoká hodnota " "znamená, že dotazy správně využívají klíče." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12949,7 +12934,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na sloupec s klíčem s omezením rozsahu nebo " "prohledáváte klíč." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12957,7 +12942,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z klíče. Používané pro " "optimalizaci dotazů ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12969,7 +12954,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají klíčů." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12979,35 +12964,35 @@ msgstr "" "Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká " "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné klíče." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránek obsahujících data (změněné i nezměněné)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránek, na které je požadavek na vyprázdnění." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Počet volných stránek." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13016,7 +13001,7 @@ msgstr "" "Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " "čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13028,11 +13013,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13040,7 +13025,7 @@ msgstr "" "Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " "dotaz prochází velkou část tabulky v náhodném pořadí." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13048,11 +13033,11 @@ msgstr "" "Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " "musí procházet celou tabulku." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13060,7 +13045,7 @@ msgstr "" "Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " "nutné přečíst stránku ze souboru." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13073,55 +13058,55 @@ msgstr "" "k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " "měla by tato hodnota být malá." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13129,35 +13114,35 @@ msgstr "" "Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " "pokračováním." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Počet skutečných zápisů do logovacího souboru." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Počet synchronizací fsync() provedených na logovacích souborech." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13165,51 +13150,51 @@ msgstr "" "Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " "uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Počet zámků řádku, na které se v současné době čeká." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Kolikrát se muselo čekat na zámek řádku." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13217,7 +13202,7 @@ msgstr "" "Počet bloků ve mezipaměti klíčů, které byly změněny, ale nebyly zapsány na " "disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13225,7 +13210,7 @@ msgstr "" "Počet nepoužitých bloků ve mezipaměti klíčů. Pomocí této hodnoty poznáte jak " "moc je mezipaměť využitá." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13234,15 +13219,15 @@ msgstr "" "Počet použitých bloků v mezipaměti klíčů. Tato hodnota určuje maximum bloků, " "které kdy byly obsazeny najednou." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Procento využití mezipaměti klíčů (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Počet požadavků na přečtení klíče z mezipaměti." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13252,7 +13237,7 @@ msgstr "" "pravděpodobně máte malou mezipaměť (key_buffer_size). Úspěšnost mezipaměti " "můžete spočítat jako Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13260,22 +13245,22 @@ msgstr "" "Úspěšnost mezipaměti klíčů spočítaná jako poměr skutečných a požadovaných " "čtení (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Počet požadavků na zápis bloku klíče do mezipaměti." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Počet skutečných zápisů bloku klíče na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procento skutečných zápisů v porovnání s požadavky na zápis (vypočítaná " "hodnota)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13285,17 +13270,17 @@ msgstr "" "dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " "žádný dotaz ještě nebyl kompilován." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Maximální počet současně používaných připojení od spuštění serveru." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13303,19 +13288,19 @@ msgstr "" "Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " "pravděpodobně máte malou mezipaměť pro tabulky." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otevřených streamů (používané převážně pro logování)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13325,19 +13310,19 @@ msgstr "" "problém s jejím rozdrobením, která může být vyřešena spuštěním příkazu FLUSH " "QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Volná paměť v mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Počet zásahů mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Počet dotazů přidaných do mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13348,7 +13333,7 @@ msgstr "" "Tato hodnota může pomoci v nastavení velikosti mezipaměti. Mezipaměť používá " "strategii LRU (nejdéle nepoužité) pro vyřazování dotazů." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13356,19 +13341,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Počet dotazů v mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků v mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13376,12 +13361,12 @@ msgstr "" "Počet spojení, které nevyužívaly klíče. Pokud tato hodnota není 0, měli " "byste zkontrolovat klíče tabulek." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13389,7 +13374,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat klíče tabulek.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13397,38 +13382,38 @@ msgstr "" "Počet spojení, které používaly intervalové vyhledávání na první tabulce. " "(Tato hodnota obvykle není kritická i když je vysoká.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Počet dočasných tabulek v současné době otevřených podřízeným serverem." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13437,23 +13422,23 @@ msgstr "" "Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " "vysoké hodnotě zvažte zvýšení sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Počet seřazených řádek." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Počet řazení provedených procházením tabulky." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet okamžitých získání zámku tabulky." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13464,7 +13449,7 @@ msgstr "" "problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " "tabulky nebo použít replikaci." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13474,11 +13459,11 @@ msgstr "" "Threads_created/Connections. Pokud je tato hodnota červená, měli byste " "zvýšit thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13489,11 +13474,11 @@ msgstr "" "velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " "mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Úspěšnost mezipaměti vláken (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." @@ -13522,37 +13507,37 @@ msgstr "Záložky pro práci s databází" msgid "Table level tabs" msgstr "Záložky pro práci s tabulkou" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Zobrazit uživatele" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Přidat skupinu" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Upravit skupinu: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Přiřazení nabídky pro skupinu uživatelů" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Název skupiny:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Záložky pro práci se serverem" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Záložky pro práci s databází" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Záložky pro práci s tabulkou" @@ -13652,7 +13637,7 @@ msgstr "Spustit SQL dotaz(y) na databázi %s" msgid "Run SQL query/queries on table %s" msgstr "Spustit SQL dotaz(y) na databázi %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Vyčistit" @@ -13737,112 +13722,112 @@ msgstr "Vypnout teď" msgid "Version" msgstr "Verze" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Vytvořeno" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Aktualizováno" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Odstranit verzi" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Informace o sledování" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Snímek struktury" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "zapnuté" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "není zapnuté" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Sledování příkazů" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Odstranit tyto informace o sledování této tabulky" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nejsou k dispozici žádná data" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zobrazit %1$s mezi daty %2$s a %3$s od uživatele %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Výpis SQL (stáhnout soubor)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Výpis SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Provedení SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportovat jako %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Příkaz pro úpravu dat" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Příkaz pro definici dat" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Uživatel" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Žádná" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Uložené příkazy pro změnu struktury byly úspěšně smazány" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Uložené příkazy pro změnu dat byly úspěšně smazány" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13850,62 +13835,62 @@ msgstr "" "Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, " "že na tuto operací máte oprávnění." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Záznamy o sledování tabulky `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledování pro %1$s bylo zapnuto ve verzi %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledování pro %1$s bylo vypnuto ve verzi %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Verze %1$s z %2$s byla odstraněna." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Verze %1$s vytvořena, sledování pro %2$s je zapnuté." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nesledované tabulky" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sledovat tabulku" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Sledované tabulky" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Poslední verze" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Smazat sledovací data" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Verze" @@ -13913,7 +13898,7 @@ msgstr "Verze" msgid "Manage your settings" msgstr "Spravujte svoje nastavení" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Nastavení bylo uloženo." @@ -13939,7 +13924,7 @@ msgstr "Chyba v ZIP archívu:" msgid "No files found inside ZIP archive!" msgstr "V ZIP archívu nebyly nalezeny žádné soubory!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Chyba: Navigace je přístupná jen přes AJAX" @@ -13947,57 +13932,57 @@ msgstr "Chyba: Navigace je přístupná jen přes AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Nepodařilo se uložit nastavení, odeslaný formulář obsahuje chyby!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nepodařilo se nahrát konfiguraci" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Nastavení obsahuje neplatná data pro některé položky." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Přejete si načíst zbývající nastavení?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Uloženo: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importovat ze souboru" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Načíst z úložiště v prohlížeči" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Nastavení bude načteno z lokálního úložiště ve vašem prohlížeči." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Nemáte žádná uložená nastavení!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Tato funkce není vaším prohlížečem podporována" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Sloučit se současným nastavením" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14006,25 +13991,25 @@ msgstr "" "Více věcí můžete nastavit úpravou config.inc.php, např. použitím " "%sNastavovacího skriptu%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Uložit jako soubor" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Uložit do úložiště prohlížeče" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Nastavení bude uloženo do lokálního úložiště prohlížeče." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Již uložené nastavení bude přepsáno!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Můžete vymazat vaše nastavení a vrátit se k výchozím hodnotám." @@ -14032,31 +14017,31 @@ msgstr "Můžete vymazat vaše nastavení a vrátit se k výchozím hodnotám." msgid "View dump (schema) of databases" msgstr "Export databází" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nemáte oprávnění" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bylo úspěšně zabito." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14064,15 +14049,15 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Stáhnout" @@ -14082,11 +14067,11 @@ msgstr "" "Chybný formset, zkontrolujte pole $formsets v souboru setup/frames/form.inc." "php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Nelze načíst nebo uložit nastavení" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14097,7 +14082,7 @@ msgstr "" "[doc@setup_script]dokumentaci[/doc]. Jinak budete moci nastavení pouze " "stáhnout nebo zobrazit." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14105,24 +14090,27 @@ msgstr "" "Nepoužíváte zabezpečené připojení, všechna data (včetně citlivých údajů jako " "jsou hesla) se posílají nešifrovaně!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Pokud je Váš server nastaven tak, aby přijal HTTPS požadavky, klikněte na [a@" "%s]tento odkaz[/a] pro použití zabezpečeného připojení." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Nezabezpečené připojení" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Nastavení bylo uloženo." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14131,61 +14119,61 @@ msgstr "" "phpMyAdmina, přesuňte ji do adresáře phpMyAdmin a smažte adresář config pro " "její použití." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Nastavení bylo uloženo." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Přehled" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Zobrazit skyté zprávy (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Žádné servery nejsou nastaveny" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nový server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Výchozí jazyk" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "nechat uživatele, aby si vybral" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- žádný -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Výchozí server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Konec řádku" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Zobrazit" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Nahrát" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Domovská stránka phpMyAdmina" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Přispějte" @@ -14221,7 +14209,7 @@ msgstr "Ignorovat chyby" msgid "Show form" msgstr "Zobrazit formulář" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14229,15 +14217,15 @@ msgstr "" "Čtení verze selhalo. Možná nejste připojeni k internetu nebo server s " "informace o verzích neodpověděl." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Server odpověděl chybným textem verze" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Nepodařilo se zpracovat text verze" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14246,7 +14234,7 @@ msgstr "" "Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)" "[br]Poslední stabilní verze je %s a byla vydána %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Není dostupná žádná novější verze" @@ -14259,12 +14247,12 @@ msgstr "Chybná data" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Databáze '%s' neexistuje." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabulka %s již existuje!" @@ -14277,33 +14265,33 @@ msgstr "Export tabulky" msgid "Invalid table name" msgstr "Chybné jméno tabulky" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Řádek: %1$s, Sloupec: %2$s, Chyba: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No versions selected." msgid "No row selected." msgstr "Nebyly vybrány žádné verze." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Je zapnuté sledování %s." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Nebyly vybrány žádné verze." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL příkazy byly provedeny." @@ -14509,7 +14497,7 @@ msgid "List of available transformations and their options" msgstr "Seznam dostupných transformací a jejich parametrů" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformace při zobrazení" @@ -14531,7 +14519,7 @@ msgstr "" "\\xyz' nebo 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformace při zadávání" @@ -14972,17 +14960,17 @@ msgid "Size" msgstr "Velikost" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Vytvořeno" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Poslední změna" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Poslední kontrola" @@ -15027,6 +15015,12 @@ msgstr "" "Ve vašem prohlížeči je uloženo nastavení phpMyAdmina pro tuto doménu. " "Přejete si ho importovat do tohoto sezení?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Smazat sledovací data" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Přidat oprávnění pro databáze:" @@ -15047,10 +15041,43 @@ msgstr "Přidat oprávnění pro tabulku:" msgid "Add privileges on the following table:" msgstr "Přidat oprávnění pro tabulku:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nový" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Žádná" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Odstranit vybrané uživatele" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Odstranit databáze se stejnými jmény jako uživatelé." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Omezení zdrojů" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" @@ -15081,7 +15108,7 @@ msgstr "Rozšíření" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "vypnuto" @@ -15241,7 +15268,7 @@ msgstr "Syntaktický analyzátor:" msgid "Comment:" msgstr "Komentář:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Uspořádejte přetažením" @@ -15275,27 +15302,27 @@ msgstr "" msgid "Foreign key constraint" msgstr "Omezení cizího klíče" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Přidat omezení" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "interních relací" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Interní relace" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interní relace není potřebná pokud existuje stejná relace pomocí FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Zvolte která pole zobrazit:" @@ -15348,11 +15375,11 @@ msgstr "Původní řetězec" msgid "Replaced string" msgstr "Nahrazený řetězec" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Nahradit" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Další parametr vyhledávání" @@ -15426,7 +15453,7 @@ msgid "at beginning of table" msgstr "na začátku tabulky" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Oddíly" @@ -15456,28 +15483,28 @@ msgstr "Délka řádku" msgid "Index length" msgstr "Délka klíče" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "používá oddíly" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Zrušit dělení" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Upravit pohled" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Využití místa" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektivní" @@ -15502,31 +15529,31 @@ msgstr "Vylepšit strukturu tabulky" msgid "Track view" msgstr "Sledovat pohled" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Statistika řádků" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statický" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamický" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "používá oddíly" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Délka řádku" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Velikost řádku" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Další automatický klíč" @@ -15539,46 +15566,46 @@ msgstr "Pole %s bylo odstraněno." msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Vzhled" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Získejte další témata vzhledu!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Dostupné MIME typy" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Dostupné transformace pro zobrazení" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Dostupné vstupní transformace" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Popis" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Přesměrovávám na další krok…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatečná práva na provedení této akce!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Přístup byl změněn." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15657,7 +15684,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15682,19 +15709,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Nebyly vybrány žádné tabulky." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15757,29 +15784,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Byla vytvořena událost %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Vzor pro jméno tabulky" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "na začátku tabulky" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15798,10 +15825,16 @@ msgstr "Neočekávané znaky na řádku %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "at beginning of table" +msgid "Unexpected ordering of clauses." +msgstr "na začátku tabulky" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15848,9 +15881,9 @@ msgstr "" msgid "strict error" msgstr "Sbírat chyby" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" -msgstr "" +msgstr "Název pohledu nemůže být prázdný." #: view_create.php:253 msgid "VIEW name" @@ -17128,6 +17161,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Přihlašování přes cookie" + #~ msgid "Try to connect without password." #~ msgstr "Pokusit se připojit bez hesla." diff --git a/po/cy.po b/po/cy.po index 5eab549638..af7fb29ace 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Routines" msgid "Continue" msgstr "Rheolweithiau" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Cafodd yr allwedd gynradd ei gollwng." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Adroddiad tracio" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2150,540 +2155,540 @@ msgstr "" msgid "End of step" msgstr "Diwedd y llinell" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Gorffen" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Creu tabl mewn cronfa ddata %s" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Cadw" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "mewn ymholiad" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy #| msgid "Show insert query" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Chwilio" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Columns" msgid "Column maximum:" msgstr "Colofnau" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Columns" msgid "Column minimum:" msgstr "Colofnau" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "mewn ymholiad" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show insert query" msgid "Show find and replace criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ychwanegu/Dileu colofnau" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data definition statement" msgid "Data point content" msgstr "Datganiad diffiniad data" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new server" msgid "Inner ring" msgstr "Ychwanegwch weinydd newydd" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Enw'r dudalen" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Dewis Tablau" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Dewis Tablau" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Tudalennau rhydd" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Dewis Tablau" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please select a database" msgid "Please select a page to continue" msgstr "Dewiswch gronfa ddata" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Golygu neu allforio sgema perthynol" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of columns" msgid "Add an option for column \"%s\"." msgstr "Nifer y colofnau" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Gyrru" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Columns" msgid "Double-click to copy column name." msgstr "Colofnau" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Dangos pob" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Safle gwreiddiol" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Diddymu" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Mewnforiwch ffeiliau" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Trothwy'r ffeil log" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Dewis Tablau" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Argraffu" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Count tables" msgid "Go to link:" msgstr "Cyfrifwch y tablau" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Columns" msgid "Copy column name." msgstr "Colofnau" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generadu" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dangos pob" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indecsau" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Dangos grid" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2691,126 +2696,126 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Teitl yr adroddiad" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Anwybyddu" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Dangoswch yr ymholiad hwn yma eto" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "A ydych chi wir am" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Gweithredu ymholiad a glustnodwyd" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Sylwadau tabl" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "mewn ymholiad" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2819,36 +2824,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copïwch y gronfa ddata i" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Rename table to" msgid "Add table prefix" msgstr "Ailenwi tabl i" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Rename table to" msgid "Replace table with prefix" msgstr "Ailenwi tabl i" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Cynt" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2856,149 +2881,149 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Heddiw" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Ionawr" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Chwefror" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Mawrth" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Ebrill" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Mehefin" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Awst" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Medi" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Hydref" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Tachwedd" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Rhag" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3006,207 +3031,207 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Wy" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Dim" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Awr" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Munud" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Eiliad" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Defnyddiwch faes testun" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Gwall" @@ -3268,20 +3293,20 @@ msgid "Charset" msgstr "Set nodau" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Coladiad" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Deuaidd" @@ -3478,7 +3503,7 @@ msgid "Czech-Slovak" msgstr "Tsiec-Slofac" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "anhysbys" @@ -3530,7 +3555,7 @@ msgstr "" msgid "Font size" msgstr "Maint ffont" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3541,51 +3566,51 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Dilëwch berthynas" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL query history table" msgid "SQL Query Console" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to set configured collation connection!" msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Dyw'r gweinydd ddim yn ymateb" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Manylion…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Rheolweithiau" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3693,67 +3718,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Ymholiad SQL ar gronfa ddata %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Cyflwyno Ymholiad" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Chwilio" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Dilëwch berthynas" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Dilëwch berthynas" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Dangos clustnod" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Dilëwch berthynas" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "o leiaf un o'r geiriau" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "pob gair" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "y cymal union" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "fel mynegiad arferol (regular expression)" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Canlyniadau chwilio am \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3762,7 +3787,7 @@ msgstr[1] "Cyfanswm: %s cydwedd" msgstr[2] "" msgstr[3] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3770,52 +3795,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Pori" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Dileu'r cydweddau ar gyfer tabl %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Chwilio yn y gronfa ddata" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Geiriau neu werthoedd i'w chwilio amdanyn nhw (nod-chwiliwr: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Darganfod:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Caiff geiriau eu gwahanu gan nod bwlch (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tu fewn tabl(au):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Dad-ddewis Pob" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Tu fewn colofn:" @@ -3840,16 +3860,16 @@ msgstr "Hidlydd" msgid "Search this table" msgstr "Chwilio yn y gronfa ddata" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Dechrau" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3858,8 +3878,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Cynt" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3868,8 +3888,8 @@ msgctxt "Next page" msgid "Next" msgstr "Nesaf" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3880,7 +3900,7 @@ msgstr "Diwedd" msgid "All" msgstr "Pob" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of columns" @@ -3891,8 +3911,8 @@ msgstr "Nifer y colofnau" msgid "Sort by key" msgstr "Trefnu gan allwedd" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3914,10 +3934,10 @@ msgstr "Trefnu gan allwedd" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opsiynau" @@ -3965,33 +3985,33 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Cafodd y rhes ei dileu" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Lladd" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3999,82 +4019,82 @@ msgid "" msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Yn dangos rhesi" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "cyfanswm" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Gyda'r dewis:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Dewis Pob" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Methu â darganfod y cysylltiad" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4082,73 +4102,73 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Mewnforio" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Ffolder dros dro ar goll." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Cafodd y lanlwythiad ei atal gan estyniad." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Gwall anhysbys wrth lanlwytho ffeil." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Nid oedd modd darllen y ffeil hon" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4157,30 +4177,30 @@ msgstr "" "Fe geisioch lwytho ffeil gyda chywasgiad sydd heb ei gynnal (%s). Naill ai " "bod dim cynhaliaeth ar gyfer hwn neu mae eich ffurfwedd wedi ei analluogi." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Gwybodaeth y fersiwn" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Argraffu golwg" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4191,20 +4211,20 @@ msgid "No index defined!" msgstr "Dim indecs wedi'i ddiffinio!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indecsau" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4214,59 +4234,59 @@ msgstr "Indecsau" msgid "Action" msgstr "Gweithred" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Enw allweddol" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Sylw" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Cafodd yr allwedd gynradd ei gollwng." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Cafodd indecs %s ei ollwng." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Gollwng" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4275,19 +4295,19 @@ msgstr "" "Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un " "ohonyn nhw." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Rhif tudalen:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "iaith" @@ -4311,11 +4331,11 @@ msgstr "Gweinydd" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4334,14 +4354,15 @@ msgid "View" msgstr "Dangos" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4350,8 +4371,8 @@ msgid "Table" msgstr "Tabl" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4359,45 +4380,45 @@ msgstr "Tabl" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Chwilio" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Mewnosod" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Breintiau" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Tracio" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4413,16 +4434,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Ymholiad" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rheolweithiau" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4430,22 +4451,22 @@ msgstr "Rheolweithiau" msgid "Events" msgstr "Digwyddiadau" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dyluniwr" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Cronfeydd Data" @@ -4456,39 +4477,39 @@ msgid "User accounts" msgstr "Defnyddiwr" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log deuaidd" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Dyblygiad" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Newidynnau" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Setiau nod" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Peiriannau" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, fuzzy, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4497,7 +4518,7 @@ msgstr[1] "%1$d rhes wedi'u heffeithio." msgstr[2] "" msgstr[3] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4506,7 +4527,7 @@ msgstr[1] "%1$d rhes wedi'u dileu." msgstr[2] "" msgstr[3] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4574,29 +4595,29 @@ msgstr "Newidynnau" msgid "Favorites" msgstr "Newidynnau" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "Error: relation already exists." msgid "An entry with this name already exists." msgstr "Gwall: perthynas yn bodoli yn barod." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Gwall anhysbys wrth lanlwytho ffeil." @@ -4659,7 +4680,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4717,87 +4738,87 @@ msgid_plural "%d minutes" msgstr[0] "Munud" msgstr[1] "Munud" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Does dim gwybodaeth statws fanwl ar gael ar gyfer y peiriant storio hwn." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Mae %s ar gael ar y gweinydd MySQL hwn." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "No tables" msgid "Unknown table status:" msgstr "Dim tablau" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Cronfa ddata ffynhonnell" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Heb ddarganfod thema ddiofyn %s!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Crofna ddata annilys" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Enw tabl annilys" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Gwall wrth ailenwi tabl %1$s i %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Cafodd y tabl %s ei ailenwi i %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4805,19 +4826,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5088,7 +5109,7 @@ msgid "Date and time" msgstr "Crëwch dudalen" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5107,70 +5128,70 @@ msgstr "Cyfrif ffeiliau log" msgid "Max: %s%s" msgstr "Uchaf: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Dywedodd MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Esbonio SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Heb God PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Cyflwyno Ymholiad" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Creu Cod PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Adfywio" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Proffilio" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5178,70 +5199,70 @@ msgid "Edit inline" msgstr "Argraffu golwg" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rheolweithiau" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Neidio i gronfa ddata \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " "lanwlythwyd." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Gwagu" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5257,7 +5278,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -5265,14 +5286,14 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Chwilio" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5280,7 +5301,7 @@ msgstr "Chwilio" msgid "Description" msgstr "Disgrifiad" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Defnyddiwch y gwerth hwn" @@ -5321,22 +5342,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Enw" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -5345,7 +5366,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5366,13 +5387,13 @@ msgstr "" msgid "Select a column." msgstr "Ychwanegu/Dileu colofnau" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s column(s)" msgid "Add new column" msgstr "Ychwanegwch %s colofn" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5380,35 +5401,35 @@ msgstr "Ychwanegwch %s colofn" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Indecs gweinydd annilys: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Gweinydd" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5416,20 +5437,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6006,7 +6027,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6120,13 +6141,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "Ychwanegwch cyfyngiadau" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Cadw fel ffeil" @@ -6136,7 +6157,7 @@ msgstr "Set nodau y ffeil" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Fformat" @@ -6282,7 +6303,7 @@ msgid "Save on server" msgstr "Cadw ar y gweinydd" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Trosysgrifo ffeil(iau) sy'n bodoli yn barod" @@ -6297,7 +6318,7 @@ msgid "Remember file name template" msgstr "Cofio templed enw ffeil" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" @@ -6306,7 +6327,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modd cytunedd SQL" @@ -6338,7 +6359,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" @@ -6530,7 +6551,7 @@ msgid "Customize the navigation tree." msgstr "Defnyddiwch faes testun" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Gweinyddion" @@ -7447,7 +7468,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Yn dilysu…" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8139,7 +8160,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Gwiriwch y fersiwn diweddaraf" @@ -8147,10 +8168,10 @@ msgstr "Gwiriwch y fersiwn diweddaraf" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Gwirio fersiwn" @@ -8305,25 +8326,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Testun Open Document" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Cafodd tabl %s ei wagu." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8338,12 +8359,12 @@ msgid "Position" msgstr "Safle" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Math y digwyddiad" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID y Gweinydd" @@ -8352,7 +8373,7 @@ msgid "Original position" msgstr "Safle gwreiddiol" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Gwybodaeth" @@ -8366,16 +8387,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Dim cronfeydd data" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8383,26 +8404,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Cafodd cronfa ddata %s ei gollwng." msgstr[1] "Cafodd cronfa ddata %s ei gollwng." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rhesi" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Cyfanswm" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Gorbenion" @@ -8431,34 +8452,34 @@ msgstr "" msgid "Enable statistics" msgstr "Galluogi Ystadegau" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Dim cronfeydd data" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8517,7 +8538,7 @@ msgstr "Cafodd cronfa ddata %s ei gollwng." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query" msgid "Query error" @@ -8537,12 +8558,12 @@ msgstr "Newid" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indecs" @@ -8565,13 +8586,13 @@ msgstr "Testunllawn" msgid "Distinct values" msgstr "Defnyddiwch y gwerth hwn" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Dim newid" @@ -8593,203 +8614,207 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Dim Cyfrinair" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Cyfrinair:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Ail-deipiwch" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Stwnsio Cyfrinair" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Exporting databases from the current server" msgstr "Methu â mewngofnodi i'r gweinydd MySQL" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Creu tabl mewn cronfa ddata %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Creu tabl mewn cronfa ddata %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export" msgid "Export templates:" msgstr "Allforio" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Templed enw ffeil" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Page name" msgid "Template name" msgstr "Enw'r dudalen" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Creu" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Templed enw ffeil" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s tabl" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Diweddarwyd" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Dewis Tablau" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Math allbwn" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Cronfeydd Data" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tablau" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Fformat" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Rhesi" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 #, fuzzy #| msgid "Dump all rows" msgid "Dump some row(s)" msgstr "Dadlwytho pob rhes" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Dadlwytho pob rhes" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Cadw ar weinydd mewn cyfeiriadur %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Templed enw ffeil" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8797,125 +8822,125 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Set nodau'r ffeil:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Cywasgiad" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zip-iwyd\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzip-iwyd\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Cadw fel ffeil" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Creu tabl mewn cronfa ddata %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "llorweddol (penawdau wedi cylchdroi)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Cadw fel ffeil" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Dewis Tablau" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Dewis Tablau" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "enw cronfa ddata" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "Page name" msgid "New table name" msgstr "Enw'r dudalen" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Columns" msgid "Old column name" msgstr "Colofnau" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Columns" msgid "New column name" msgstr "Colofnau" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Crëwch fersiwn %s o %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -9329,13 +9354,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Lle annigonol i gadw'r ffeil %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9343,78 +9368,78 @@ msgstr "" "Mae'r ffeil %s yn bodoli ar y gweinydd yn barod. Newidiwch enw'r ffeil neu " "gwiriwch yr opsiwn trosysgrifo." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nid oes gan y gweinydd gwe yr hawl i gadw'r ffeil %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Dim cronfeydd data" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "Cyfrifwch y tablau" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Strwythur yn unig" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9425,82 +9450,83 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Cuddio" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Swyddogaeth" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Mewnosod" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ac yna" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9510,8 +9536,8 @@ msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9522,31 +9548,31 @@ msgstr "" msgid "Value" msgstr "Gwerth" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Strwythur yn unig" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Strwythur a data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Data yn unig" @@ -9557,14 +9583,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Privileges" @@ -9625,8 +9651,8 @@ msgstr "Gweithdrefnau" msgid "Views:" msgstr "Dangos" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Dangos" @@ -9677,19 +9703,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Cadw fel ffeil" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9705,7 +9731,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Ychwanegwch %s colofn" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9726,7 +9752,7 @@ msgstr "" msgid "Database operations" msgstr "Ystadegau cronfeydd data" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9831,13 +9857,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete columns" msgid "Select one…" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete columns" msgid "No such column" @@ -10091,8 +10117,8 @@ msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10138,81 +10164,81 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Ailenwi tabl i" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Sylwadau tabl" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Peiriant Storio" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Gwirio tabl" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Gwirio tabl" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Trwsio tabl" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10220,105 +10246,105 @@ msgstr "Trwsio tabl" msgid "Delete data or table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Copïwch y gronfa ddata i" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Dadansoddi" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Gwirio" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimeiddio" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Ailadeiladu" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Trwsio" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Cau" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Cynhaliaeth ymraniadau" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Ymraniad %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Tynnu'r ymraniadu" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10347,18 +10373,18 @@ msgstr "Dangos lliw" msgid "Only show keys" msgstr "Dangos allweddau'n unig" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Methu â chysylltu: gosodiadau annilys." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Croeso i %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10367,7 +10393,7 @@ msgstr "" "Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " "%1$sgript gosod%2$s er mwyn ei chreu." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10379,7 +10405,7 @@ msgstr "" "ffurfwedd a scirhau eu bod nhw'n cyfateb i'r wybodaeth a roddwyd gan " "weinyddwr y gweinydd MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10408,15 +10434,15 @@ msgstr "Enw defnyddiwr:" msgid "Server Choice:" msgstr "Dewis Gweinydd" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10495,7 +10521,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" @@ -10504,7 +10530,7 @@ msgstr "Dadlwytho data ar gyfer y tabl" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Digwyddiad" @@ -10512,8 +10538,8 @@ msgstr "Digwyddiad" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10615,7 +10641,7 @@ msgstr "Rhoi enwau colofnau yn y rhes gyntaf" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11185,7 +11211,7 @@ msgstr "Tabl cynnwys" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ychwanegol" @@ -11533,57 +11559,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11592,309 +11618,309 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Format of imported file" msgid "Master connection:" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Strwythur yn unig" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Strwythur yn unig" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "Username:" msgid "User name:" msgstr "Enw defnyddiwr:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Cyfrinair" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Portrait" msgid "Port:" msgstr "Portread" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Statws y meistr" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Statws y caeth" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Newidyn" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Gwesteiwr" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Unrhyw westeiwr" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lleol" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Y Gwesteiwr Hwn" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Defnyddiwch faes testun" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ail-deipiwch" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Generadu Cyfrinair" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Gwall" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11917,7 +11943,7 @@ msgstr "Cafodd golwg %s ei ollwng" msgid "Event %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11928,86 +11954,86 @@ msgstr "" msgid "Edit event" msgstr "Golygu gweinydd" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Manylion…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Math y digwyddiad" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Newid" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Diwedd" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Enw tabl annilys" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12030,7 +12056,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12044,150 +12070,150 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit server" msgid "Edit routine" msgstr "Golygu gweinydd" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Indecs gweinydd annilys: %s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rheolweithiau" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Cysylltiadau uniongyrchol" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tynnwch y gronfa ddata" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Actions" msgid "Return options" msgstr "Gweithredoedd" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Enw tabl annilys" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12215,44 +12241,44 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu." msgid "Edit trigger" msgstr "Ychwanegwch weinydd newydd" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "enw gweinydd" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Amser" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Enw tabl annilys" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Enw tabl annilys" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Enw tabl annilys" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Enw tabl annilys" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12394,606 +12420,559 @@ msgstr "Setiau nod a Choladiadau" msgid "Databases statistics" msgstr "Ystadegau cronfeydd data" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Dim" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Format of imported file" msgid "Does not require SSL-encrypted connections." msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Format of imported file" msgid "Requires SSL-encrypted connections." msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rheolweithiau" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL authentication" msgstr "Yn dilysu…" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Authenticating…" msgid "SHA256 password authentication" msgstr "Yn dilysu…" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authenticating…" -msgid "Native MySQL Authentication" -msgstr "Yn dilysu…" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "Enw defnyddiwr:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Enw'r log" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authenticating…" msgid "Authentication Plugin" msgstr "Yn dilysu…" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Stwnsio Cyfrinair" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Unrhyw ddefnyddiwr" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Databases statistics" msgid "Database for user account" msgstr "Ystadegau cronfeydd data" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Golygu gweinydd" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "Gwirio Breintiau" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remote server" -msgid "Remove selected user accounts" -msgstr "Gweinydd pell" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Defnyddiwr" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Defnyddiwr" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Overview" msgid "User accounts overview" msgstr "Gorolwg" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13002,7 +12981,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13011,11 +12990,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -13311,13 +13290,13 @@ msgstr "Gorchymyn" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Hidlydd" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only listed databases" msgid "Show only active" @@ -13344,12 +13323,12 @@ msgstr "Munud" msgid "per second:" msgstr "Eiliad" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13379,35 +13358,35 @@ msgstr "Dangoswch gronfeydd data a restrir yn unig" msgid "Related links:" msgstr "Perthnasau" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13415,78 +13394,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13494,7 +13473,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13502,42 +13481,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13545,33 +13524,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13580,244 +13559,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13825,99 +13804,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13925,18 +13904,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13944,13 +13923,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nid yw tracio'n weithredol" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13987,49 +13966,49 @@ msgstr "Cronfeydd Data" msgid "Table level tabs" msgstr "Sylwadau tabl" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Dangos" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Unrhyw ddefnyddiwr" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No Privileges" msgid "User group menu assignments" msgstr "Dim Breintiau" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Columns" msgid "Group name:" msgstr "Colofnau" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Fersiwn y gweinydd" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Cronfeydd Data" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14143,7 +14122,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Clirio" @@ -14236,187 +14215,187 @@ msgstr "Dadweithredwch nawr" msgid "Version" msgstr "Fersiwn" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Crëwyd" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Diweddarwyd" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Crëwch fersiwn" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Adroddiad tracio" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Ciplun strwythur" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "gweithredol" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ddim yn weithredol" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Datganiadau tracio" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Dim cronfeydd data" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Dadlwythiad SQL (lawrlwytho ffeil)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Dadlwythiad SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Bydd yr opsiwn hwn yn disodli eich tabl a'r data sydd ynddo." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Gweithrediad SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Allforio fel %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Datganiad trin data" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Datganiad diffiniad data" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Dyddiad" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Enw defnyddiwr" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Ciplun fersiwn %s (cod SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Traciwch y datganiadau trin data hyn:" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Mae tracio'n weithredol" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Mae tracio'n weithredol" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Crëwch fersiwn %s o %s.%s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tablau heb dracio" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tracio tabl" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tablau a draciwyd" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Fersiwn diweddaraf" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Fersiynau" @@ -14426,7 +14405,7 @@ msgstr "Fersiynau" msgid "Manage your settings" msgstr "Nodweddion perthynas cyffredinol" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14452,7 +14431,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14460,84 +14439,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "Dogfennaeth phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Mewnforiwch ffeiliau" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Cadw fel ffeil" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14545,45 +14524,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Gwylio dadlwythiad (sgema) cronfeydd data" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Dim Breintiau" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14591,101 +14570,100 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Cafodd yr addasiadau eu cadw" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Cafodd yr addasiadau eu cadw" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Gorolwg" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Dangos negeseuon cudd (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Gweinydd newydd" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Iaith ddiofyn" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "gadewch i'r defnyddiwr ddewis" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "-dim-" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Gweinydd diofyn" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Diwedd y llinell" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Dangos" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "llwytho" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "hafan phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Rhodd" @@ -14721,28 +14699,28 @@ msgstr "" msgid "Show form" msgstr "Dangos ffurflen" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14757,12 +14735,12 @@ msgstr "Dim cronfeydd data" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14775,36 +14753,36 @@ msgstr "" msgid "Invalid table name" msgstr "Enw tabl annilys" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No databases selected." msgid "No row selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "Mae tracio'n weithredol" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No databases selected." msgid "No versions selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15018,7 +14996,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15040,7 +15018,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15580,17 +15558,17 @@ msgid "Size" msgstr "Maint" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Cread" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Diweddariad diwethaf" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Gwiriad diwethaf" @@ -15625,6 +15603,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete settings " +msgstr "Dilëwch data tracio ar gyfer y tabl hwn" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -15643,10 +15627,45 @@ msgstr "Creu tabl mewn cronfa ddata %s" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Dim" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remote server" +msgid "Remove selected user accounts" +msgstr "Gweinydd pell" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15681,7 +15700,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15875,7 +15894,7 @@ msgstr "Defnyddiwr" msgid "Comment:" msgstr "Sylw" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15913,28 +15932,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Ychwanegwch cyfyngiadau" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Perthnasau mewnol" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15998,13 +16017,13 @@ msgstr "Safle gwreiddiol" msgid "Replaced string" msgstr "Perthnasau" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Dyblygiad" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "in query" msgid "Additional search criteria" @@ -16091,7 +16110,7 @@ msgid "at beginning of table" msgstr "Dangos dimensiynau'r tabl" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16125,30 +16144,30 @@ msgstr "Ffeiliau data" msgid "Index length" msgstr "Indecsau" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Partition %s" msgid "Partition table" msgstr "Ymraniad %s" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Tynnu'r ymraniadu" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Argraffu golwg" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -16179,33 +16198,33 @@ msgstr "Cronfeydd Data" msgid "Track view" msgstr "Tracio tabl" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Show statistics" msgid "Row statistics" msgstr "Dangos ystadegau" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16220,50 +16239,50 @@ msgstr "" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Cael gafael ar mwy o themâu!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Mathau MIME ar gael" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Browser transformation" msgid "Available browser display transformations" msgstr "Trawsffurfiad porwr" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Browser transformation" msgid "Available input transformations" msgstr "Trawsffurfiad porwr" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Disgrifiad" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Adroddiad tracio" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16336,7 +16355,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16361,19 +16380,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Dim cronfeydd data wedi'u dewis." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16430,29 +16449,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Templed enw tabl" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "Dangos dimensiynau'r tabl" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16469,10 +16488,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Show dimension of tables" +msgid "Unexpected ordering of clauses." +msgstr "Dangos dimensiynau'r tabl" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16517,7 +16542,7 @@ msgstr "" msgid "strict error" msgstr "Ymholiad" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17717,6 +17742,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Authenticating…" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Yn dilysu…" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/da.po b/po/da.po index be77ce1672..da5771a49b 100644 --- a/po/da.po +++ b/po/da.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:30+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Danish " -"\n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -26,31 +26,31 @@ msgid "" msgstr "" "Filen %s er ikke tilgængelig, besøg www.phpmyadmin.net for mere information." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Den centrale liste med kolonner for den nuværende database er tom." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Klik for at sortere." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Viser rækkerne %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Databasekommentar" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Tabelkommentarer:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -62,13 +62,13 @@ msgstr "Tabelkommentarer:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -79,9 +79,9 @@ msgstr "Tabelkommentarer:" msgid "Column" msgstr "Kolonne" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -92,12 +92,12 @@ msgstr "Kolonne" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -109,9 +109,9 @@ msgstr "Kolonne" msgid "Type" msgstr "Datatype" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -122,15 +122,15 @@ msgstr "Datatype" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -141,14 +141,14 @@ msgstr "Nulværdi" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Standardværdi" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -158,7 +158,7 @@ msgstr "Standardværdi" msgid "Links to" msgstr "Linker til" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -172,19 +172,19 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primær" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -192,13 +192,13 @@ msgstr "Primær" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -206,17 +206,17 @@ msgstr "Primær" msgid "No" msgstr "Nej" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -225,13 +225,13 @@ msgstr "Nej" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -243,15 +243,15 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Vis dump (skema) af database" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Ingen tabeller fundet i databasen." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -260,8 +260,8 @@ msgid "Tables" msgstr "Tabeller" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -269,10 +269,10 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -285,27 +285,27 @@ msgstr "Struktur" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Data" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Vælg alt" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Database %1$s er blevet omdøbt til %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Databasen %1$s er blevet kopieret til %2$s." @@ -318,38 +318,38 @@ msgstr "" "Konfigurationslageret for phpMyAdmin er blevet slået fra. %sFind ud af " "hvorfor%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Du skal vælge mindst en kolonne der skal vises!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Skift til %svisuel konstruktør%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Adgang nægtet!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Sletning af sporingdata blev gennemført." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "Version %1$s blev oprettet for valgte tabeller, sporingen af dem er aktiv." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Ingen tabeller valgt." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Databaselog" @@ -390,131 +390,131 @@ msgstr "Forkert type!" msgid "Bad parameters!" msgstr "Forkerte parametre!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Værdi for kolonnen \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Brug OpenStreetMaps som basislag" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometri %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Tilføj et punkt" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Linjestreng %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Ydre ring:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Indre ring %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Tilføj en linjestreng" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Tilføj en indre ring" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polygon %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Tilføj polygon" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Tilføj geometri" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Udfør" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Resultat" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -522,19 +522,19 @@ msgstr "" "Vælg \"GeomFromText\" fra kolonnen \"Function\" og indsæt strengen nedenfor " "i feltet \"Value\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Blev gennemført" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Mislykket" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Ukomplette parametre" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -543,15 +543,15 @@ msgstr "" "Du har sandsynligvis forsøgt at overføre en fil som er for stor. Se venligst " "%sdokumentationen%s for måder at omgå denne begrænsning." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Bogmærket er fjernet." -#: import.php:489 +#: import.php:486 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 " @@ -561,23 +561,23 @@ msgstr "" "et filnavn, eller filstørrelsen kan have overskredet maksimal størrelsen " "tilladt af din PHP-konfiguration. Se [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, tjek venligst din installation!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Bogmærket %s er blevet oprettet." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importen er korrekt gennemført, %d forespørgsler udført." msgstr[1] "Importen er korrekt gennemført, %d forespørgsler udført." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -586,7 +586,7 @@ msgstr "" "Tidsudløb for skriptet blev nået. Hvis du vil afslutte importen, så " "%sindsend venligst den samme fil igen%s og importen vil blive genoptaget." -#: import.php:632 +#: import.php:629 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." @@ -595,7 +595,7 @@ msgstr "" "normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med " "mindre du forøger PHP-tidsbegrænsningerne." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." @@ -603,17 +603,17 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." msgid "Could not load the progress of the import." msgstr "Kunne ikke indlæse hvor langt importen er nået." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Tilbage" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin - demoserver" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -623,107 +623,107 @@ msgstr "" "Du anvender demoserveren. Du kan foretage alt her, men undlad venligst at " "rette root, debian-sys-maint og pma-brugere. Mere information fås på %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Generelle indstillinger" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Skift adgangskode" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Servers forbindelsestegnsæt" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Indstillinger for udseende" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Flere indstillinger" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Database-server" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Servertype:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Serverversion:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protokolversion:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Bruger:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Servers tegnsæt:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Webserver" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Databaseklientversion:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP-udvidelse:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP-version:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Versionsinformation:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentation" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Officiel phpMyAdmin hjemmeside" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Deltag" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Få support" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Liste over ændringer" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licens" -#: index.php:443 +#: index.php:444 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 " @@ -733,7 +733,7 @@ msgstr "" "multibyte tegnsæt. Uden mbstring-udvidelsen er phpMyAdmin ude af stand til " "at opdele strenge korrekt og dette kan forårsage uventede resultater." -#: index.php:458 +#: index.php:459 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." @@ -741,7 +741,7 @@ msgstr "" "Curl-udvidelsen blev ikke fundet og allow_url_fopen er deaktiveret. Derfor " "er nogle funktioner, som fejlrapportering og versionskontrol, deaktiveret." -#: index.php:473 +#: index.php:474 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 " @@ -753,7 +753,7 @@ msgstr "" "end cookie-gyldigheden konfigureret i phpMyAdmin; på grund af dette kan din " "logind-session udløbe tidligere end det som er konfigureret i phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -762,17 +762,17 @@ msgstr "" "phpMyAdmin. På grund af dette, vil din login udløbe tidligere end " "konfigureret i phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurationsfilen skal nu bruge et hemmeligt kodeord (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "Det hemmelige password i konfigurationen (blowfish_secret) er for kort." -#: index.php:528 +#: index.php:529 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 " @@ -785,7 +785,7 @@ msgstr "" "din server kompromitteres, ved at personer uden adgangstilladelse henter din " "konfiguration." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -794,14 +794,14 @@ msgstr "" "phpMyAdmin configuration storage er ikke fuldstændigt konfigureret; nogle " "udvidede funktioner er blevet deaktiverede. %sFind ud af hvorfor%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Gå eventuelt til fanen 'Handlinger' tilhørende enhver database for at " "opsætte den dér." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -810,7 +810,7 @@ msgstr "" "Din PHP MySQL-biblioteks version %s afviger fra din MySQL server version %s. " "Dette kan forårsage uforudsigelige resultater." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -980,7 +980,7 @@ msgid "Save & close" msgstr "Gem & luk" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Nulstil" @@ -1012,7 +1012,7 @@ msgstr "Tilføj indeks" msgid "Edit index" msgstr "Redigér indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Tilføj %s kolonne(r) til indeks" @@ -1037,10 +1037,10 @@ msgstr "Tilføj venligst kolonne(r) til indekset." msgid "You have to add at least one column." msgstr "Du skal tilføje mindst en kolonne." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Forhåndsvis SQL" @@ -1052,7 +1052,7 @@ msgstr "Simulér forespørgsel" msgid "Matched rows:" msgstr "Rækker som matcher:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL-forespørgsel:" @@ -1069,13 +1069,13 @@ msgstr "Der er intet værtsnavn!" msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Adgangskoden er tom!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" @@ -1083,8 +1083,8 @@ msgstr "De to adgangskoder er ikke ens!" msgid "Removing Selected Users" msgstr "Fjerner valgte brugere" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Luk" @@ -1106,19 +1106,19 @@ msgstr "Skabelon blev slettet." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Andet" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1224,40 +1224,40 @@ msgid "Processes" msgstr "Processer" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1275,7 +1275,7 @@ msgstr "Spørgsmål" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Indstillinger" @@ -1289,16 +1289,16 @@ msgid "Please add at least one variable to the series!" msgstr "Tilføj mindst en variabel til serien!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Ingen" @@ -1492,20 +1492,20 @@ msgstr "Analyserer…" msgid "Explain output" msgstr "Forklar output" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Tid" @@ -1595,10 +1595,10 @@ msgstr "" "til standard konfiguration…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importér" @@ -1671,7 +1671,7 @@ msgstr "Ingen parametre fundet!" msgid "Cancel" msgstr "Annuller" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Siderelaterede indstillinger" @@ -1711,8 +1711,8 @@ msgid "Error text: %s" msgstr "Fejltekst: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Ingen databaser valgt." @@ -1750,7 +1750,7 @@ msgstr "Kopierer database til" msgid "Changing charset" msgstr "Ændrer tegnsæt" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Slå fremmednøgle-checks til" @@ -1778,74 +1778,79 @@ msgstr "Viser" msgid "Deleting" msgstr "Sletter" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Slet sammenfald for %s tabellen?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ifølge definitionen på en stored function, skal denne indeholde et RETURN-" "udtryk!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Eksportér" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "Ingen rutine er eksporterbar. Nødvendige rettigheder kan savnes." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET-redigeringsværktøj" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Værdier for kolonnen %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Værdier for en ny kolonne" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Indtast hver værdi i et separat felt." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Tilføj %d værdi(er)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Note: Hvis filen indeholder flere tabeller, vil de blive kombineret til én." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Skjul forespørgeselsboks" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Vis forespørgselsbox" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1853,53 +1858,53 @@ msgstr "Vis forespørgselsbox" msgid "Edit" msgstr "Ret" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Slet" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Ingen automatisk gemt forespørgsel" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variabel %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Vælg" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Kolonnevælger" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Søg i denne liste" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1908,15 +1913,15 @@ msgstr "" "Ingen kolonner i centerlisten. Vær sikker på at centerlisten for databasen " "%s har kolonner der ikke er i aktuel tabel." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Se mere" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Er du sikker?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1924,51 +1929,51 @@ msgstr "" "Denne handling kan ændre nogle af kolonnedefinitionerne.
Er du sikker " "på at du vil fortsætte?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Fortsæt" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Tilføj primær nøgle" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Primær nøgle er blevet tilføjet." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Tager dig til næste trin…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Det første trin af normaliseringen er fuldført for tabellen '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Slut på trinnet" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Andet trin af normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Færdig" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Bekræft delvise afhængigheder" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "De valgte, delvise afhænigheder er som følger:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1976,19 +1981,19 @@ msgstr "" "Bemærk: a, b -> d,f implicerer, at værdier med kolonnerne a og b kombineret " "sammen kan afgøre værdier for kolonne d og kolonne f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Der blev ikke valgt delvise afhængigheder!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Vis mig de mulige, delvise afhængigheder baseret på data i tabellen" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Skjul listen med delvise afhængigheder" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1996,169 +2001,169 @@ msgstr "" "Hold vejret! Der kan gå nogle sekunder afhængig af datastørrelsen og " "antallet af kolonner i tabellen." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Trin" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "De følgende handlinger vil blive udført:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolonnerne %s fra tabellen %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Opret følgende tabel" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tredje trin af normaliseringen (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Bekræft transitive afhængigheder" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "De valgte afhængigheder er:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Der er ikke valgt afhængigheder!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gem" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Skjul søgekriterie" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Vis søgekriterie" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Intervalsøgning" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Kolonnemaksimum:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Kolonneminimum:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimumsværdi:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maksimumsværdi:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Skjul kriteriet for søg og erstat" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Vis kriteriet for søg og erstat" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Hvert punkt repræsenterer en datarække." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Når der holdes over et punkt vises dets etiket." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "For at forstørre, vælg en sektion af plottet med musen." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Klik på knap til nulstilling af zoom for at vende tilbage til den " "oprindelige tilstand." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Klik et datapunkt for at se og muligvis redigere datarækken." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Plottet kan ændres i størrelse ved at trække det i nederste højre hjørne." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Vælg to kolonner" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Vælg to forskellige kolonner" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Datapunkt-indhold" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopi" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Ydre ring" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøgle?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Krypteringsnøgle" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2166,7 +2171,7 @@ msgstr "" "MySQL accepterer værdier, som ikke kan vælges med skydeknappen; indtast " "disse værdier direkte, hvis det ønskes" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "" #| "MySQL accepts additional values not selectable by the slider; key in " @@ -2178,7 +2183,7 @@ msgstr "" "MySQL accepterer værdier, som ikke kan vælges med skydeknappen; indtast " "disse værdier direkte, hvis det ønskes" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2186,24 +2191,24 @@ msgstr "" "Indikerer at du har lavet ændringer ved denne side, du vil blive spurgt om " "godkendelse før ændringerne frafalder" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Vælg venligst den primære nøgle eller en unik nøgle!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Vælg kolonne til visning" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2211,76 +2216,76 @@ msgstr "" "Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke " "gemmer dem. Vil du fortsætte?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Sidenavn" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Gem side" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Gem side som" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åbn side" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Slet side" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unavngivet" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Vælg venligst en side for at fortsætte" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Angiv venligst et gyldigt sidenavn" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Ønsker du at gemme ændringerne til nuværende side?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Sletning af siden er gennemført" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Eksportér relationsskema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Rettelserne er gemt" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tilføj mulighed for kolonnen \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) oprettet." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Send" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Tryk på ESC for at annullere redigeringen." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2288,15 +2293,15 @@ msgstr "" "Du har redigeret nogle data og de er ikke blevet gemt. Er du sikker på, at " "du vil forlade siden uden at gemme data ?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Træk for at ændre rækkefølge." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Klik for at sortere resultater efter denne kolonne." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2306,26 +2311,26 @@ msgstr "" "mellem tiltagende og aftagende, ASC/DESC.
- Ctrl+klik eller Alt+Click " "(Mac: Shift+Option+Klik) for at fjerne kolonne fra klausulen ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klik for at markere/afmarkere." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Dobbeltklik for at kopiere kolonnenavn." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik på pilen for valgboks
for at skifte kolonnens synlighed." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2334,11 +2339,11 @@ msgstr "" "redigering af gitter, afkrydsningsboks og links til redigering, kopiering og " "sletning fungerer måske ikke, efter at data er gemt." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Indtast venligst en gyldig heximal streng. Gyldige tegn er 0-9 og A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2346,103 +2351,103 @@ msgstr "" "Sikker på du vil se alle rækkerne? For store tabeller kan dette få browseren " "til at gå ned." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Oprindelige længde" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "annullér" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Afbrudt" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Gennemført" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Drop filerne her" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Vælg først en database" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Udskriv" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Du kan også redigere de fleste værdier
ved at dobbelt-klikke direkte på " "dem." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Du kan også redigere de fleste værdier
ved at klikke direkte på dem." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Gå til linket:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopiér kolonnenavn." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Højreklik kolonnenavnet for at kopiere det til din udklipsholder." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generer adgangskode" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generer" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mere" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigationstræet." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Link med hovedpanel" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Fjern link fra hovedpanel" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Den forespurgte side blev ikke fundet i historikken. Den kan være udløbet." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2452,42 +2457,42 @@ msgstr "" "opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", seneste stabile version:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "up-to-date" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Opret view" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Send fejlrapporter" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Indsend fejlrapport" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Der opstod en alvorlig JavaScript-fejl. Vil du at indsende en fejlrapport?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Tilpas indstillinger for rapportering" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Vis detaljer for rapport" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2495,7 +2500,7 @@ msgstr "" "Din eksport er ikke komplet, da der er en lav tidsgrænse for afvikling på " "PHP-niveaut!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2504,60 +2509,60 @@ msgstr "" "Advarsel: en form har mere end %d felter. Ved afsendelse, vil nogle felter " "måske blive ignoreret, iht. PHP's max_input_vars konfiguration." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Der er registreret fejl på serveren!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Gennemse venligst bunden af denne side." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorér alle" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "I henhold til dine indstillinger, så indsendes de i øjeblikket - udvis " "venligst tålmodighed." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Udfør denne forespørgsel påny?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Er du sikker på at du vil slette dette bogmærke?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "En fejl opstod mens hentede SQL debug info." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s forespørgsler udført %s gange på %s sekunder." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(er) sendt" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Tabel kommentarer" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Skjul argumenterne" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Tidsforbrug:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2571,349 +2576,369 @@ msgstr "" "forårsage problemet. Sletning af dit \"Offline webindhold\" kan hjælpe. I " "Safari er sådan et problem ofte forårsaget af browsing i \"Private Mode\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Kopier tabeller til" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Tilføj tabelpræfiks" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Erstat tabel med præfiks" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopier tabel med præfiks" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "I dag" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "januar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "februar" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "marts" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "april" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "maj" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "august" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "september" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "november" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "søndag" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "mandag" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "tirsdag" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "onsdag" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "torsdag" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "fredag" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "lørdag" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "sø" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "on" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "lø" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "uge" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Time" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minut" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekund" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Dette felt er påkrævet" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Ret venligst dette felt" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Angiv en gyldig e-mailadresse" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Angiv en gyldig URL-adresse" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Indtast en gyldig dato" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Indtast en gyldig dato (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Angiv et gyldigt tal" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Indtast et gyldigt kreditkortnummer" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Angiv kun tal" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Angiv samme værdi igen" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Angiv venligst ikke mere end {0} tegn" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Angiv mindst {0} tegn" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Indtast venligst en værdi med en længde på mellem {0} og {1} tegn" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Indtast venligst en værdi mellem {0} og {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Angiv venligst værdi der er mindre end eller lig med {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Angiv venligst værdi der er større end eller lig med {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Angiv venligst en gyldig dato eller tid" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Angiv venligst et gyldigt HEX-tal" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Fejl" @@ -2977,20 +3002,20 @@ msgid "Charset" msgstr "Tegnsæt" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Tegnsæt (sortering)" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binært" @@ -3187,7 +3212,7 @@ msgid "Czech-Slovak" msgstr "Tjekkisk-Slovakisk" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "ukendt" @@ -3240,26 +3265,26 @@ msgstr "" msgid "Font size" msgstr "Skriftstørrelse" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Viser %1$d bogmærke (både privat og delt)" msgstr[1] "Viser %1$d bogmærker (både private og delte)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Ingen bogmærker" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL Query-konsol" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Kunne ikke indstille den konfigurerede sorteringsforbindelse!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3267,25 +3292,25 @@ msgstr "" "Serveren svarer ikke (eller den lokale servers socket er ikke korrekt " "konfigureret)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Serveren svarer ikke." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Tjek venligst privilegier for mappen som indeholder databasen." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Manglende parameter:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl." @@ -3380,110 +3405,105 @@ msgstr "Indsæt:" msgid "Del:" msgstr "Slet:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-forespørgsel til database %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Send forespørgsel" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Gemte søgninger:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nyt bogmærke" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Opret bookmark" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Opdater bogmærke" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Slet bogmærke" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "mindst et af ordene" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "alle ord" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "den nøjagtige sætning" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "som regulært udtryk" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søgeresultater for \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "I alt: %s sammenfald" msgstr[1] "I alt %s sammenfald" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s sammenfald i %2$s" msgstr[1] "%1$s sammenfald i %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Vis" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Slet sammenfald for %s tabellen?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Søg i databasen" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller værdier til at søge efter (jokertegn: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Find:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Ord adskilles af mellemrumstegn (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Indeni tabel(ler):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Fravælg alle" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Indeni kolonne:" @@ -3503,30 +3523,30 @@ msgstr "Filtrer rækker" msgid "Search this table" msgstr "Søg i denne tabel" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Næste" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Slut" @@ -3535,7 +3555,7 @@ msgstr "Slut" msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Antal rækker:" @@ -3544,8 +3564,8 @@ msgstr "Antal rækker:" msgid "Sort by key" msgstr "Sorteringsnøgle" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3567,10 +3587,10 @@ msgstr "Sorteringsnøgle" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Indstillinger" @@ -3610,29 +3630,29 @@ msgstr "Velkendt tekst" msgid "Well Known Binary" msgstr "Velkendt binær" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Rækken er slettet." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-forespørgsel blev udført korrekt." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3640,73 +3660,73 @@ msgid "" msgstr "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Viser rækkerne %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d i alt, %2$d i forespørgsel" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d i alt" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Forespørgsel tog %01.4f sekunder." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Med det markerede:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Vælg alle" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopier til udklipsholder" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link ikke fundet!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Ingen" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konverter til Kana" @@ -3714,23 +3734,23 @@ msgstr "Konverter til Kana" msgid "Too many error messages, some are not displayed." msgstr "For mange fejlmeddelelser, nogle vises ikke." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Rapport" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Send automatisk rapport næste gang" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Filen var ikke en uploaded fil." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3738,48 +3758,48 @@ msgstr "" "Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-" "formularen." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Den uploadede fil blev kun delvist uploaded." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Kunne ikke skrive fil til disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Filupload stoppet af udvidelse." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Ukendt fejl i filupload." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Filen er et symbolsk link" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Filen kunne ikke læses!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fejl ved flytning af den uploadede fil, se [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Fejl under flytning af uploaded fil." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Kan ikke læse uploaded fil." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3789,28 +3809,28 @@ msgstr "" "Understøttelse af denne funktion er ikke implementeret eller ikke slået til " "for din konfiguration." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Der køres i øjeblikket Git-revisionen %1$s fra grenen %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Information om Git mangler!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Åbn nyt phpMyAdmin vindue" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Udskriv" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Klik på bjælken for at rulle til sidens top" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Herefter skal JavaScript være slået til!" @@ -3819,20 +3839,20 @@ msgid "No index defined!" msgstr "Intet indeks defineret!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeks" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3842,59 +3862,59 @@ msgstr "Indeks" msgid "Action" msgstr "Handling" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nøglenavn" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pakket" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primærnøglen er slettet." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s er blevet slettet." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Slet" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3903,19 +3923,19 @@ msgstr "" "Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan " "sikkert fjernes." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Side nummer:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignorér sprogkoder som ikke understøttes." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Sprog" @@ -3941,11 +3961,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3964,14 +3984,15 @@ msgid "View" msgstr "Visning" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3980,8 +4001,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3989,45 +4010,45 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Søg" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Indsæt" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Sporing" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4043,16 +4064,16 @@ msgstr "Triggers/udløsere" msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Foresp. via eks" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4060,20 +4081,20 @@ msgstr "Rutiner" msgid "Events" msgstr "Hændelser" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centerkolonner" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databaser" @@ -4082,53 +4103,53 @@ msgid "User accounts" msgstr "Brugerkonti" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binær log" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikation" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variable" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Lagring" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Udvidelsesmoduler" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d række påvirket." msgstr[1] "%1$d rækker påvirket." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d række slettet." msgstr[1] "%1$d rækker slettet." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4176,27 +4197,27 @@ msgstr "Favorit tabeller" msgid "Favorites" msgstr "Favoritter" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Angiv venligst et navn for denne gemte søgning." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Der mangler informationer for at søgningen kan gemmes." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Der findes allerede et element med dette navn." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Manglende information for at kunne slette søgningen." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Manglende information for at kunne hente søgningen." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Fejl under indlæsning af søgningen." @@ -4258,7 +4279,7 @@ msgstr "Vis åbne tabeller" msgid "Show slave hosts" msgstr "Vis slaveværter" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Vis master status" @@ -4312,71 +4333,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minutter" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Der er ingen detaljerede statusinformationer tilgængelige for dette " "datalager." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgængelig på denne MySQL-server." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s er slået fra på denne MySQL-server." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL-server understøtter ikke %s datalager." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Ukendt tabel status:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Kildedatabasen '%s' blev ikke fundet!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Mål-databasen '%s' blev ikke fundet!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Ugyldig database:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Ugyldigt tabelnavn:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fejl ved omdøbning af tabel %1$s til %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %1$s er nu omdøbt til %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Kunne ikke gemme indstillinger af brugergrænseflade for tabel!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4385,7 +4406,7 @@ msgstr "" "Kunne ikke rydde op i indstillinger for tabel-UI (se $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4396,19 +4417,19 @@ msgstr "" "efter at du opfrisker denne side. Undersøg, om tabelstrukturen er blevet " "ændret." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Navnet på primærnøglen skal være \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Kan ikke omdøbe indeks til PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Ingen dele af indeks er defineret!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fejl ved dannelse af fremmednøgle på %1$s (tjek datatyper)" @@ -4732,7 +4753,7 @@ msgid "Date and time" msgstr "Dato og tid" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Streng" @@ -4747,128 +4768,128 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statisk analyse:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Der blev fundet %d fejl under analysen." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Forklaring af analyse ved %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Uden PHP-kode" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Send forespørgsel" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Fremstil PHP-kode" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Opdater" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilering" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Redigér indlejret" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "søn" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Manglende parameter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Hop til database \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Mappen du har sat til upload-arbejde kan ikke findes." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Der er ikke nogen filer at uploade!" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a # state it should translate to "Tom". -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tøm" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Udfør" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Brugere" @@ -4882,7 +4903,7 @@ msgstr "pr. minut" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "pr. time" @@ -4890,12 +4911,12 @@ msgstr "pr. time" msgid "per day" msgstr "per dag" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Søg:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4903,7 +4924,7 @@ msgstr "Søg:" msgid "Description" msgstr "Beskrivelse" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Brug denne værdi" @@ -4942,22 +4963,22 @@ msgstr "JA" msgid "NO" msgstr "NEJ" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Navn" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Længde/Værdi*" @@ -4966,7 +4987,7 @@ msgstr "Længde/Værdi*" msgid "Attribute" msgstr "Attribut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4983,11 +5004,11 @@ msgstr "Tilføj kolonne" msgid "Select a column." msgstr "Vælg en kolonne." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Tilføj ny kolonne" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4995,7 +5016,7 @@ msgstr "Tilføj ny kolonne" msgid "Attributes" msgstr "Attributter" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5005,27 +5026,27 @@ msgstr "" "indstilling er ikke kompatibel med phpMyAdmin og kan forårsage ødelæggelse " "af nogle data!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Server indekset %s er ugyldigt" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5036,20 +5057,20 @@ msgstr "" "konfigurationsindstilling for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/" "em]. phpMyAdmin anvender i øjeblikket databaseserverens standardtidszone." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Fejl: Token uoverensstemmelse" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "forsøg på overskrivning af GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "muligt sikkerhedshul" @@ -5645,7 +5666,7 @@ msgid "Compress on the fly" msgstr "Komprimer undervejs" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfigurationsfil" @@ -5751,12 +5772,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Maksimal eksekveringstid" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Brug %s forespørgsel" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Send (download)" @@ -5766,7 +5787,7 @@ msgstr "Filens tegnsæt" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -5891,7 +5912,7 @@ msgid "Save on server" msgstr "Gem på server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Overskriv eksisterende fil(er)" @@ -5904,7 +5925,7 @@ msgid "Remember file name template" msgstr "Husk skabelon for filnavn" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" @@ -5913,7 +5934,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Brug \"backquotes\" omkring tabel- og feltnavne" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetstilstand" @@ -5943,7 +5964,7 @@ msgstr "Eksporter relaterede metadata fra phpMyAdmin-konfigurationslager" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Tilføj %s" @@ -6116,7 +6137,7 @@ msgid "Customize the navigation tree." msgstr "Tilpas navigationstræet." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servere" @@ -7010,7 +7031,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Metode for autentifikation." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Autentifikationstype" @@ -7745,7 +7766,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Aktivér udviklerfanen i indstillinger" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Tjek for den seneste version" @@ -7753,10 +7774,10 @@ msgstr "Tjek for den seneste version" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Aktiverer tjek for den seneste version på hovedsiden for phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versionscheck" @@ -7903,24 +7924,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument tekst" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Favoritliste er fyldt!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s blev tømt." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Visning %s er blevet slettet." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabel %s blev slettet." @@ -7934,12 +7955,12 @@ msgid "Position" msgstr "Position" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Hændelsestype" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server-ID" @@ -7948,7 +7969,7 @@ msgid "Original position" msgstr "Oprindelig placering" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Information" @@ -7962,42 +7983,42 @@ msgstr "Trunker viste forespørgsler" msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Ingen databaser" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s er oprettet." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databaser er blevet droppet korrekt." msgstr[1] "%1$d databaser er blevet droppet korrekt." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rækker" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8024,33 +8045,33 @@ msgstr "" msgid "Enable statistics" msgstr "Slå statistikker til" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Ikke tilstrækkelige privilegier til at se server variable og indstillinger %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Variablen blev ikke sat" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Ingen SQL-forespørgsel blev angivet til hentning af data." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Ingen numeriske kolonner tilstede i tabellen til plotning." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Ingen data til visning" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabel %1$s er blevet ændret." @@ -8093,7 +8114,7 @@ msgstr "Flytning af kolonnen er blevet fuldført." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Forespørgselsfejl" @@ -8110,12 +8131,12 @@ msgstr "Ret" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8136,13 +8157,13 @@ msgstr "Fuldtekst" msgid "Distinct values" msgstr "Distinkte værdier" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s-udvidelsen mangler. Tjek din PHP-konfiguration." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen ændring" @@ -8164,31 +8185,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Kunne ikke indlæse skemaudvidelser, tjek venligst din installation!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Ingen adgangskode" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Adgangskode:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Skriv igen:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Adgangskodehashing:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8198,83 +8223,83 @@ msgstr "" "forbindelse, som krypterer passwordet med RSA ved forbindelse til " "serveren." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Eksporterer databaser fra den aktuelle server" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Eksporterer tabeller fra database \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Eksporterer rækker fra tabellen \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Eksportskabeloner:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Ny skabelon:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Skabelonnavn" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Opret" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Eksisterende skabeloner:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Skabelon:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Opdater" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Vælg en skabelon" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Eksportmetode:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Hurtig - vis kun de minimale indstillinger" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Brugerdefineret - vis alle indstillinger" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Databaser:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabeller:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Formatspecifikke indstillinger:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8282,52 +8307,52 @@ msgstr "" "Rul ned for at udfylde indstillingerne for det valgte format og ignorer " "indstillingerne for andre formater." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Konvertering af indkodning:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rækker:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Hent nogle række(r)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Begyndelsesrække:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Hent alle rækker" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Output:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Gem på serveren i mappen %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Skabelon for filnavn:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ vil blive servernavnet" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ vil blive databasenavnet" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ vil blive tabelnavnet" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8338,98 +8363,98 @@ msgstr "" "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " "vil blive bevaret som det er. Se %4$sFAQ%5$s for detaljer." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "brug dette til fremtidige eksports" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Tegnsæt for filen:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Komprimering:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zippet" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzippet" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Se output som tekst" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Eksportér databaser som separate filer" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Eksportér tabeller som separate filer" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Omdøb eksporterede databaser/tabeller/kolonner" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Gem output i en fil" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Spring over tabeller større end" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Vælg en database" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Vælg en tabel" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nyt databasenavn" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nyt tabelnavn" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Gammelt kolonnenavn" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nyt kolonnenavn" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Kunne ikke indlæse eksportplugins, tjek venligst din installation!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s fra grenen %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "ingen gren" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git-revision:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "indsendt den %1$s af %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "forfattet den %1$s af %2$s" @@ -8882,13 +8907,13 @@ msgstr "" "Dokumentation og yderligere information om PBXT kan findes på %sPrimeBase XT " "hjemmeside%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Utilstrækkelig plads til at gemme filen %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8896,77 +8921,77 @@ msgstr "" "Filen %s findes allerede på serveren, lav filnavnet om eller tillad at der " "overskrives." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tilladelse til at gemme filen %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK opstod.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Vis en strukturs indhold ved at klikke på dens navn." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Ændre alle indstillinger ved at klikke på det tilhørende \"Indstilling\" " "link." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Rediger struktur ved at følge linket \"Struktur\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Gå til databasen: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Rediger indstillinger for %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Gå til tabellen: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Strukturen af %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Gå til view: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Der kan kun simuleres forespørgsler med UPDATE og DELETE i enkelttabeller." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8979,86 +9004,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Opret et indeks på  %s  kolonner" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funktion" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "På grund af feltets længde,
kan det muligvis ikke ændres." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binært - må ikke ændres" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Eller" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "webserver upload-mappe:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Rediger/Indsæt" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "og derefter" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Rediger næste række" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9069,31 +9095,31 @@ msgstr "" msgid "Value" msgstr "Værdi" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Gennemført!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Kun strukturen" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktur og data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Kun data" @@ -9102,14 +9128,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Tilføj AUTO INCREMENT værdi" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Tilføj begrænsninger" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ret privilegier" @@ -9156,8 +9182,8 @@ msgstr "Procedurer:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Vis" @@ -9204,17 +9230,17 @@ msgid_plural "%s results found" msgstr[0] "Fandt %s resultat" msgstr[1] "Fandt %s resultater" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "SKriv for at filtrere med disse, Retur for at søge i alt" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Ryd hurtig-filter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Fold alle sammen" @@ -9230,7 +9256,7 @@ msgstr "Ugyldigt klassenavn \"%1$s\", bruger standarden \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Kunne ikke tilføje kolonner!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Fold ud/sammen" @@ -9249,7 +9275,7 @@ msgstr "Ny" msgid "Database operations" msgstr "Databasehandlinger" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Vis skjulte elementer" @@ -9357,11 +9383,11 @@ msgstr "" "Vælg en kolonne der kan deles op i mere end én. (ved valg af 'ingen sådan " "kolonne', vil der blive skiftet til næste trin)" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Vælg én…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Ingen sådan kolonne" @@ -9636,8 +9662,8 @@ msgid "Rename database to" msgstr "Omdøb database til" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9683,185 +9709,185 @@ msgstr "(enkeltvis)" msgid "Move table to (database.table)" msgstr "Flyt tabel til (database.tabel)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Omdøb tabel til" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabel kommentarer" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabel-indstillinger" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Datalager" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 #, fuzzy #| msgid "Make all columns atomic" msgid "Change all column collations" msgstr "Gør alle kolonner atomare" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopier tabel til (database.tabel)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Skift til den kopierede tabel" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabelvedligeholdelse" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analyser tabel" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Tjek tabel" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Tjek tabel" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmenter tabel" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabel %s er blevet flushet." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Udskriv tabellen (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimer tabel" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparer tabel" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Slet data eller tabel" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Tøm tabellen (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Slet tabellen (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analyser" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Tjek" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimer" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Genopbyg" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Reparer" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Afkort" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Fold sammen" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Vedligehold af partition" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partitionen %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Fjern partitionering" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Tjek reference-integriteten:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til den samme!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til den samme!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s er flyttet til %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabellen %s er nu kopieret til: %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s er flyttet til %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er nu kopieret til: %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Intet tabelnavn!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Dette format har ingen indstillinger" @@ -9891,18 +9917,18 @@ msgstr "Vis farve" msgid "Only show keys" msgstr "Vis kun nøgler" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Kan ikke forbinde: ugyldige indstillinger." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9911,7 +9937,7 @@ msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9923,7 +9949,7 @@ msgstr "" "og sikre dig at de svarer til den information du har fået af administratoren " "af MySQL-serveren." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Forsøg at tilslutte igen" @@ -9950,15 +9976,15 @@ msgstr "Brugernavn:" msgid "Server Choice:" msgstr "Servervalg:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Den angivne captcha er forkert, prøv igen!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Angiv venligst korrekt captcha!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Du har ikke tilladelse til at logge ind på denne MySQL server!" @@ -10019,7 +10045,7 @@ msgstr "Database eksportindstillinger" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Data dump for tabellen" @@ -10028,7 +10054,7 @@ msgstr "Data dump for tabellen" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Hændelse" @@ -10036,8 +10062,8 @@ msgstr "Hændelse" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definition" @@ -10123,7 +10149,7 @@ msgstr "Indsæt feltnavne i første række:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Vært:" @@ -10678,7 +10704,7 @@ msgstr "Indholdsfortegnelse" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -11082,11 +11108,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-login til phpMyAdmin for at indlæse den opdaterede konfigurationsfil." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11096,7 +11122,7 @@ msgstr "" "'phpmyadmin'. Du kan gå til 'Operationer' fanen af enhver database for at " "oprette phpMyAdmin konfigurationslageret der." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -11104,39 +11130,39 @@ msgid "" "configuration storage there." msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sOpret%s phpMyAdmin-konfigurationslageret i den aktuelle database." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Master replikation" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Denne server er konfigureret som master i en replikationsproces." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Vis forbundne slaver" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Tilføj slave replikationsbruger" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Masterkonfiguration" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11157,19 +11183,19 @@ msgstr "" "databaser som standard og tillade kun visse databaser at blive replikeret. " "Vælg tilstand:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; Repliker:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Vælg databaser:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11177,7 +11203,7 @@ msgstr "" "Nu, tilføj de følgende linjer i slutningen af [mysqld] sektionen i din my." "cnf og genstart derefter MySQL serveren." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11187,69 +11213,69 @@ msgstr "" "du se en besked, der fortæller, at denne server er konfigureret som " "master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slave replikation" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Overordnet forbindelse:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kører ikke!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kører ikke!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Serveren er konfigureret som slave i en replikationsproces. Vil du:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Se slave status tabel" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kontrolslave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Fuld start" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Fuld stop" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Nulstil slave" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Start kun SQL Thread" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Stop kun SQL Thread" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Start kun IO Thread" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Stop kun IO Thread" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Ændr eller rekonfigurer master server" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11258,24 +11284,24 @@ msgstr "" "Serveren er ikke konfigureret som slave i en replikationsprocess. Vil du konfigurere den?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Fejlhåndtering:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Overspringning af fejl kan føre til usynkroniseret master og slave!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Spring over aktuel fejl" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Spring over næste %s fejl." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11284,11 +11310,11 @@ msgstr "" "Denne server er ikke konfigureret som master i en replikationsproces. Vil du " "konfigurere den?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slavekonfiguration" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11296,91 +11322,91 @@ msgstr "" "Vær sikker på, du har en unik server-id i din konfigurationsfil (my.cnf). " "Hvis ikke, så prøv at indsætte følgende linje i [mysqld] sektionen:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Brugernavn:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Brugernavn" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Adgangskode" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Masterstatus" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slavestatus" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabel" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Vært" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "Kun slaver startet med --report-host=host_name er synlige i listen." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Enhver vært" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Denne vært" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Enhver bruger" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Brug tekstfelt:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Brug tabellen host" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11388,78 +11414,78 @@ msgstr "" "Når tabellen host bruges, ignoreres dette felt og værdier lagret i host " "bruges i stedet." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Skriv igen" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Generer adgangskode" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replikation blev påbegyndt." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Fejl ved start af replikation." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replikeringen blev stoppet." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Fejl ved stop af replikering." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Nulstilling af replikering blev gennemført." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Fejl ved nulstilling af replikering." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Succes." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Fejl." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Ukendt fejl" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Ikke muligt at forbinde til master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ikke muligt at læse master log position. Muligt rettighedsproblem på master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Ikke muligt at ændre master!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Master server ændret til %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11480,7 +11506,7 @@ msgstr "Hændelse \"%1$s\" er blevet ændret." msgid "Event %1$s has been created." msgstr "Hændelse %1$s er oprettet." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Der er opstået fejl under behandling af anmodningen:" @@ -11489,75 +11515,75 @@ msgstr "Der er opstået fejl under behandling af anmodningen:" msgid "Edit event" msgstr "Rediger hændelse" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detaljer" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Hændelsesnavn" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Ændr til %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Udfør per" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Udfør hver" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Slut" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Efter udførsel bevar" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Opretter" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Opretter skal være i formatet \"brugernavn@værtsnavn\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Du skal angive et hændelsesnavn!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Du skal angive en gyldig intervalværdi for hændelsen." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Du skal angive et gyldigt kørselstidspunkt for hændelsen." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Du skal angive en gyldig type for hændelsen." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Du skal angive en hændelsesdefinition." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Fejl i udførsel af forespørgsel:" @@ -11578,7 +11604,7 @@ msgstr "Status for hændelsesskeduler" msgid "The backed up query was:" msgstr "Den gemte forespørgsel var:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Returværdier" @@ -11594,73 +11620,73 @@ msgstr "" "kan mislykkes![/strong] Brug den forbedrede 'mysqli'-udvidelse for at undgå " "eventuelle problemer." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Rediger rutine" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid rutinetype: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Rutine %1$s er oprettet." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Beklager, det lykkedes ikke at genetablere den slettede rutine." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Rutine \"%1$s\" er blevet ændret." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutine \"%1$s\" er blevet ændret." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Rutinenavn" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametre" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Retning" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Tilføj parameter" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Fjern den sidste parameter" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Retur type" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Retur-længde/-værdier" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Retur-indstillinger" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Er deterministisk" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11668,25 +11694,25 @@ msgstr "" "Du har ikke tilstrækkelige rettigheder til at udføre denne handling; Der " "henvises til dokumentationen for flere detaljer" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Sikkerhedstype" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL dataadgang" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Du skal angive et rutinenavn!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ugyldig retning \"%s\" givet for parameter." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11694,37 +11720,37 @@ msgstr "" "Du skal angive længde/værdier for rutineparametre af typen ENUM, SET, " "VARCHAR og VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Du skal angive et navn og en type for hver rutineparameter." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Du skal angive en gyldig returtype for rutinen." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Du skal angive en rutinedefinition." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Udførelsesresultater af rutine %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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ække påvirket af den sidste SQL-sætning inde i proceduren." msgstr[1] "%d række(r) påvirket af den sidste SQL-sætning inde i proceduren." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Udfør rutine" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Rutineparametre" @@ -11746,32 +11772,32 @@ msgstr "Trigger %1$s er oprettet." msgid "Edit trigger" msgstr "Rediger trigger" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Triggernavn" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tid" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Du skal angive et triggernavn!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Du skal angive et gyldig tidsinterval for denne trigger!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Du skal opgive en gyldig hændelse for denne trigger!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Du skal opgive et gyldigt tabelnavn!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Du skal opgive en triggerdefinition." @@ -11908,90 +11934,90 @@ msgstr "Tegnsæt og kollationer" msgid "Databases statistics" msgstr "Databasestatistik" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Ingen privilegier." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Tillader læsning af data." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Tillader ændring af data." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Tillader sletning af data." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Tillader at se processer for alle brugere." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12001,130 +12027,103 @@ msgstr "" "nødvendigt for de fleste administrative operationer som indstilling af " "globale variable eller for at dræbe andre brugeres tråde." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor slaves / masters er." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye views." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Tillader at oprette hændelser til hændelsesskeduleren." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Tillader oprettelse og sletning af triggers." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Ingen" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Brugergruppe" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Kræver SSL-krypterede forbindelser." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Kræver SSL-krypterede forbindelser." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Kræver et gyldigt X509-certifikat." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Kræver at den specifikke chiffermetode anvendes for en forbindelse." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Kræver at et gyldigt X509-certifikat som er udstedt af denne " "certifikatudsteder bliver forevist." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Kræver at et gyldigt X509-certifikat med dette emne bliver forevist." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ressourcebegrænsninger" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12132,27 +12131,25 @@ msgstr "" "Begrænser antallet af kommandoer som ændrer enhver tabel eller database " "brugeren må udføre pr. time." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutiner" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." @@ -12160,66 +12157,66 @@ msgstr "" "Tillader brugeren at give til eller fjerne fra andre brugere privilegier, " "som brugeren råder over på denne rutine." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Tillader ændring og sletning af gemte rutiner." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Tillader udførelse af gemte rutiner." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "NB: Navne på MySQL privilegier er på engelsk." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administration" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globale privilegier" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" "tabellerne." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." @@ -12227,37 +12224,32 @@ msgstr "" "Tillader brugeren at give til eller fjerne fra andre brugere privilegier, " "som brugeren råder over selv." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie autentifikation" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Login autentifikation" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Cookie autentifikation" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Login-information" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12265,151 +12257,151 @@ msgstr "" "Der findes allerede en konto med samme brugernavn, men muligvis med et andet " "værtsnavn." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Brugernavn:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Lognavn" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Adgangskoden må ikke ændres" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentifikation" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Adgangskodehashing:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Adgangskoden for %s blev korrekt udskiftet." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har tilbagekaldt privilegierne for %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Tilføj brugergruppe" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Database for bruger" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Opret database med samme navn og tildel alle privilegier." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Tildel alle privilegier på database \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Brugere med adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Bruger er blevet tilføjet." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Tildel" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Ingen bruger fundet." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Enhver" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "database-specifik" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "tabelspecifik" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Ret privilegier:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Tilbagekald" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Redigér brugergruppe" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… slet den gamle fra brugertabellerne." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12417,102 +12409,87 @@ msgstr "" "… slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Ret Login-information / Kopier bruger" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Opret en bruger med samme privilegier og …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Fjern valgte brugere" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Brugergruppe" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Drop databaser der har samme navne som brugernes." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilegier for %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Bruger" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Ny" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Ret privilegier:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Brugergruppe" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12520,13 +12497,13 @@ msgstr "" "Bemærk: Du forsøger at redigere privilegier for brugeren som du aktuelt er " "logget ind som." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Oversigt over brugere" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12537,7 +12514,7 @@ msgstr "" "forbindelse, hvis værtsdelen af deres konto tillader forbindelse fra enhver " "(%) vært." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12551,7 +12528,7 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12571,11 +12548,11 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." @@ -12883,12 +12860,12 @@ msgstr "Kommando" msgid "Progress" msgstr "Fremskridt" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtre" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Vis kun aktive" @@ -12909,12 +12886,12 @@ msgstr "pr. minut:" msgid "per second:" msgstr "pr. sekund:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Forespørgsler" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12938,7 +12915,7 @@ msgstr "Vis uformatterede værdier" msgid "Related links:" msgstr "Relaterede links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12946,11 +12923,11 @@ msgstr "" "Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " "lukke forbindelsen rigtigt." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antal mislykkede forsøg på at forbinde til MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12960,17 +12937,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antal transaktioner der brugte det midlertidige binære log mellemlager." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antal forbindelsesforsøg (lykkedes eller ej) til MySQL server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12982,11 +12959,11 @@ msgstr "" "overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " "hukommelses-baserede i stedet for disk-baserede." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12994,7 +12971,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13002,7 +12979,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13010,23 +12987,23 @@ msgstr "" "Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " "hvorpå en bruger INSERT DELAYED får sin egen tråd." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Antallet af gange en række blev slettet fra en tabel." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13036,7 +13013,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13046,7 +13023,7 @@ msgstr "" "antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " "col1 FROM foo, antagende at col1 er indekseret." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13055,7 +13032,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13065,7 +13042,7 @@ msgstr "" "hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " "du udfører et indeks scan." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13073,7 +13050,7 @@ msgstr "" "Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " "læsemetode bruges hovedsageligt til at optimere ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13085,7 +13062,7 @@ msgstr "" "resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " "scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13097,35 +13074,35 @@ msgstr "" "enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " "skrevet til at drage fordel af de indeks du har." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Antallet af anmodninger om at opdatere en række i en tabel." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Antallet af anmodninger om at indsætte en række i en tabel." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13135,7 +13112,7 @@ msgstr "" "sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13147,11 +13124,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13160,7 +13137,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13168,11 +13145,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13180,7 +13157,7 @@ msgstr "" "Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " "pool og måtte lave en enkelt-side read." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13194,55 +13171,55 @@ msgstr "" "sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " "pool størrelsen er sat ordentligt, skulle denne værdi være lille." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13250,35 +13227,35 @@ msgstr "" "Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " "vente på at den blev flushed før vi kunne fortsætte." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til logfilen." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13286,51 +13263,51 @@ msgstr "" "Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " "tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Antallet af gange der skulle ventes på en rækkelås." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13339,7 +13316,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13347,7 +13324,7 @@ msgstr "" "Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " "til at fastslå hvor meget af nøglemellemlagere der er i brug." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13357,15 +13334,15 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Procentdel af anvende nøgle-cache (beregnet værdi)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13375,7 +13352,7 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13383,22 +13360,22 @@ msgstr "" "Missede nøgle-mellemlagringer beregnet som raten af fysiske læsninger " "sammenlignet med læse-forespørgsler (beregnet værdi)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procentdel af fysiske skrivninger sammenlignet med skrive-forespørgsler " "(beregnet værdi)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13410,7 +13387,7 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13418,12 +13395,12 @@ msgstr "" "Det maksimale antal forbindelser, som har været i brug samtidigt, siden " "serveren startede." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13431,19 +13408,19 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13453,19 +13430,19 @@ msgstr "" "kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " "kommando." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13478,7 +13455,7 @@ msgstr "" "Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " "at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13486,19 +13463,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13506,11 +13483,11 @@ msgstr "" "Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " "nøje tjekke indeksene på dine tabeller." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Antallet af joins der brugte en range søgning på en reference tabel." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13518,7 +13495,7 @@ msgstr "" "Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " "(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13526,15 +13503,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Antallet af joins som lavede en fuld scan af den første tabel." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13542,12 +13519,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" "forsøgt transaktioner." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dette er TIL hvis denne server er en slave der er forbundet til en master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13555,13 +13532,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Antallet af forespørgsler der har taget mere end long_query_time sekunder." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13571,23 +13548,23 @@ msgstr "" "denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " "systemvariablen." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Antallet af sorteringer udført ved scanning af tabellen." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13599,7 +13576,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikation." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13609,11 +13586,11 @@ msgstr "" "som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " "thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13625,11 +13602,11 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Frekvens for hits i trådmellemlager (beregnet værdi)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde, der ikke sover." @@ -13658,37 +13635,37 @@ msgstr "Faner på databaseniveau" msgid "Table level tabs" msgstr "Faner på tabelniveau" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Vis brugere" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Tilføj brugergruppe" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Redigér brugergruppen: \"%s\"" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Menu-tildelinger for brugergruppe" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Gruppenavn:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Faner på serverniveau" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Faner på databaseniveau" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Faner på tabelniveau" @@ -13793,7 +13770,7 @@ msgstr "Kør SQL-forspørgsel(er) på database %s" msgid "Run SQL query/queries on table %s" msgstr "Kør SQL-forspørgsel/forespørgsler på tabellen %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Ryd" @@ -13880,112 +13857,112 @@ msgstr "Deaktiver nu" msgid "Version" msgstr "Version" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Oprettet" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Opdateret" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Slet version" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Sporingsrapport" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Øjebliksbillede af struktur" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ikke aktiv" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Sporingskommandoer" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Slet sporingsdatarække fra rapport" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Ingen data" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %1$s med datoer fra %2$s til %3$s for brugeren %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL-udtræk (hentning af fil)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL-dump" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Denne indstilling vil erstatte din tabel og dens indeholdte data." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL-kørsel" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Eksportér som %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Data manipuleringsudtryk" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Datadefinitionsudstryk" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Dato" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Brugernavn" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL kode)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ingen" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Sporing af data definition slettet" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulerede sporingsdata slettet" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13993,61 +13970,61 @@ msgstr "" "Du kan udføre eksporten ved at oprette og bruge en midlertidig database. " "Sørg venligst for at du har privilegier til at gøre det." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Udkommenter disse to linjer, hvis du ikke har brug for dem." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-sætninger eksporteres. Kopier venligst dump eller udfør den." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Sporings rapport for tabel `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sporing af %1$s blev aktiveret i version %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sporing af %1$s blev deaktiveret i version %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s af %2$s blev slettet." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s blev oprettet, sporing af %2$s er aktiv." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Ikke-sporede tabeller" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sporingstabel" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Sporede tabeller" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Seneste version" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Slet sporing" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versioner" @@ -14055,7 +14032,7 @@ msgstr "Versioner" msgid "Manage your settings" msgstr "Administrer dine indstillinger" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfigurationen er gemt." @@ -14081,7 +14058,7 @@ msgstr "Fejl i ZIP arkiv:" msgid "No files found inside ZIP archive!" msgstr "Ingen filer fundet i ZIP arkivet!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Kritisk fejl: Navigationen kan kun tilgås via AJAX" @@ -14089,57 +14066,57 @@ msgstr "Kritisk fejl: Navigationen kan kun tilgås via AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Kan ikke gemme indstillinger, den sendte formular indeholder fejl!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Manglende phpMyAdmin configuration storage tabeller" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Kunne ikke indlæse konfiguration" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfigurationen indejolder ukorrekte data for visse felter." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Vil du importere de resterende indstillinger ?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Gemt den @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importér fra fil" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Import fra browserens lager" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Indstillinger vil blive importeret fra din browsers lokale lager." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Du har ingen gemte indstillinger!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Denne funktion er ikke understøttet af din browser" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Flet med aktuel konfiguration" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14148,25 +14125,25 @@ msgstr "" "Du kan sætte flere indstillinger ved at modificere config.inc.php fx ved at " "bruge %sopsætningsskriptet%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Send (download)" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Gem i browserens lager" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Indstillinger vil blive gemt i din browsers lokale lager." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Eksisterende indstillinger vil blive overskrevet!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Du kan nulstille alle dine indstillinger og gendanne dem med standardværdier." @@ -14175,12 +14152,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Ingen privilegier" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14188,43 +14165,43 @@ msgstr "" "Brugernavn og værtsnavn blev ikke ændret. Hvis du kun vil ændre " "adgangskoden, bør 'Skift adgangskode' fanen anvendes." -#: server_status.php:35 +#: server_status.php:36 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view server status." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view the advisor." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s blev stoppet." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: server_status_queries.php:42 +#: server_status_queries.php:43 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view query statistics." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: server_status_variables.php:52 +#: server_status_variables.php:53 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view status variables." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Udtræk" @@ -14232,11 +14209,11 @@ msgstr "Udtræk" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "Ukorrekt formsæt, tjek arrayet $formsets i setup/frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Kan ikke hente eller gemme konfiguration" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14246,7 +14223,7 @@ msgstr "" "mappen som beskrevet i [doc@setup_script]documentation[/doc]. Ellers vil du " "kun blive i stand til at downloade eller vise den." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14254,24 +14231,27 @@ msgstr "" "Du bruger ikke en sikker forbindelse; alle data (inklusive potentielt følsom " "information, som adgangskode) sendes ukrypteret!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Hvis din serverogså er konfigureret til at acceptere HTTPS requests så følg " "[a@%s]this link[/a] for at bruge en sikker forbindelse." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Usikker forbindelse" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfigurationen er gemt." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14280,61 +14260,61 @@ msgstr "" "mappen. Kopier den til topniveau mappen og slet mappen config for at bruge " "den." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfigurationen er gemt." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Oversigt" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Vis skjulte beskeder (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Der er ingen konfigurerede servere" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Ny server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Standardsprog" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "lad brugeren vælge" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ingen -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Standardserver" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Linjeafslutning" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Vis" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Indlæs" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin hjemmeside" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Doner" @@ -14370,7 +14350,7 @@ msgstr "Ignorer fejl" msgid "Show form" msgstr "Vis formular" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14378,15 +14358,15 @@ msgstr "" "Læsning af version fejlede. Måske er du offline eller upgradeserveren svarer " "ikke." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Fik en ugyldig versionsstreng fra server" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Versionsstrengen kan ikke parses" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14395,7 +14375,7 @@ msgstr "" "Du bruger Git version, kør [kbd]git pull[/kbd] :-)[br]Sidste stabile version " "er %s, released %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Ingen nyere stabil version er tilgængelig" @@ -14408,12 +14388,12 @@ msgstr "Forkerte data" msgid "Wrong data or no validation for %s" msgstr "Forkerte data eller ingen validering af %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabellen %s eksisterer allerede!" @@ -14426,29 +14406,29 @@ msgstr "Vis dump (skema) over tabel" msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Række: %1$s, kolonne: %2$s, fejl: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Der er ikke valgt en række." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Sporing af %s er aktiveret." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Sletningen af sporingsversionerne blev gennemført." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Der er ikke valgt versioner." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL-sætninger udført." @@ -14652,7 +14632,7 @@ msgid "List of available transformations and their options" msgstr "Oversigt over tilgængelige transformationer og deres tilvalg" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformation af browservisning" @@ -14674,7 +14654,7 @@ msgstr "" "\\xyz' eller 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Input-transformation" @@ -15116,17 +15096,17 @@ msgid "Size" msgstr "Størrelse" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Oprettelse" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Sidste opdatering" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Seneste tjek" @@ -15173,6 +15153,12 @@ msgstr "" "Din browser har phpMyAdmin konfiguration for dette domæne. Vil du importere " "den for den aktuelle session?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Slet sporing" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Tilføj privilegier på følgende database(r):" @@ -15192,10 +15178,47 @@ msgstr "Tilføj privileges på følgende tabel:" msgid "Add privileges on the following table:" msgstr "Tilføj privileges på følgende tabel:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Ny" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Ingen" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Fjern valgte brugere" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Drop databaser der har samme navne som brugernes." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ressourcebegrænsninger" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" @@ -15226,7 +15249,7 @@ msgstr "Udvidelsesmodul" msgid "Author" msgstr "Forfatter" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "slået fra" @@ -15385,7 +15408,7 @@ msgstr "Fortolker:" msgid "Comment:" msgstr "Kommentar:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Træk for at ændre rækkefølge" @@ -15419,20 +15442,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Begrænsning på fremmednøgle" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Tilføj begrænsning" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Interne relationer" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Intern relation" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15440,7 +15463,7 @@ msgstr "" "En intern relation er ikke nødvendig, når en tilsvarende FOREIGN KEY " "relation findes." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Vælg kolonne til visning:" @@ -15493,11 +15516,11 @@ msgstr "Original tekststreng" msgid "Replaced string" msgstr "Erstattet tekststreng" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Erstat" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Ekstra søgekriterium" @@ -15568,7 +15591,7 @@ msgid "at beginning of table" msgstr "i begyndelsen af tabellen" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15604,28 +15627,28 @@ msgstr "Rækkelængde" msgid "Index length" msgstr "Rækkelængde" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "partitioneret" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Fjern partitionering" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Rediger view" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Pladsforbrug" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektiv" @@ -15650,31 +15673,31 @@ msgstr "Forbedring af tabelstruktur" msgid "Track view" msgstr "Spor visning" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Rækkestatistik" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statisk" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamisk" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partitioneret" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Rækkelængde" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Rækkestørrelse" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Næste autoindeks" @@ -15687,46 +15710,46 @@ msgstr "Kolonne %s er slettet." msgid "Click to toggle" msgstr "Klik for at skifte" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Hent flere temaer!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tilgængelige MIME-typer" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Tilgængelige transformationer for browservisning" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Tilgængelige input-transformationer" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivelse" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Tager dig til næste trin…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke tilstrækkelige rettigheder til at være her!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profilen er blevet opdateret." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15805,8 +15828,12 @@ msgid "Unexpected end of CASE expression" msgstr "Uventet afslutning af CASE udtryk" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Et symbolnavn var ventet! Et reserveret nøgleord kan ikke bruges som et " @@ -15833,19 +15860,19 @@ msgid "Unrecognized data type." msgstr "Ukendt datatype." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Ingen tabeller valgt." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Et alias er fundet tidligere." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Uventet punktum." @@ -15908,29 +15935,29 @@ msgstr "Forventede whitespace(s) før adskillelsestegn." msgid "Expected delimiter." msgstr "Forventede adskillelsestegn." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Hændelse %1$s er oprettet." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Skabelon for tabelnavn" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "i begyndelsen af tabellen" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Ukendt type af statement." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Ingen transaktion er blevet startet tidligere." @@ -15949,10 +15976,16 @@ msgstr "Uventet tegn på linje %s." msgid "This type of clause was previously parsed." msgstr "Denne type af sætningskonstruktion er tidligere blevet parset." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Ukendt nøgleord." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "at beginning of table" +msgid "Unexpected ordering of clauses." +msgstr "i begyndelsen af tabellen" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16000,7 +16033,7 @@ msgstr "" msgid "strict error" msgstr "Indsaml fejl" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Navnet på et view kan ikke være tomt" @@ -17302,6 +17335,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Cookie autentifikation" + #~ msgid "Try to connect without password." #~ msgstr "Prøv at forbinde uden adganskode." diff --git a/po/de.po b/po/de.po index 3efa4bf564..a22292eca7 100644 --- a/po/de.po +++ b/po/de.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-12-07 07:42+0000\n" "Last-Translator: Jörn Gorres \n" -"Language-Team: German " -"\n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "Die %s Datei steht auf diesem System nicht zur Verfügung. Bitte besuchen Sie " "%s um nach weiteren Informationen zu suchen." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Die zentrale Liste der Spalten für die aktuelle Datenbank ist leer." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Zum Sortieren klicken." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Zeige Datensätze %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Datenbankkommentar" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Tabellenkommentar:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Tabellenkommentar:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Tabellenkommentar:" msgid "Column" msgstr "Spalte" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Spalte" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Spalte" msgid "Type" msgstr "Typ" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Typ" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Standard" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Standard" msgid "Links to" msgstr "Verweise" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Verweise" msgid "Comments" msgstr "Kommentare" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primärschlüssel" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Primärschlüssel" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Primärschlüssel" msgid "No" msgstr "Nein" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "Nein" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Dump (Schema) der Datenbank anzeigen" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Es wurden keine Tabellen in der Datenbank gefunden." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Tabellen" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,27 +283,27 @@ msgstr "Struktur" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Daten" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Alle auswählen" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Datenbank %1$s wurde in %2$s umbenannt." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Datenbank %1$s wurde nach %2$s kopiert." @@ -316,27 +316,27 @@ msgstr "" "Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. %sFinden Sie " "heraus warum%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Zum %sDesigner%s wechseln" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Zugriff verweigert!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Verfolgungsdaten erfolgreich gelöscht." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -344,11 +344,11 @@ msgstr "" "Version %1$s für ausgewählte Tabellen wurde erstellt, Tracking ist für sie " "aktiviert." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Keine Tabellen ausgewählt." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Datenbank-Log" @@ -390,131 +390,131 @@ msgstr "Ungültiger Typ!" msgid "Bad parameters!" msgstr "Ungültige Parameter!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Wert für die Spalte »%s«" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Verwende OpenStreetMaps als Basis-Satz" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometrie %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Punkt hinzufügen" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Textzeile %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Außenkreis:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Innenkreis %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "LineString hinzufügen" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Inkreis hinzufügen" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polygon %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Polygon hinzufügen" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Geometrie hinzufügen" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "OK" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Ausgabe" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -522,19 +522,19 @@ msgstr "" "Wählen Sie \"GeomFromText\" aus der Spalte \"Funktion\" und kopieren Sie den " "Text unten in das Feld \"Wert\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Erfolgreich" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Fehlgeschlagen" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Unvollständige Parameter" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -543,15 +543,15 @@ msgstr "" "Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " "%sDokumentation%s zur Lösung diese Problems." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "SQL-Abfrage wurde gelöscht." -#: import.php:489 +#: import.php:486 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 " @@ -561,18 +561,18 @@ msgstr "" "ausgewählt, oder die Dateigröße hat die maximal erlaubte Größe der PHP-" "Konfiguration überschritten. Siehe [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre " "phpMyAdmin-Installation!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Lesezeichen %s wurde erstellt." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -581,7 +581,7 @@ msgstr[0] "" msgstr[1] "" "Der Import wurde erfolgreich abgeschlossen, %d Abfragen wurden ausgeführt." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -590,7 +590,7 @@ msgstr "" "Das Ausführungszeitlimit wurde erreicht. Wenn Sie %sdie Datei erneut " "abschicken%s, wird der Import fortgesetzt." -#: import.php:632 +#: import.php:629 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." @@ -599,7 +599,7 @@ msgstr "" "dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern " "nicht die Ausführungszeitbeschränkungen von PHP gelockert werden." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." @@ -607,17 +607,17 @@ msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." msgid "Could not load the progress of the import." msgstr "Der Fortschritt des Imports konnte nicht geladen werden." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Zurück" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin Demo Server" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -628,107 +628,107 @@ msgstr "" "nicht die Benutzer root, debian-sys-maint und pma. Mehr Informationen ist " "unter %s verfügbar." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Allgemeine Einstellungen" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Passwort ändern" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Zeichensatz/Kollation der MySQL-Verbindung" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Anzeige-Einstellungen" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Weitere Einstellungen" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Datenbank-Server" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Server-Typ:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Server-Version:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protokoll-Version:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Benutzer:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Server-Zeichensatz:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Webserver" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Datenbank-Client Version:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP-Erweiterung:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP-Version:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Versionsinformationen:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentation" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Offizielle Homepage" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Mitmachen" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Unterstützung erhalten" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Liste der Änderungen" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Lizenz" -#: index.php:443 +#: index.php:444 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 " @@ -739,7 +739,7 @@ msgstr "" "phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was zu unerwarteten " "Ergebnissen führen kann." -#: index.php:458 +#: index.php:459 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." @@ -748,7 +748,7 @@ msgstr "" "deaktiviert. Aus diesem Grund sind einige Funktionen wie das Melden von " "Fehlern oder die Versionsüberprüfung deaktiviert." -#: index.php:473 +#: index.php:474 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 " @@ -760,7 +760,7 @@ msgstr "" "a] ist niedriger als die in phpMyAdmin konfigurierte Cookiegültigkeit, " "deshalb kann Ihre Anmeldung eher ablaufen als in phpMyAdmin konfiguriert." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -769,18 +769,18 @@ msgstr "" "phpMyAdmin eingestellt ist, daher wird Ihre Anmeldung eher ablaufen als in " "phpMyAdmin konfiguriert." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Ab sofort muss ein geheimes Passwort zur Verschlüsselung in der " "Konfigurationsdatei gesetzt werden (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "Die geheime Passphrase in der Konfiguration (blowfish_secret) ist zu kurz." -#: index.php:528 +#: index.php:529 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 " @@ -792,7 +792,7 @@ msgstr "" "löschen. Andernfalls könnte die Sicherheit Ihres Servers gefährdet sein und " "unautorisierte Personen könnten die Konfiguration herunterladen." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -802,14 +802,14 @@ msgstr "" "einige erweiterte Funktionen wurden deaktiviert. %sFinden Sie heraus warum" "%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Oder wechseln Sie in einer beliebigen Datenbank zum Tab „Operationen“, um " "die Einstellung dort vorzunehmen." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -818,7 +818,7 @@ msgstr "" "Die Version der verwendeten PHP-MySQL-Bibliothek %s unterscheidet sich von " "der Version des MySQL-Servers %s. Dies kann zu unerwartetem Verhalten führen." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -993,7 +993,7 @@ msgid "Save & close" msgstr "Speichern & Schließen" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Zurücksetzen" @@ -1025,7 +1025,7 @@ msgstr "Index hinzufügen" msgid "Edit index" msgstr "Index bearbeiten" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "%s Spalte(n) zum Index hinzufügen" @@ -1050,10 +1050,10 @@ msgstr "Bitte wählen Sie %s Spalte(n) für den Index." msgid "You have to add at least one column." msgstr "Sie müssen mindestens eine Spalte hinzufügen." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQL Vorschau" @@ -1065,7 +1065,7 @@ msgstr "Abfrage simulieren" msgid "Matched rows:" msgstr "Gefundene Zeilen:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL-Befehl:" @@ -1082,13 +1082,13 @@ msgstr "Es wurde kein Host angegeben!" msgid "The user name is empty!" msgstr "Es wurde kein Benutzername eingegeben!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" @@ -1096,8 +1096,8 @@ msgstr "Die eingegebenen Passwörter sind nicht identisch!" msgid "Removing Selected Users" msgstr "Die ausgewählten Benutzer werden gelöscht" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Schließen" @@ -1119,19 +1119,19 @@ msgstr "Vorlage wurde gelöscht." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Weitere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1238,40 +1238,40 @@ msgid "Processes" msgstr "Prozesse" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1289,7 +1289,7 @@ msgstr "Anfragen" msgid "Traffic" msgstr "Netzwerkverkehr" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Einstellungen" @@ -1303,16 +1303,16 @@ msgid "Please add at least one variable to the series!" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "keine" @@ -1511,20 +1511,20 @@ msgstr "Analysieren…" msgid "Explain output" msgstr "Ausgabe erklären" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Zeit" @@ -1613,10 +1613,10 @@ msgstr "" "Setze auf Standardeinstellungen zurück…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importieren" @@ -1689,7 +1689,7 @@ msgstr "Keine Parameter gefunden!" msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Seitenbezogene Einstellungen" @@ -1729,8 +1729,8 @@ msgid "Error text: %s" msgstr "Fehlertext: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Es wurden keine Datenbanken ausgewählt." @@ -1768,7 +1768,7 @@ msgstr "Datenbank wird kopiert" msgid "Changing charset" msgstr "Zeichensatz wird geändert" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Fremdschlüsselüberprüfung aktivieren" @@ -1796,77 +1796,82 @@ msgstr "Durchsehen" msgid "Deleting" msgstr "Löschen" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Treffer für Tabelle %s löschen?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Die Definition einer gespeicherten Prozedur muss ein RETURN-Statement " "beinhalten!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exportieren" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Es kann keine Routine exportiert werden. Möglicherweise fehlen die " "erforderlichen Rechte." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET Editor" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Werte für die Spalte %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Werte für eine neue Spalte" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Geben Sie jeden Wert in einem eigenen Feld ein." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "%d Wert(e) hinzufügen" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Hinweis: Wenn die Datei mehrere Tabellen enthält, werden diese in einer " "einzigen Tabelle zusammengefasst." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "SQL-Querybox ausblenden" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "SQL-Querybox anzeigen" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1874,53 +1879,53 @@ msgstr "SQL-Querybox anzeigen" msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Löschen" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Keine automatisch gespeicherte Abfrage" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Auswählen" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Spaltenauswahl" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Diese Liste durchsuchen" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1930,15 +1935,15 @@ msgstr "" "Spalten-Liste der Datenbank %s Spalten hat, die nicht in der aktuellen " "Tabelle vorhanden sind." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Mehr anzeigen" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Sind sie sicher?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1946,52 +1951,52 @@ msgstr "" "Diese Aktion kann einige Spalten-Definitionen ändern.
Sind Sie sicher, " "dass Sie fortfahren möchten?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Weiter" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Primärschlüssel hinzufügen" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Primärschlüssel wurde erzeugt." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Führt sie zum nächsten Schritt…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" "Der erste Schritt der Normalisierung für Tabelle '%s' ist fertiggestellt." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Schritt-Ende" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Zweiter Schritt der Normalisierung (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Fertig" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Teilweise Abhängigkeiten bestätigen" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Ausgewählte teilweise Abhängigkeiten sind wie folgt:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1999,21 +2004,21 @@ msgstr "" "Hinweis: a, b,-> d, f bedeutet Werte der Spalten a und b miteinander " "kombiniert können Werte der Spalten d und f bestimmen." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Es wurden keine teilweisen Abhängigkeiten ausgewählt!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Zeige mir die möglichen teilweisen Abhängigkeiten anhand von Daten in der " "Tabelle" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Teilweise Abhängigkeiten Liste ausblenden" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2021,174 +2026,174 @@ msgstr "" "Bleib sitzen! Es dauert einige Sekunden, abhängig von Datengröße und " "Spaltenanzahl der Tabelle." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Schritt" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Die folgenden Aktionen werden ausgeführt:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Entfernen der Spalten %s aus der Tabelle %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Folgende Tabelle erzeugen" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Dritter Schritt der Normalisierung (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Transitive Abhängigkeiten bestätigen" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Ausgewählte Abhängigkeiten sind wie folgt:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Es wurden keine Anhängigkeiten ausgewählt!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Speichern" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Suchkriterien ausblenden" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Bereichssuche" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Spaltenmaximum:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Spaltenminimum:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimalwert:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maximalwert:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Kriterien für Suchen und Ersetzen ausblenden" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Suchkriterien anzeigen und ersetzen" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Jeder Punkt stellt eine Datenreihe dar." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Das Überfliegen eines Punktes zeigt seine Bezeichnung." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" "Zum Hineinzoomen markieren Sie mit der Maus einen Abschnitt des Diagramms." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Auf \"Zoom zurücksetzen\" klicken, um zum Original zurückzukehren." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Auf einen Datenpunkt klicken, um eine Datenzeile anzuzeigen bzw. zu " "editieren." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Die Größe der Darstellung kann durch Ziehen in die rechte untere Ecke " "verändert werden." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Zwei Spalten auswählen" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "2 unterschiedliche Spalten auswählen" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Datenpunkt-Inhalt" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopieren" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "LineString" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrie" # Ist hiermit der Inkreis gemeint? https://de.wikipedia.org/wiki/Inkreis # # Ja -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Inkreis" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Außenkreis" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Soll der Verschlüsselungs-Schlüssel importiert werden?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Verschlüsselungs-Schlüssel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2196,7 +2201,7 @@ msgstr "" "MySQL akzeptiert weitere Werte, die nicht mit dem Schieberegler auswählbar " "sind; falls gewünscht, geben Sie diese Werte direkt ein" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" @@ -2204,7 +2209,7 @@ msgstr "" "MySQL akzeptiert weitere Werte, die nicht mit dem Kalenderfeld auswählbar " "sind; falls gewünscht, geben Sie diese Werte direkt ein" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2212,24 +2217,24 @@ msgstr "" "Zeigt an, dass Sie Änderungen an dieser Seite vorgenommen haben; Sie werden " "um Bestätigung gebeten, bevor die Änderungen verworfen werden" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2237,76 +2242,76 @@ msgstr "" "Sie haben die Änderungen im Layout nicht gespeichert. Sie gehen verloren " "wenn Sie nicht speichern. Möchten Sie fortfahren?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Seitenname" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Seite speichern" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Seite speichern als" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Öffne Seite" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Seite löschen" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unbenannt" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Bitte wählen Sie eine Seite um fortzufahren" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Bitte geben Sie einen gültigen Seitennamen ein" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Möchten Sie die Änderungen der aktuellen Seite speichern?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Seite wurde erfolgreich gelöscht" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Beziehungsschema exportieren" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Änderungen gespeichert" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Option hinzufügen zu Spalte \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d Objekt(e) erstellt." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Abschicken" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Drücken Sie ESC, um das Bearbeiten abzubrechen." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2314,15 +2319,15 @@ msgstr "" "Sie haben Daten verändert und noch nicht gespeichert. Sind Sie sicher, dass " "Sie diese Seite ohne zu speichern verlassen möchten?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Zur Umsortierung ziehen." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Klicken um die Ergebnisse nach dieser Spalte zu sortieren." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2332,28 +2337,28 @@ msgstr "" "DESC zu wechseln.
- Strg oder Alt+Klicken (Mac: Shift+Option+Klicken), " "um die Spalte von der ORDER BY-Klausel zu entfernen" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klicken zum Aus- bzw. Abwählen." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Doppelklicken, um den Spaltennamen zu kopieren." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Den Pfeil des Aufklappsmenüs anklicken
um die Sichtbarkeit der Spalte " "umzustellen." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Alles anzeigen" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2363,13 +2368,13 @@ msgstr "" "Kopieren und Löschen von Links können nach dem Speichern eventuell nicht " "funktionieren." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Bitte geben Sie eine gültige hexadezimale Zeichenfolge ein. Gültige Zeichen " "sind 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2377,105 +2382,105 @@ msgstr "" "Sollen wirklich alle Datensätze angezeigt werden? Bei einer großen Tabelle " "könnte dies den Browser zum Absturz bringen." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Ursprüngliche Länge" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "abbrechen" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abgebrochen" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Erfolg" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Dateien hier ablegen" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Zuerst Datenbank auswählen" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Drucken" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Sie können die meisten Werte auch bearbeiten,
indem Sie darauf " "doppelklicken." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Sie können die meisten Werte auch bearbeiten,
indem Sie darauf klicken." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Gehe zur Verknüpfung:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Spaltennamen kopieren." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Klicken Sie auf den Spaltennamen, um ihn in die Zwischenablage zu kopieren." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generieren" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mehr" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Panel anzeigen" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Panel ausblenden" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Zeige versteckte Navigationselemente." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Mit Hauptpanel verknüpfen" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Verknüpfung mit Hauptpanel aufheben" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Die angeforderte Seite wurde nicht im Verlauf gefunden, sie könnte " "abgelaufen sein." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2485,27 +2490,27 @@ msgstr "" "empfohlen. Die aktuelle Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", aktuelle stabile Version:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "auf dem neuesten Stand" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Erzeuge View" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Fehlerbericht senden" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Fehlerbericht senden" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2513,15 +2518,15 @@ msgstr "" "Es ist ein JavaScript Fehler aufgetreten. Möchten Sie einen Fehlerbericht " "senden?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Einstellungen für Berichte ändern" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Berichtdetails anzeigen" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2529,7 +2534,7 @@ msgstr "" "Ihr Export ist unvollständig, wegen eines niedrigen Ausführungszeit-Limits " "in PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2539,60 +2544,60 @@ msgstr "" "werden einige der Felder möglicherweise ignoriert, wegen der PHP-" "Konfiguration max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Einige Fehler wurden auf dem Server entdeckt!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Bitte schauen Sie am unteren Ende dieses Fensters." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Alles ignorieren" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Gemäß Ihrer Einstellungen werden diese derzeit übermittelt, seien Sie bitte " "geduldig." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Diese Abfrage erneut ausführen?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Möchten Sie dieses Lesezeichen wirklich löschen?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Beim Laden der SQL-Debug-Informationen ist ein Fehler aufgetreten." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s Abfragen %s mal in %s Sekunden ausgeführt." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s Argument(e) übergeben" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Argumente einblenden" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Argumente ausblenden" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Nötige Zeit:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2608,349 +2613,369 @@ msgstr "" "löschen. In Safari entstehen solche Probleme meistens, wenn das \"Private " "Surfen\" aktiviert ist." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Tabellen kopieren nach" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Tabellen-Präfix hinzufügen" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Tabellenprefix ändern" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tabelle mit Prefix kopieren" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Vorher" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Nächster" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Heute" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Januar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Februar" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "März" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "April" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "August" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "September" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "November" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dez" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Montag" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Freitag" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Wo" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Stunde" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minute" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekunde" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Dieses Feld muss ausgefüllt werden" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Bitte korrigieren Sie dieses Feld" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Bitte geben Sie eine gültigen E-Mail-Adresse ein" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Bitte geben Sie eine gültige URL ein" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Bitte geben Sie ein gültiges Datum ein" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Bitte geben Sie ein gültiges Datum (ISO) ein" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Bitte geben Sie eine gültige Zahl ein" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Bitte geben Sie nur Ziffern ein" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Bitte geben Sie denselben Wert nochmal ein" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Bitte nicht mehr als {0} Zeichen eingeben" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Bitte geben Sie mindestens {0} Zeichen ein" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Bitte geben Sie einen zwischen {0} und {1} Zeichen langen Wert ein" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} ein" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Bitte geben Sie einen Wert kleiner gleich {0} ein" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Bitte geben Sie einen Wert größer gleich {0} ein" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Bitte geben Sie ein gültiges Datum oder eine gültige Zeitangabe ein" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Bitte geben Sie einen gültige hexadezimale Eingabe ein" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Fehler" @@ -3016,20 +3041,20 @@ msgid "Charset" msgstr "Zeichensatz" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Kollation" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binär" @@ -3224,7 +3249,7 @@ msgid "Czech-Slovak" msgstr "Tschechoslowakisch" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "unbekannt" @@ -3272,28 +3297,28 @@ msgstr "" msgid "Font size" msgstr "Schriftgröße" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "%1$d Lesezeichen anzeigen (sowohl private als auch geteilte)" msgstr[1] "%1$d Lesezeichen anzeigen (sowohl private als auch geteilte)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Keine Lesezeichen" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL-Abfragekonsole" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" "Fehler beim Einstellen des konfigurierten Zeichensatzes/der konfigurierten " "Kollation für die Verbindung!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3301,25 +3326,25 @@ msgstr "" "Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers " "nicht korrekt konfiguriert)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Der Server antwortet nicht." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank " "befindet." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Fehlende Verbindungs-Parameter!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, " @@ -3415,110 +3440,105 @@ msgstr "Einfg:" msgid "Del:" msgstr "Entf:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-Befehl in der Datenbank %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "SQL-Befehl ausführen" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Suchanfrage mit Lesezeichen gespeichert:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Neues Lesezeichen" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Lesezeichen erstellen" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Lesezeichen aktualisieren" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Lesezeichen löschen" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "mindestens eines der Wörter" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "alle Wörter" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "genau diese Zeichenkette" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "als regulären Ausdruck" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Suchergebnisse für \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Insgesamt %s Treffer" msgstr[1] "Insgesamt %s Treffer" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s Treffer in %2$s" msgstr[1] "%1$s Treffer in %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Anzeigen" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Treffer für Tabelle %s löschen?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Durchsuche die Datenbank" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Finde:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "In der/den Tabelle(n):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Auswahl entfernen" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "In Spalte:" @@ -3538,30 +3558,30 @@ msgstr "Zeilen filtern" msgid "Search this table" msgstr "Diese Tabelle durchsuchen" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Anfang" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Vorherige" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Nächste" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Ende" @@ -3570,7 +3590,7 @@ msgstr "Ende" msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Anzahl der Datensätze:" @@ -3579,8 +3599,8 @@ msgstr "Anzahl der Datensätze:" msgid "Sort by key" msgstr "Nach Schlüssel sortieren" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3602,10 +3622,10 @@ msgstr "Nach Schlüssel sortieren" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Optionen" @@ -3645,31 +3665,31 @@ msgstr "Bekannter Text" msgid "Well Known Binary" msgstr "Bekanntes Binary" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Der Datensatz wurde gelöscht." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Beenden" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch " "[doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3678,75 +3698,75 @@ msgstr "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Zeige Datensätze %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d insgesamt, %2$d in Abfragen" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d insgesamt" # (s is the abbreviation of "Sekunde", sec is it not (according to # International System of Units), so we wrote the complete one.) -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Die Abfrage dauerte %01.4f Sekunden." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "markierte:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Alle auswählen" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "In Zwischenablage kopieren" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualisiere GIS Daten" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Der Verweis wurde nicht gefunden!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "keine" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Nach Kana konvertieren" @@ -3754,25 +3774,25 @@ msgstr "Nach Kana konvertieren" msgid "Too many error messages, some are not displayed." msgstr "Zu viele Fehlermeldungen, einige werden nicht angezeigt." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Bericht" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Bericht nächstes Mal automatisch senden" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Bei der Datei handelt es sich um keine hochgeladene Datei." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Die hochgeladene Datei ist größer als der in der php.ini in " "upload_max_filesize angegebene Wert." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3780,49 +3800,49 @@ msgstr "" "Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML " "Formulars angegebene Wert." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Die Datei wurde nur teilweise übertragen." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Datei konnte gespeichert werden." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Hochladen der Datei wurde durch die Erweiterung gestoppt." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Unbekannter Fehler beim hochladen der Datei." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Die Datei ist eine symbolische Verknüpfung" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Datei konnte nicht gelesen werden!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fehler beim Verschieben der hochgeladenen Datei, siehe [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Fehler beim Verschieben der hochgeladenen Datei." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Die hochgeladene Datei kann nicht gelesen werden." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3832,28 +3852,28 @@ msgstr "" "Verfahren komprimiert wurde (%s). Entweder ist das Verfahren nicht " "implementiert oder in Ihrer Konfiguration deaktiviert." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Momentan wit Git-Revision %1$s aus dem %2$s-Zweig ausgeführt." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Versionsinformationen fehlt!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Neues phpMyAdmin-Fenster" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Druckansicht" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Klicken Sie auf die Leiste, um zum Anfang der Seite zu scrollen" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript muss ab hier aktiviert sein!" @@ -3862,20 +3882,20 @@ msgid "No index defined!" msgstr "Kein Index definiert!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indizes" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3885,59 +3905,59 @@ msgstr "Indizes" msgid "Action" msgstr "Aktion" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Schlüsselname" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unique" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalität" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Der Primärschlüssel wurde gelöscht." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Index %s wurde entfernt." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Löschen" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3946,19 +3966,19 @@ msgstr "" "Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte " "möglicherweise entfernt werden." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Seite:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignoriere nicht unterstützten Sprach-Code." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Sprache" @@ -3984,11 +4004,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4007,14 +4027,15 @@ msgid "View" msgstr "Ansicht" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4023,8 +4044,8 @@ msgid "Table" msgstr "Tabelle" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4032,45 +4053,45 @@ msgstr "Tabelle" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Suche" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Einfügen" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Rechte" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operationen" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Nachverfolgung" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4086,16 +4107,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Abfrage" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routinen" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4103,20 +4124,20 @@ msgstr "Routinen" msgid "Events" msgstr "Ereignisse" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Zentrale Spalten" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Datenbanken" @@ -4125,53 +4146,53 @@ msgid "User accounts" msgstr "Benutzerkonten" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikation" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variablen" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Formate" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Erweiterungen" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d Datensatz betroffen." msgstr[1] "%1$d Datensätze betroffen." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d Datensatz gelöscht." msgstr[1] "%1$d Datensätze gelöscht." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4219,27 +4240,27 @@ msgstr "Favoriten-Tabellen" msgid "Favorites" msgstr "Favoriten" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Bitte geben Sie einen Namen für diese Lesezeichen-Suchanfrage an." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Fehlende Information, um die Suchanfrage als Lesezeichen zu speichern." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Ein Eintrag mit diesem Namen existiert bereits." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Fehlende Information, um die Suchanfrage zu löschen." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Fehlende Information, um die Suchanfrage zu laden." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Fehler beim Laden der Suchanfrage." @@ -4301,7 +4322,7 @@ msgstr "Zeige alle offenen Tabellen" msgid "Show slave hosts" msgstr "Zeige alle Slave-Hosts" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Zeige den Master-Status" @@ -4355,70 +4376,70 @@ msgid_plural "%d minutes" msgstr[0] "%d Minute" msgstr[1] "%d Minuten" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s ist die Standard Storage-Engine dieses MySQL-Servers." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ist auf diesem MySQL-Server verfügbar." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s wurde auf diesem MySQL-Server deaktiviert." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Dieser MySQL-Server unterstützt %s nicht." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Unbekannter Tabellenstatus:" # source != search / Source != Suche -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Quell-Datenbank `%s` nicht gefunden!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Ziel-Datenbank `%s` nicht gefunden!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Ungültige Datenbank:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Ungültiger Tabellenname:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fehler beim Umbenennen von Tabelle %1$s nach %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelle %1$s wurde in %2$s umbenannt." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Konnte die Darstellungs-Einstellungen der Tabelle nicht speichern!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4427,7 +4448,7 @@ msgstr "" "Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4438,19 +4459,19 @@ msgstr "" "Änderungen werden nicht dauerhaft sein wenn Sie diese Seite aktualisieren. " "Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Der Name des Primärschlüssels muss \"PRIMARY\" lauten!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Kann Index nicht in PRIMARY umbenennen!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Keine Indizes definiert!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4783,7 +4804,7 @@ msgid "Date and time" msgstr "Datum und Uhrzeit" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Zeichenkette" @@ -4798,127 +4819,127 @@ msgstr "Räumlich" msgid "Max: %s%s" msgstr "Maximal: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statische Analyse:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d Fehler wurden während der Analyse gefunden." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Explain auf %s analysieren" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "ohne PHP-Code" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "SQL-Befehl ausführen" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "PHP-Code erzeugen" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Messen" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Inline bearbeiten" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Fehlende(r) Parameter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Zur Datenbank \"%s\" springen." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Durchsuchen Sie Ihren Computer:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Es sind keine Dateien zum Hochladen vorhanden!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Leeren" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Ausführen" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Benutzer" @@ -4932,7 +4953,7 @@ msgstr "pro Minute" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "pro Stunde" @@ -4940,12 +4961,12 @@ msgstr "pro Stunde" msgid "per day" msgstr "pro Tag" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Suche:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4953,7 +4974,7 @@ msgstr "Suche:" msgid "Description" msgstr "Beschreibung" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Diesen Wert verwenden" @@ -4996,22 +5017,22 @@ msgstr "JA" msgid "NO" msgstr "NEIN" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Name" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Länge/Werte" @@ -5020,7 +5041,7 @@ msgstr "Länge/Werte" msgid "Attribute" msgstr "Attribut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5037,11 +5058,11 @@ msgstr "Spalte hinzufügen" msgid "Select a column." msgstr "Eine Spalte auswählen." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Neue Spalte hinzufügen" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5049,7 +5070,7 @@ msgstr "Neue Spalte hinzufügen" msgid "Attributes" msgstr "Attribute" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5059,28 +5080,28 @@ msgstr "" "aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen " "und Datenverlust kommen kann!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Ungültige Server-Nummer: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5092,20 +5113,20 @@ msgstr "" "[%3$d]['SessionTimeZone'][/em]. phpMyAdmin verwendet aktuell die Standard-" "Zeitzone des Datenbankservers." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer aktualisieren." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Fehler: Token stimmen nicht überein" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS Überschreibversuch" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "Mögliche Ausnutzung" @@ -5716,7 +5737,7 @@ msgid "Compress on the fly" msgstr "On the fly komprimieren" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfigurationsdatei" @@ -5826,12 +5847,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximale Ausführungszeit" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "%s-Befehl verwenden" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Senden" @@ -5841,7 +5862,7 @@ msgstr "Zeichensatz der Datei" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -5966,7 +5987,7 @@ msgid "Save on server" msgstr "Auf Server speichern" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Bestehende Datei(en) überschreiben" @@ -5979,7 +6000,7 @@ msgid "Remember file name template" msgstr "Schablone für Dateinamen merken" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" @@ -5988,7 +6009,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Tabellen- und Feldnamen mit Backticks umschließen" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" @@ -6019,7 +6040,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s hinzufügen" @@ -6192,7 +6213,7 @@ msgid "Customize the navigation tree." msgstr "Navigationsbaum anpassen." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Server" @@ -7107,7 +7128,7 @@ msgstr "HTTP Bereich" msgid "Authentication method to use." msgstr "Zu benutzende Authentifikations-Methode." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Authentifikationstyp" @@ -7849,7 +7870,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Aktiviere den Reiter \"Entwickler\" in den Einstellungen" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Auf neue Version prüfen" @@ -7857,10 +7878,10 @@ msgstr "Auf neue Version prüfen" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versionsüberprüfung" @@ -8011,24 +8032,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Favoriten-Liste ist voll!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Die Tabelle %s wurde geleert." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Die Ansicht %s wurde gelöscht." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Die Tabelle %s wurde gelöscht." @@ -8042,12 +8063,12 @@ msgid "Position" msgstr "Position" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Ereignistyp" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server-ID" @@ -8056,7 +8077,7 @@ msgid "Original position" msgstr "Ursprungsposition" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Information" @@ -8070,42 +8091,42 @@ msgstr "Zeige die SQL-Abfragen verkürzt an" msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Keine Datenbanken" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d Datenbank wurde erfolgreich gelöscht." msgstr[1] "%1$d Datenbanken wurden erfolgreich gelöscht." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Datensätze" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Insgesamt" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Überhang" @@ -8132,35 +8153,35 @@ msgstr "" msgid "Enable statistics" msgstr "Datenbankstatistiken aktivieren" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Nicht genügend Berechtigungen um Servervariablen und Einstellungen " "anzuzeigen. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Setzen der Variable fehlgeschlagen" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Zum Erhalten von Daten ist keine SQL-Abfrage gesetzt." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" "Die Tabelle enthält keine numerischen Spalten zum Anzeigen eines Diagramms." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Keine Daten zum Anzeigen" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Die Tabelle %1$s wurde erfolgreich geändert." @@ -8203,7 +8224,7 @@ msgstr "Die Spalten wurden erfolgreich verschoben." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Abfrage-Fehler" @@ -8222,12 +8243,12 @@ msgstr "Bearbeiten" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8248,13 +8269,13 @@ msgstr "Volltext" msgid "Distinct values" msgstr "Unterschiedliche Werte" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Die Erweiterung %s fehlt. Bitte die PHP-Konfiguration überprüfen." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Keine Änderung" @@ -8278,31 +8299,35 @@ msgstr "" "phpMyAdmin-Installation!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Kein Passwort" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Passwort:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Wiederholen:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Passwortverschlüsselung:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8312,83 +8337,83 @@ msgstr "" "einer unverschlüsselte Verbindung, die das Kennwort mit RSA " "verschlüsselt '; beim Verbinden mit dem Server." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Datenbanken des aktuell ausgewählten Servers exportieren" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportiere Tabellen der Datenbank \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportiere Datensätze aus Tabelle \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Exportvorlagen:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Neue Vorlage:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Vorlagenname" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Anlegen" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Existierende Vorlagen:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Vorlage:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Aktualisieren" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Eine Vorlage auswählen" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Exportmethode:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Schnell – nur notwendige Optionen anzeigen" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Angepasst – zeige alle möglichen Optionen an" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Datenbanken:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabellen:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Formatspezifische Optionen:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8396,52 +8421,52 @@ msgstr "" "Scrollen Sie zu den Optionen für das ausgewählte Format. Ignorieren Sie die " "übrigen Formate." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Zeichensatz Umwandlung:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Datensätze:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Einige Datensätze exportieren" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Anfangsdatensatz:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Alle Datensätze exportieren" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Ausgabe:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Speichere auf dem Server im Verzeichnis %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Vorlage für den Dateinamen:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ wird durch den Servernamen ersetzt" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ wird durch den Datenbanknamen ersetzt" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8453,100 +8478,100 @@ msgstr "" "durchgeführt: %3$s. Der übrige Text bleibt unberührt. Für weitere " "Informationen lesen Sie die %4$sFAQ%5$s." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "Diese Einstellungen auch für zukünftige Exporte verwenden" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Zeichencodierung der Datei:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Komprimierung:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "Zip-komprimiert" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "GZip-komprimiert" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Ausgabe als Text anzeigen" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exportiere Datenbanken als separate Dateien" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exportiere Tabellen als separate Dateien" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Exportierte Datenbanken/Tabellen/Spalten umbenennen" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Speichere Ausgabe in Datei" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Überspringe Tabellen grösser als" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Datenbankauswahl" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Tabellenauswahl" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Neuer Datenbankname" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Name der neuen Tabelle" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Alter Spaltennamen" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Neuer Spaltennamen" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Export-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre " "Installation!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s aus dem Zweig %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "kein Zweig" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git-Revision:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "eingetragen am %1$s von %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "geschrieben am %1$s von %2$s" @@ -9007,13 +9032,13 @@ msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9021,81 +9046,81 @@ msgstr "" "Die Datei %s besteht bereits auf dem Server. Bitte ändern Sie den Dateinamen " "oder wählen Sie die Überschreibungs-Option." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern." # Schema is not the right word for it, because a dump contains also data, and # NOT just the scheme. -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Auflistung wurde in Datei %s gespeichert." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK aufgetreten.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " "können Sie:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" "Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Gehe zur Datenbank: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Einstellung für %s bearbeiten" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Gehe zur Tabelle: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktur von %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Gehe zur Ansicht: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Nur UPDATE- und DELETE-Abfragen mit einer Tabelle können simuliert werden." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9109,86 +9134,87 @@ msgid "Create an index on  %s columns" msgstr "Index über %s Spalten anlegen" # Hide heist im deutschen in der EDV ausblenden -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Verstecken" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funktion" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Wegen seiner Länge ist dieses
Feld vielleicht nicht editierbar." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Oder" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "Upload-Verzeichnis auf dem Webserver:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Bearbeiten/Einfügen" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "und dann" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "zurück" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Mittels Tabulator-Taste von Feld zu Feld springen, oder mit Strg+Pfeiltasten " "beliebig bewegen." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9199,31 +9225,31 @@ msgstr "" msgid "Value" msgstr "Wert" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Erfolg!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Nur Struktur" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktur und Daten" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Nur Daten" @@ -9232,14 +9258,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Wert für AUTO INCREMENT hinzufügen" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Constraints hinzufügen" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Rechte anpassen" @@ -9284,8 +9310,8 @@ msgstr "Prozeduren:" msgid "Views:" msgstr "Ansichten:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Zeige" @@ -9329,17 +9355,17 @@ msgid_plural "%s results found" msgstr[0] "%s Ergebnis gefunden" msgstr[1] "%s Ergebnisse gefunden" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Hier schreiben um zu filtern, Enter um alles zu suchen" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Schnellfilter löschen" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Alles auf-/zuklappen" @@ -9354,7 +9380,7 @@ msgstr "Ungültiger Klassenname \"%1$s\", verwende standardmäßig \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Fehler beim Laden der Klasse „%1$s“" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Auf-/Zuklappen" @@ -9373,7 +9399,7 @@ msgstr "Neu" msgid "Database operations" msgstr "Datenbank-Operationen" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Ausgeblendete Elemente anzeigen" @@ -9478,11 +9504,11 @@ msgstr "" "Wählen Sie eine Spalte, die in mehrere aufgeteilt werden kann (Wählen Sie " "'keine solche Spalte', geht es zum nächsten Schritt weiter)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Wählen Sie eine…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Keine solche Spalte" @@ -9764,8 +9790,8 @@ msgid "Rename database to" msgstr "Datenbank umbenennen in" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9811,178 +9837,178 @@ msgstr "(einmalig)" msgid "Move table to (database.table)" msgstr "Verschiebe Tabelle nach (Datenbank.Tabellenname)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Tabelle umbenennen in" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabellen-Kommentar" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabellenoptionen" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Tabellenformat" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Alle Spaltenkollationen ändern" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Zur kopierten Tabelle wechseln" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Hilfsmittel" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Überprüfe Tabelle" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Prüfsummentabelle" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Tabelle defragmentieren" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" "Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Leeren des Tabellenzwischenspeichers (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Repariere Tabelle" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Daten oder Tabelle löschen" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Tabelle leeren (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Tabelle löschen (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analysieren" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Überprüfen" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimieren" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Neuaufbauen" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Reparieren" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Leeren" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Zusammenführen" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Partitions-Hilfsmittel" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Entferne die Partitionierung" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen verschoben werden!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen kopiert werden!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabelle %s wurde nach %s verschoben. Die Privilegien wurden angepasst." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabelle %s wurde nach %s kopiert. Die Privilegien wurden angepasst." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelle %s wurde nach %s verschoben." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelle %s wurde nach %s kopiert." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Der Tabellenname ist leer!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Für dieses Format sind keine Optionen vorhanden" @@ -10012,20 +10038,20 @@ msgstr "mehrfarbig" msgid "Only show keys" msgstr "Nur Schlüssel anzeigen" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" "Die Verbindung konnte aufgrund von ungültigen Einstellungen nicht " "hergestellt werden." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Willkommen bei %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10034,7 +10060,7 @@ msgstr "" "Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können " "das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10047,7 +10073,7 @@ msgstr "" "vergewissern, dass diese den Informationen, die Sie vom Administrator " "erhalten haben, entsprechen." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Versuche einen neuen Verbindungsaufbau" @@ -10074,15 +10100,15 @@ msgstr "Benutzername:" msgid "Server Choice:" msgstr "Server auswählen:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Das eingegebene Captcha ist falsch, bitte erneut versuchen!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Bitte korrektes Captcha eingeben!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Sie sind nicht berechtigt, sich an diesem MySQL-Server anzumelden!" @@ -10143,7 +10169,7 @@ msgstr "Datenexport-Optionen" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Daten für Tabelle" @@ -10152,7 +10178,7 @@ msgstr "Daten für Tabelle" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Ereignis" @@ -10160,8 +10186,8 @@ msgstr "Ereignis" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definition" @@ -10248,7 +10274,7 @@ msgstr "Spaltennamen in die erste Zeile setzen:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -10788,7 +10814,7 @@ msgstr "Inhalt" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11181,11 +11207,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "keine Beschreibung" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11195,7 +11221,7 @@ msgstr "" "anzulegen. Sie können zum „Operationen“-Tab einer beliebigen Datenbank " "gehen, um in dieser den phpMyAdmin-Konfigurationsspeicher einzurichten." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11204,7 +11230,7 @@ msgstr "" "Eine Datenbank mit Namen „phpmyadmin“ %sanlegen%s und dort die phpMyAdmin-" "Konfigurationsspeicher-Tabellen einrichten." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11212,34 +11238,34 @@ msgstr "" "%sErzeuge%s die PhpMyAdmin-Konfigurationsspeicherung in der aktuellen " "Datenbank." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen %sanlegen%s." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Master Replikation" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Dieser Server ist als Master in einem Replikations-Prozess konfiguriert." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Zeige verbundene Slaves" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Benutzer für den Replication-Slave hinzufügen" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Master-Konfiguration" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11253,19 +11279,19 @@ msgstr "" "sollen), oder Sie ignorieren standardmäßig alle Datenbanken und erlauben die " "Replikation nur für bestimmte Datenbanken. Bitte den Modus wählen:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Repliziere alle Datenbanken bis auf:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Repliziere nur:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Bitte Datenbanken auswählen:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11274,7 +11300,7 @@ msgstr "" "hinzufügen. Danach den MySQL-Server neu starten." # translation from go to "OK" as defined in po file -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11284,71 +11310,71 @@ msgstr "" "Daraufhin sollten Sie eine Meldung sehen, dass dieser Server als Master " "konfiguriert ist." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slave Replikation" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Hauptverbindung:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread läuft nicht!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread läuft nicht!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Dieser Server ist als Slave in einem Replikations-Prozess konfiguriert. " "Möchten Sie:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Die Slave Statustabelle sehen" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kontrol-Slave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Alles starten" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Alles stoppen" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Slave zurücksetzen" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Nur SQL-Thread starten" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Nur SQL-Thread stoppen" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Nur Ein-/Ausgabethread starten" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Nur Ein-/Ausgabethread stoppen" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Master-Server wechseln oder neu konfigurieren" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11357,26 +11383,26 @@ msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " "Möchten Sie ihn konfigurieren?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Fehlerbehandlung:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Überspringen von Fehlern kann zu Synchronisationsverlust zwischen Master und " "Slave führen!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Überspringe aktuellen Fehler" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Überspringe die nächsten %s Fehler." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11385,11 +11411,11 @@ msgstr "" "Dieser Server ist nicht als Master in einem Replikations-Prozess " "konfiguriert. Möchten Sie ihn konfigurieren?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slave-Konfiguration" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11398,53 +11424,53 @@ msgstr "" "sicherstellen bzw., falls nicht eindeutig, folgende Zeile im Abschnitt " "[mysqld] einfügen:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Benutzername:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Benutzername" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Passwort" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Master-Status" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slave-Status" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11452,39 +11478,39 @@ msgstr "" "Nur Slaves, die mit der Option --report-host=host_name gestartet wurden, " "sind in dieser Liste sichtbar." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Jeder Host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Dieser Host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Jeder Benutzer" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Textfeld verwenden:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11492,77 +11518,77 @@ msgstr "" "Wenn die Host-Tabelle aktiv ist, wird dieses Feld ignoriert und stattdessen " "die Werte aus der Host-Tabelle verwendet." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Wiederholen" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Passwort generieren:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replikation erfolgreich gestartet." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Fehler beim Starten der Replikation." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replikation erfolgreich gestoppt." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Fehler beim Stoppen der Replikation." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replikation erfolgreich zurückgesetzt." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Fehler beim Zurücksetzen der Replikation." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Erfolg." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Fehler." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Unbekannter Fehler" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Verbindung zu Master %s fehlgeschlagen." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Log-Position des Masters nicht lesbar. Mögliches Rechteproblem auf dem " "Master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Kann Master nicht wechseln!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Master-Server wurde erfolgreich auf %s geändert." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11583,7 +11609,7 @@ msgstr "Ereignis %1$s wurde geändert." msgid "Event %1$s has been created." msgstr "Ereignis %1$s wurde erzeugt." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11594,75 +11620,75 @@ msgstr "" msgid "Edit event" msgstr "Event bearbeiten" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Details" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Ereignis-Name" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Wechseln zu %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Ausführen um" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Abfrage ausführen" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Ende" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Nach Abschluss erhalten" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Ersteller" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Sie müssen einen Ereignis-Namen angeben!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Sie müssen einen gültigen Intervall für dieses Ereignis angeben." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Sie müssen eine gültige Ausführungszeit für dieses Ereignis angeben." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Sie müssen einen gültigen Typ für dieses Event angeben." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Sie müssen die Definition des Ereignisses angeben." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Fehler beim Bearbeiten der Anfrage:" @@ -11683,7 +11709,7 @@ msgstr "Ereignis-Planer-Statistiken" msgid "The backed up query was:" msgstr "Die gesicherte Abfrage war:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Rückgabe-Wert" @@ -11700,72 +11726,72 @@ msgstr "" "Bitte verwenden Sie die neuere 'mysqli'-Erweiterung, um Probleme zu " "vermeiden." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Bearbeite Prozedur" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ungültiger Prozeduren-Typ: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Die Prozedur %1$s wurde erstellt." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Das wiederherstellen der gelöschten Prozedur schlug fehl." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Prozedur %1$s wurde geändert. Die Privilegien wurden angepasst." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Prozedur %1$s wurde geändert." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Prozeduren-Name" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parameter" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Richtung" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Parameter hinzufügen" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Letzten Parameter entfernen" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Rückgabe Länge/Werte" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Rückgabe der Optionen" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Ist plangesteuert" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11773,25 +11799,25 @@ msgstr "" "Sie haben nicht genug Rechte um fortzufahren; Bitte wenden Sie sich für mehr " "Details an die Dokumentation" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Sicherheits-Typ" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL-Datenzugriff" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Sie müssen einen Prozeduren-Namen angeben!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ungültige Richtung \"%s\" für Parameter angegeben." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11799,26 +11825,26 @@ msgstr "" "Sie müssen Länge/Werte Angaben für Prozeduren Parameter des Typs ENUM, SET, " "VARCHAR und VARBINARY angeben." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Sie müssen die Definition der Prozedur angeben." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Ergebnisse der ausgeführten Prozedur %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -11827,13 +11853,13 @@ msgstr[0] "" msgstr[1] "" "%d Datensätze betroffen aufgrund des letzten Befehls innerhalb der Prozedur." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Führe Prozedur aus" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Prozeduren-Parameter" @@ -11855,33 +11881,33 @@ msgstr "Trigger %1$s wurde erzeugt." msgid "Edit trigger" msgstr "Trigger bearbeiten" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Trigger-Name" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Zeit" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Sie müssen einen Trigger-Namen eingeben!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Sie müssen eine gültige Zeit für den Trigger eingeben!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" "Sie müssen einen Namen und einen Typ für jeden Trigger-Parameter eingeben!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Sie müssen einen gültigen Tabellen-Namen angeben!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Sie müssen die Definition des Triggers angeben." @@ -12008,93 +12034,93 @@ msgstr "Zeichensätze und Kollationen" msgid "Databases statistics" msgstr "Statistik über alle Datenbanken" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Keine Rechte." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12104,133 +12130,107 @@ msgstr "" "bereits erreicht ist; Wird für viele administrative Operationen, wie das " "Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " "befinden." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Erlaubt das Erzeugen und Löschen Triggern." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von gespeicherten Routinen." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von gespeicherten Routinen." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Kein(e)" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Benutzergruppe" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Erfordert keine SSL-verschlüsselte Verbindung." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Benötigt SSL-verschlüsselte Verbindungen." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Erfordert ein gültiges X509-Zertifikat." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" "Erfordert, dass eine bestimmte Verschlüsselungsmethode für zum Verbinden " "verwendet wird." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Setzt voraus, dass ein gültiges X509-Zertifikat, ausgestellt durch diese " "Zertifizierungsinstanz, präsentiert wird." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Setzt voraus, dass ein gültiges X509-Zertifikat mit diesem Betreff " "präsentiert wird." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ressourcenbeschränkungen" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Der Wert 0 (null) entfernt die Beschränkung." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12238,119 +12238,114 @@ msgstr "" "Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an " "allen Datenbanken und Tabellen vornehmen darf." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " "aufbauen darf." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Erlaubt das Verändern und Löschen dieser gespeicherten Routine." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Erlaubt das Ausführen dieser gespeicherten Routine." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administration" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globale Rechte" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " "Benutzerprofile neu laden zu müssen." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Native MySQL-Authentifizierung" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256-Passwort-Authentifizierung" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Native MySQL-Authentifizierung" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Anmeldeinformation" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12358,226 +12353,212 @@ msgstr "" "Es besteht schon ein Konto mit dem gleichen Benutzernamen, aber eventuell " "anderem Hostnamen." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Hostname:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Hostname" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Authentifizierungs Plugin" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Passwort­verschlüsselungs­methode" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Sie haben die Rechte für %s widerrufen." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Benutzerkonto hinzufügen" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Datenbank für Benutzerkonto" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benutzernamen beginnen " "(username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Gewähre alle Rechte auf die Datenbank %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Benutzer mit Zugriff auf \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Benutzer wurde hinzugefügt." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Nicht genügend Berechtigungen um Benutzer anzuzeigen." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Jeder" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "datenbankspezifisch" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "Platzhalter" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "tabellenspezifisch" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Rechte ändern" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Entfernen" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Benutzergruppe bearbeiten" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… behalte den alten bei." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… lösche den alten von den Benutzertabellen." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… entziehe dem alten alle Rechte und lösche ihn anschließend." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… lösche den alten und lade anschließend die Benutzertabellen neu." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Anmeldeinformation ändern/Benutzer kopieren" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Erstelle einen neuen Benutzerkonto mit identischen Rechten und …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Routinenspezifische Rechte" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Die ausgewählten Benutzerkonten löschen" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Benutzergruppe" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Den Benutzern alle Rechte entziehen und sie anschließend aus den " -"Benutzertabellen löschen." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Die gleichnamigen Datenbanken löschen." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Rechte für %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Benutzer" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Neu" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Rechte ändern:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Benutzerkonto" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12585,11 +12566,11 @@ msgstr "" "Hinweis: Sie versuchen, die Berechtigungen des Benutzers zu bearbeiten, mit " "dem Sie aktuell angemeldet sind." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Benutzerkontenübersicht" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12599,7 +12580,7 @@ msgstr "" "vorhanden. Dies wird Benutzer vom Verbinden abhalten, falls der Host-Teil " "ihres Kontos eine Verbindung von jedem Host (%) erlaubt." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12613,7 +12594,7 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " "Benutzerprofile neu laden%s bevor Sie fortfahren." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12627,11 +12608,11 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall müssen die Berechtigungen neu " "geladen werden, doch im Moment haben Sie keine RELOAD-Berechtigung." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." @@ -12944,12 +12925,12 @@ msgstr "Befehl" msgid "Progress" msgstr "Fortschritt" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filter" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Zeige nur aktive" @@ -12970,12 +12951,12 @@ msgstr "pro Minute:" msgid "per second:" msgstr "pro Sekunde:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Angaben" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12999,7 +12980,7 @@ msgstr "Zeige unformatierte Werte" msgid "Related links:" msgstr "Verwandte Links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13007,12 +12988,12 @@ msgstr "" "Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " "Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Die maximale Nummer an Fehlversuchen um zu einem MySQL-Server zu verbinden." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13023,20 +13004,20 @@ msgstr "" "und eine temporäre Datei verwendet haben um die Statements der Transaktion " "zu speichern." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Zwischenspeicher " "verwendet haben." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Die Anzahl an Verbindungsversuchen (ob erfolgreich odernicht) zum MySQL-" "Server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13048,11 +13029,11 @@ msgstr "" "Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " "Tabellen im Speicher erzeugt werden statt auf der Festplatte." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13060,7 +13041,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13068,7 +13049,7 @@ msgstr "" "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei " "denen ein Fehler auftrat (z. B. duplicate key)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13076,23 +13057,23 @@ msgstr "" "Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " "Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13102,7 +13083,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird \"discovery\" genannt." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13113,7 +13094,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13122,7 +13103,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13133,7 +13114,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13142,7 +13123,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13155,7 +13136,7 @@ msgstr "" "haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " "zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13168,35 +13149,35 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Anzahl der Seiten, die Daten enthalten (ob \"dirty\" oder nicht)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Anzahl der als \"dirty\" markierten Seiten." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13206,7 +13187,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13218,11 +13199,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13230,7 +13211,7 @@ msgstr "" "Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " "einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13238,11 +13219,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13250,7 +13231,7 @@ msgstr "" "Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " "konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13265,53 +13246,53 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Anzahl der ausgeführten doublewrite Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Anzahl der ausgeführten doublewrite Zugriffe." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13319,35 +13300,35 @@ msgstr "" "Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " "war und deshalb gewartet wurde das er geleert wird." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Anstehende fsyncs für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13356,55 +13337,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in " "Millisekunden." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13413,7 +13394,7 @@ msgstr "" "noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt " "als Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13422,7 +13403,7 @@ msgstr "" "Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher " "zu bestimmen." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13431,18 +13412,18 @@ msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-" "Zwischenspeicher." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" "Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Zwischenspeicher zu " "lesen." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13453,7 +13434,7 @@ msgstr "" "Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests " "berechnet werden." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13461,25 +13442,25 @@ msgstr "" "Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen " "physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Zwischenspeicher zu " "schreiben." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" "Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Prozentsatz der physikalischen Schreib-Operationen im Vergleich zu Schreib-" "Anfragen (berechneter Wert)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13489,7 +13470,7 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13497,13 +13478,13 @@ msgstr "" "Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " "benutzt wurden." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13511,20 +13492,20 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13534,19 +13515,19 @@ msgstr "" "Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " "CACHE - Abfrage beseitigt werden können." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Zwischenspeicher." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13560,7 +13541,7 @@ msgstr "" "stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher " "lag." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13568,19 +13549,19 @@ msgstr "" "Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht " "möglich, oder aufgrund der query_cache_type Einstellung)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Zwischenspeicher." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13588,13 +13569,13 @@ msgstr "" "Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " "fand." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13603,7 +13584,7 @@ msgstr "" "Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13611,16 +13592,16 @@ msgstr "" "Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " "(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13628,13 +13609,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " "verbunden ist." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13642,12 +13623,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13657,25 +13638,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Datensätze." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" "Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " "gescannt wurde." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13687,7 +13668,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre " "Tabelle(n) zerteilen oder Replikation benutzen." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13697,11 +13678,11 @@ msgstr "" "Zugriffsrate kann mit Threads_created/Connections berechnet werden. Wenn " "dieser Wert rot ist, sollte der thread_cache_size erhöht werden." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13713,11 +13694,11 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." @@ -13747,37 +13728,37 @@ msgstr "Tabs in der Datenbank-Ansicht" msgid "Table level tabs" msgstr "Tabs in der Tabellen-Ansicht" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Benutzer anzeigen" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Benutzergruppe hinzufügen" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Benutzergruppe bearbeiten: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Menü-Zuweisungen der Benutzergruppe" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Gruppenname:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Tabs in der Server-Ansicht" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Tabs in der Datenbank-Ansicht" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tabs in der Tabellen-Ansicht" @@ -13878,7 +13859,7 @@ msgstr "SQL-Befehl(e) in Datenbank %s ausführen" msgid "Run SQL query/queries on table %s" msgstr "SQL-Befehl(e) in Tabelle %s ausführen" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Werte löschen" @@ -13963,112 +13944,112 @@ msgstr "Jetzt deaktivieren" msgid "Version" msgstr "Version" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Erstellt" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Aktualisiert" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Version löschen" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Verfolgungs-Bericht" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "nicht aktiv" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Befehle verfolgen" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Lösche die Verlaufsdaten des Datensatzes" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Keine Daten" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zeige %1$s mit Datum von %2$s bis %3$s und Benutzer %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL Dump (Datei Download)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL Dump" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL Ausführung" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Export als %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "DML Befehl" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "DDL Befehl" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Benutzername" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s Schnappschuss (SQL code)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "kein(e)" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Verfolgungsdatendefinition erfolgreich gelöscht" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Verfolgungsdatenmanipulation erfolgreich gelöscht" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14077,62 +14058,62 @@ msgstr "" "Datenbank realisieren. Bitte stellen Sie sicher, dass Sie die dafür " "benötigten Rechte besitzen." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" "Kommentieren Sie diese beiden Zeilen aus, wenn Sie diese nicht benötigen." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL Befehle exportiert." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Verlaufs-Report für Tabelle %s" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s aktiviert." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s deaktiviert." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s von %2$s wurde gelöscht." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s wurde erstellt, Tracking von %2$s ist aktiviert." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tabelle verfolgen" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Verfolgte Tabellen" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Letzte Version" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Tracking löschen" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versionen" @@ -14140,7 +14121,7 @@ msgstr "Versionen" msgid "Manage your settings" msgstr "Einstellungen verwalten" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Die Konfiguration wurde gespeichert." @@ -14166,7 +14147,7 @@ msgstr "Fehler im ZIP-Archiv:" msgid "No files found inside ZIP archive!" msgstr "Keine Dateien im ZIP-Archiv gefunden!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Schwerer Fehler: Auf die Navigation kann nur mit AJAX zugegriffen werden" @@ -14177,55 +14158,55 @@ msgstr "" "Einstellungen können nicht gespeichert werden, ausgefülltes Formular enthält " "Fehler!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin-Konfigurationsschnipsel" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Fügen Sie dies in Ihre config.inc.php ein" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Fehler beim Importieren der Konfiguration" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguration enthält inkorrekte Daten für einige Felder." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Sollen die restlichen Einstellungen importiert werden?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Gespeichert am: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Import aus Datei" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Import aus Browserspeicher" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Einstellungen werden aus Ihrem lokalen Browserspeicher importiert." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Sie haben keine gespeicherten Einstellungen!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Dieses Feature wird von ihrem Webbrowser nicht unterstützt" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Mit aktueller Konfiguration zusammenführen" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14234,23 +14215,23 @@ msgstr "" "Weitere Einstellungen können durch das Anpassen der Datei config.inc.php " "verändert werden, z.B. durch die Verwendung von %sSetup Script%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Als PHP-Datei speichern" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Im Browserspeicher speichern" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Einstellungen werden in Ihrem lokalen Browserspeicher gespeichert." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Vorhandene Einstellungen werden überschrieben!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Sie können alle Einstellungen auf die Standardwerte zurücksetzen." @@ -14258,12 +14239,12 @@ msgstr "Sie können alle Einstellungen auf die Standardwerte zurücksetzen." msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Keine Rechte" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14271,20 +14252,20 @@ msgstr "" "Nutzername und Host-Name haben sich nicht geändert. Wenn Sie nur das " "Passwort ändern wollen, sollten Sie den “Passwort ändern”-Tab verwenden." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Nicht genügend Berechtigungen um Serverstatus anzuzeigen." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Nicht genügend Berechtigungen um den Ratgeber anzuzeigen." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Der Thread %s wurde erfolgreich abgebrochen." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14292,15 +14273,15 @@ msgstr "" "phpMyAdmin konnte den Thread %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Nicht genügend Berechtigungen um Abfragestatistiken anzuzeigen." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Nicht genügend Berechtigungen um Statusvariablen anzuzeigen." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Download" @@ -14308,11 +14289,11 @@ msgstr "Download" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "Falsches formset, Feld $formsets in setup/frames/form.inc.php prüfen!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Laden oder Speichern der Konfiguration fehlgeschlagen" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14323,7 +14304,7 @@ msgstr "" "[doc@setup_script]Dokumentation[/doc] beschrieben. Ansonsten können Sie die " "Konfiguration nur herunterladen bzw. anzeigen." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14331,24 +14312,27 @@ msgstr "" "Sie benutzen keine sichere Verbindung. Alle Daten (einschließlich sensitiver " "Information wie Passwörter) werden unverschlüsselt übertragen!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Falls Ihr Server HTTPS Anfragen akzeptiert, folgen Sie [a@%s]diesem Link[/a] " "um eine sichere Verbindung zu benutzen." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Unsichere Verbindung" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfiguration gespeichert." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14357,59 +14341,59 @@ msgstr "" "phpMyAdmin. Kopieren Sie die Datei ins Hauptverzeichnis und löschen Sie das " "config-Verzeichnis um phpMyAdmin zu verwenden." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Konfiguration nicht gespeichert!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Übersicht" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Ausgeblendete Nachrichten anzeigen (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Es sind keine Server konfiguriert" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Neuer Server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Voreingestellte Sprache" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "Der Benutzer soll entscheiden" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- kein -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Voreingestellter Server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Zeilen-Ende" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Anzeige" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Laden" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin-Homepage" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Spenden" @@ -14445,7 +14429,7 @@ msgstr "Fehler ignorieren" msgid "Show form" msgstr "Zeige Formular" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14453,15 +14437,15 @@ msgstr "" "Lesen der Versioninformationen fehlgeschlagen. Vielleicht sind Sie offline " "oder der Server antwortet nicht." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Ungültige Versionsinformation erhalten" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Versionsinformation nicht analysierbar" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14470,7 +14454,7 @@ msgstr "" "Sie benutzen die Git-Version, führen Sie [kbd]git pull[/kbd] aus :-)[br]Die " "neueste stabile Version ist %s, veröffentlicht am %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Keine neuere stabile Version verfügbar" @@ -14483,12 +14467,12 @@ msgstr "Fehlerhafte Daten" msgid "Wrong data or no validation for %s" msgstr "Falsche Daten oder keine Bestätigung für %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Datenbank '%s' existiert nicht." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Die Tabelle %s existiert bereits!" @@ -14501,29 +14485,29 @@ msgstr "Dump (Schema) der Tabelle anzeigen" msgid "Invalid table name" msgstr "Ungültiger Tabellenname" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Zeile: %1$s, Spalte: %2$s, Fehler: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Keine Reihe ausgewählt." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Rückverfolgung der Tabelle %s ist aktiviert." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Verlaufsversionen wurden erfolgreich gelöscht." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Keine Versionen ausgewählt." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL Befehle ausgeführt." @@ -14693,7 +14677,7 @@ msgid "List of available transformations and their options" msgstr "Verfügbare Umwandlungen und ihre Optionen" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Darstellungsumwandlung" @@ -14715,7 +14699,7 @@ msgstr "" "Backslash vor das Zeichen. (z.B.: '\\\\xyz' oder 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Eingabeumwandlung" @@ -15150,17 +15134,17 @@ msgid "Size" msgstr "Größe" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Erzeugt am" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Aktualisiert am" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Letzter Check am" @@ -15202,6 +15186,12 @@ msgstr "" "Der Browser hat eine phpMyAdmin Konfiguration für diese Domäne. Soll diese " "für die aktuelle Session geladen werden?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Tracking löschen" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Rechte zu folgender Datenbank(en) hinzufügen:" @@ -15220,10 +15210,45 @@ msgstr "Rechte zu folgender Routine hinzufügen:" msgid "Add privileges on the following table:" msgstr "Rechte zu folgender Tabelle hinzufügen:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Neu" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Kein(e)" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Die ausgewählten Benutzerkonten löschen" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Den Benutzern alle Rechte entziehen und sie anschließend aus den " +"Benutzertabellen löschen." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Die gleichnamigen Datenbanken löschen." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ressourcenbeschränkungen" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Der Wert 0 (null) entfernt die Beschränkung." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" @@ -15254,7 +15279,7 @@ msgstr "Erweiterung" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "deaktiviert" @@ -15410,7 +15435,7 @@ msgstr "Parser:" msgid "Comment:" msgstr "Kommentar:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Zur Umsortierung ziehen" @@ -15444,20 +15469,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Beschränkung für auswärtige Schlüssel" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Constraint hinzufügen" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Interne Beziehungen" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Interne Beziehung" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15465,7 +15490,7 @@ msgstr "" "Eine interne Beziehung ist nicht notwendig, wenn eine entsprechende " "Fremdschlüssel-Beziehung existiert." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Anzuzeigende Spalte auswählen:" @@ -15518,11 +15543,11 @@ msgstr "Ursprungstext" msgid "Replaced string" msgstr "ersetzter Text" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Ersetzen" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Zusätzliche Suchkriterien" @@ -15593,7 +15618,7 @@ msgid "at beginning of table" msgstr "am Tabellenanfang" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partitionen" @@ -15617,24 +15642,24 @@ msgstr "Datenlänge" msgid "Index length" msgstr "Indexlänge" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Partitioniere Tabelle" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Bearbeite die Partitionierung" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "View/Ansicht bearbeiten" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Speicherplatzverbrauch" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektiv" @@ -15659,31 +15684,31 @@ msgstr "Tabellenstruktur verbessern" msgid "Track view" msgstr "Verfolge Ansicht" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Datensatz-Statistiken" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statisch" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamisch" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partitioniert" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Zeilenlänge" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Zeilengröße" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Nächster Autoindex" @@ -15696,44 +15721,44 @@ msgstr "Spalte %s wurde gelöscht." msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Oberflächendesign" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Mehr Designs herunterladen!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Verfügbare MIME-Typen" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Verfügbare Umwandlungen" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Verfügbare Eingabeumwandlungen" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Beschreibung" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Führt Sie zur Zielsite." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sie haben nicht genug Rechte um fortzufahren!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Benutzer wurde geändert." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Das Kennwort ist zu lang!" @@ -15806,7 +15831,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15827,17 +15852,17 @@ msgid "Unrecognized data type." msgstr "Unerkannter Datentyp." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Ein Alias wurde erwartet." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Ein Alias wurde zuvor gefunden." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Unerwarteter Punkt." @@ -15890,24 +15915,24 @@ msgstr "Erwartete Whitespace vor dem Trennzeichen." msgid "Expected delimiter." msgstr "Erwartete Trennzeichen." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Schließendes Anführungszeichen %1$s wurde erzeugt." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Variablenname wurde erwartet." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Unerwarteter Statement-Anfang." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Unerkannte Statement-Typ." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Bisher wurde keine Transaktion gestartet." @@ -15924,10 +15949,16 @@ msgstr "Unerwartetes Zeichen." msgid "This type of clause was previously parsed." msgstr "Diese Art von Klausel wurde zuvor analysiert." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Unerkanntes Schlüsselwort." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Unerwarteter Statement-Anfang." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Der Name der Entität wurde erwartet." @@ -15968,7 +15999,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "strikter Fehler" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Ansichtsname kann nicht leer sein" @@ -17286,6 +17317,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Native MySQL-Authentifizierung" + #~ msgid "Try to connect without password." #~ msgstr "Versuche ohne Passwort zu verbinden." diff --git a/po/el.po b/po/el.po index 1718ca95c4..8875c73319 100644 --- a/po/el.po +++ b/po/el.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-10 17:31+0000\n" "Last-Translator: Παναγιώτης Παπάζογλου \n" -"Language-Team: Greek " -"\n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.9\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "Το αρχείο %s δεν είναι διαθέσιμο σε αυτό το σύστημα, για αυτό επισκεφτείτε " "το %s για περισσότερες πληροφορίες." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Η κεντρική λίστα στηλών για την τρέχουσα βάση δεδομένων είναι άδεια." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Πατήστε για ταξινόμηση." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Εμφάνιση εγγραφών %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Σχόλιο βάσης δεδομένων" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Σχόλια πίνακα:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Σχόλια πίνακα:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Σχόλια πίνακα:" msgid "Column" msgstr "Στήλη" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Στήλη" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Στήλη" msgid "Type" msgstr "Τύπος" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Τύπος" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Κενό" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Κενό" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Προεπιλογή" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Προεπιλογή" msgid "Links to" msgstr "Σύνδεση με" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Σύνδεση με" msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Πρωτεύον" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Πρωτεύον" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Πρωτεύον" msgid "No" msgstr "Όχι" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "Όχι" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Ναι" msgid "View dump (schema) of database" msgstr "Εμφάνιση σκαριφήματος (σχήματος) της βάσης δεδομένων" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Πίνακες" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,27 +283,27 @@ msgstr "Δομή" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Δεδομένα" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Επιλογή όλων" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Η βάση δεδομένων %1$s μετονομάστηκε σε %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Η βάση δεδομένων %1$s αντιγράφηκε στη %2$s." @@ -316,27 +316,27 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. %sΜάθετε γιατί%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Αλλαγή στον %sεικονικός μάστορας%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Άρνηση πρόσβασης!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Τα δεδομένα παρακολούθησης διαγράφτηκαν επιτυχώς." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -344,11 +344,11 @@ msgstr "" "Η έκδοση %1$s δημιουργήθηκε για επιλεγμένους πίνακες, η παρακολούθηση είναι " "ενεργοποιημένη για αυτούς." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Δεν επιλέχθηκαν πίνακες." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" @@ -390,131 +390,131 @@ msgstr "Μη έγκυρος τύπος!" msgid "Bad parameters!" msgstr "Μη έγκυρες παράμετροι!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Τιμή για τη στήλη «%s»" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Γεωμετρία %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Σημείο:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "Χ" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Υ" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Σημείο %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Προσθήκη σημείου" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Κείμενο γραμμής %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Εξωτερικός δακτύλιος:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Εσωτερικός δακτύλιος %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Προσθήκη κειμένου γραμμής" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Προσθήκη εσωτερικού δακτυλίου" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Πολύγωνο %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Προσθήκη πολυγώνου" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Προσθήκη γεωμετρίας" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Εκτέλεση" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Εξαγόμενο" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -522,19 +522,19 @@ msgstr "" "Επιλέξτε το «GeomFromText» από τη στήλη «Function» και επικολλήστε το " "παρακάτω κείμενο στο πεδίο «Value»." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Επιτεύχθηκε" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Απέτυχε" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Ελλιπείς παράμετροι" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -543,15 +543,15 @@ msgstr "" "Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " "%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:489 +#: import.php:486 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 " @@ -561,24 +561,24 @@ msgstr "" "μέγεθος του αρχείου υπερβαίνει το μέγιστο επιτρεπτό μέγεθος από τη ρύθμιση " "της ΡΗΡ. Δείτε τις [doc@faq1-16]ΣΑΕ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Ο σελιδοδείκτης %s έχει δημιουργηθεί." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερώτημα εκτελέστηκε." msgstr[1] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -587,7 +587,7 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε, οπότε αν θέλετε να τελειώσετε την " "εισαγωγή, %sεπανυποβάλτε το ίδιο αρχείο%s και η εισαγωγή θα συνεχίσει." -#: import.php:632 +#: import.php:629 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." @@ -596,7 +596,7 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." @@ -604,17 +604,17 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι msgid "Could not load the progress of the import." msgstr "Αδύνατη η φόρτωση της διαδικασίας της εισαγωγής." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Επιστροφή" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Διακομιστής Δοκιμών phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -625,107 +625,107 @@ msgstr "" "αλλά μην αλλάξετε τους χρήστες root, debian-sys-maint και pma. Περισσότερες " "πληροφορίες είναι διαθέσιμες στο %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Γενικές ρυθμίσεις" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Σύνθεση σύνδεσης διακομιστή" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Ρυθμίσεις εμφάνισης" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Περισσότερες ρυθμίσεις" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Διακομιστής βάσης δεδομένων" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Διακομιστής:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Τύπος διακομιστή:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Έκδοση διακομιστή:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Έκδοση πρωτοκόλλου:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Χρήστης:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Κωδικοποιήση διακομιστή:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Διακομιστής ιστού" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Έκδοση πελάτη βάσης δεδομένων:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Επέκταση PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Έκδοση PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Πληροφορίες έκδοσης:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Τεκμηρίωση" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Επίσημη σελίδα του phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Συνεισφορά" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Υποστήριξη" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Λίστα αλλαγών" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Άδεια" -#: index.php:443 +#: index.php:444 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 " @@ -736,7 +736,7 @@ msgstr "" "μπορεί να χωρίσει συμβολοσειρές σωστά και ίσως προκύψουν μη αναμενόμενα " "αποτελέσματα." -#: index.php:458 +#: index.php:459 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." @@ -745,7 +745,7 @@ msgstr "" "Εξαιτίας αυτού ορισμένα χαρακτηριστικά όπως αναφορές σφαλμάτων ή έλεγχοι " "εκδόσης είναι απενεργοποιημένα." -#: index.php:473 +#: index.php:474 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 " @@ -757,7 +757,7 @@ msgstr "" "μικρότερη από την ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας " "αυτού, η σύνδεσή σας ίσως λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -766,18 +766,18 @@ msgstr "" "που ορίστηκε στο phpMyAdmin, για αυτό, η σύνδεσή σας θα λήξει συντομότερα " "από τη ρύθμιση του phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Το αρχείο ρυθμίσεων χρειάζεται τώρα μία μυστική φράση-κλειδί " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "Η μυστική φράση εισόδου στις ρυθμίσεις (blowfish_secret) είναι πολύ μικρή." -#: index.php:528 +#: index.php:529 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 " @@ -790,7 +790,7 @@ msgstr "" "του διακομιστή σας μπορεί να προσβηθεί από μη αδειοδοτημένους χρήστες που " "μπορούν να λάβουν τη ρύθμισή σας." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -799,14 +799,14 @@ msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " "εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. %sΜάθετε γιατί%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ή εναλλακτικά μεταβείτε στην καρτέλα «Λειτουργίες» οποιασδήποτε βάσης " "δεδομένων για να το ορίσετε εκεί." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -815,7 +815,7 @@ msgstr "" "Η έκδοση της βιβλιοθήκης PHP MySQL %s διαφέρει από την έκδοση του διακομιστή " "MySQL %s. Αυτό ίσως έχει μη προβλέψιμα αποτελέσματα." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -988,7 +988,7 @@ msgid "Save & close" msgstr "Αποθήκευση & κλείσιμο" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Επαναφορά" @@ -1020,7 +1020,7 @@ msgstr "Προσθήκη ευρετηρίου" msgid "Edit index" msgstr "Επεξεργασία ευρετηρίου" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Προσθήκη %s στήλης(ών) στο ευρετήριο" @@ -1045,10 +1045,10 @@ msgstr "Επιλέξτε στήλη(ες) για το ευρετήριο." msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Προεπισκόπηση SQL" @@ -1060,7 +1060,7 @@ msgstr "Εξομοίωση ερωτήματος" msgid "Matched rows:" msgstr "Εγγραφές που ταιριάζουν:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Εντολή SQL:" @@ -1077,13 +1077,13 @@ msgstr "Το όνομα του συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Ο κωδικός πρόσβασης είναι κενός!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" @@ -1091,8 +1091,8 @@ msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Κλείσιμο" @@ -1114,19 +1114,19 @@ msgstr "Το πρότυπο διαγράφηκε." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Άλλα" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1232,40 +1232,40 @@ msgid "Processes" msgstr "Διεργασίες" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1283,7 +1283,7 @@ msgstr "Ερωτήσεις" msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1297,16 +1297,16 @@ msgid "Please add at least one variable to the series!" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Καμία" @@ -1507,20 +1507,20 @@ msgstr "Ανάλυση…" msgid "Explain output" msgstr "Επεξήγηση προϊόντος" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Κατάσταση" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Χρόνος" @@ -1610,10 +1610,10 @@ msgstr "" "Επαναφορά στην προεπιλεγμένη ρύθμιση…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Εισαγωγή" @@ -1686,7 +1686,7 @@ msgstr "Δεν βρέθηκαν παράμετροι!" msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Ρυθμίσεις σχετισμένες με σελίδα" @@ -1726,8 +1726,8 @@ msgid "Error text: %s" msgstr "Κείμενο σφάλματος: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." @@ -1765,7 +1765,7 @@ msgstr "Αντιγραφή βάσης δεδομένων" msgid "Changing charset" msgstr "Αλλαγή συνόλου χαρακτήρων" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Ενεργοποίηση ελέγχων μη διακριτών κλειδιών" @@ -1793,74 +1793,79 @@ msgstr "Αναζήτηση" msgid "Deleting" msgstr "Διαγραφή" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ο ορισμός μιας αποθηκευμένης συνάρτησης πρέπει να περιέχει μια δήλωση RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Εξαγωγή" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Καμιά ρουτίνα δεν είναι εξαγώγιμη. Ίσως υπάρχει έλλειψη απαιτούμενων " "δικαιωμάτων." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Επεξεργαστής ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Τιμές για τη στήλη %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Τιμές για νέα στήλη" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδίο." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Προσθήκη %d τιμής(ών)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Απόκρυψη παραθύρου ερωτήματος" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1868,53 +1873,53 @@ msgstr "Προβολή παραθύρου ερωτήματος" msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Διαγραφή" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Κανένα αυτόματα αποθηκευμένο ερώτημα" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Μεταβλητή %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Διαλέξτε" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Επιλογέας στήλης" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Αναζήτηση σε αυτή τη λίστα" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1924,15 +1929,15 @@ msgstr "" "για τη βάση δεδομένων %s έχει στήλες που δεν είναι παρούσες στον τρέχοντα " "πίνακα." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Δείτε περισσότερα" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Σίγουρα;" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1940,51 +1945,51 @@ msgstr "" "Αυτή η ενέργεια ίσως αλλάξει ορισμένους από τους ορισμούς στηλών.
Θέλετε σίγουρα να συνεχίσετε;" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Συνέχεια" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Προστέθηκε πρωτεύον κλειδί." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Μεταφέροντάς σας στο επόμενο βήμα…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Το πρώτο βήμα κανονικοποίησης ολοκληρώθηκε για τον πίνακα «%s»." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Τέλος βήματος" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Δεύτερο βήμα κανονικοποίησης (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Ολοκληρώθηκε" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Επιβεβαίωση μερικών εξαρτήσεων" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Οι επιλεγμένες μερικές εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1992,19 +1997,19 @@ msgstr "" "Σημείωση: a, b -> d,f αναφέρει τιμές των στηλών a και b όπου συνδυαζόμενες " "μπορούν να ορίσουν τις τιμές των στηλών d και f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Δεν έχετε επιλέξει μερικές εξαρτήσεις!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Προβολή των πιθανών μερικών εξαρτήσεων με βάση δεδομένα στον πίνακα" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Απόκρυψη λίστας μερικών εξαρτήσεων" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2012,171 +2017,171 @@ msgstr "" "Καθήστε αναπαυτικά! Ίσως διαρκέσει μερικά δευτερόλεπτα βάσει του μεγέθους " "των δεδομένων και του αριθμού στηλών στον πίνακα." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Βήμα" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Οι ακόλουθες πράξεις θα πραγματοποιηθούν:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Απομάκρυνση στηλών από %s από τον πίνακα %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Δημιουργία του ακόλουθου πίνακα" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Τρίτο βήμα κανονικοποίησης (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Επιβεβαίωση μεταβατικών εξαρτήσεων" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Οι επιλεγμένες εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Δεν έχετε επιλέξει εξαρτήσεις!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Αποθήκευση" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Απόκρυψη κριτηρίων αναζήτησης" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Αναζήτηση εύρους" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Μέγιστο στήλης:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Ονόματα στηλών:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Ελάχιστη τιμή:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Μέγιστη τιμή:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Απόκρυψη κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Προβολή κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Κάθε σημείο αναπαρειστά μια εγγραφή δεδομένων." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Η μετάβαση πάνω από ένα σημείο θα δείξει την ετικέτα του." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Για να εστιάσετε, επιλέξτε ένα τομέα της εκτύπωσης με το ποντίκι." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Πατήστε το κουμπί επαναφοράς εστίασης για να επιστρέψετε στην αρχική " "κατάσταση." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Πατήστε ένα σημείο δεδομένων για να δείτε και πιθανά να επεξεργαστείτε τη " "γραμμή δεδομένων." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Ο χώρος εργασίας μπορεί να αλλάξει μέγεθος σύρωντας την κάτω δεξιά γωνία." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Επιλογή δύο στηλών" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Επιλογή δύο διαφορετικών στηλών" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Αντιγραφή" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Σημείο" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Κείμενο γραμμής" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Πολύγωνο" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Γεωμετρία" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Εσωτερικός δακτύλιος" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Εξωτερικός δακτύλιος" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Θέλετε να αντιγράψετε κλειδί κρυπτογράφησης;" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Κλειδί κρυπτογράφησης" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2184,7 +2189,7 @@ msgstr "" "Η MySQL αποδέχεται πρόσθετες τιμές που δεν είναι επιλέξιμες από την κύλιση, " "δώστε κλειδί σε αυτές τιμές άμεσα, αν το επιθυμείτε" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" @@ -2192,7 +2197,7 @@ msgstr "" "Η MySQL αποδέχεται πρόσθετες τιμές που δεν είναι επιλέξιμες από τον επιλογέα " "ημερομηνίας, δώστε κλειδί σε αυτές τιμές άμεσα, αν το επιθυμείτε" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2200,24 +2205,24 @@ msgstr "" "Δείχνει ότι έχετε κάνει αλλαγές σε αυτή τη σελίδα, θα ερωτηθείτε για " "επιβεβαίωση πριν εγκαταλείψετε τις αλλαγές" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2225,76 +2230,76 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Όνομα σελίδας" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Αποθήκευση σελίδας" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Αποθήκευση σελίδας ως" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Άνοιγμα σελίδας" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Διαγραφή σελίδας" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Χωρίς τίτλο" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Επιλέξτε σελίδα για συνέχεια" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Εισάγετε ένα έγκυρο όνομα σελίδας" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές στην τρέχουσα σελίδα;" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Η σελίδα διαγράφτηκε επιτυχώς" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Εξαγωγή σχεσιακού σχήματος" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Προσθήκη επιλογής για τη στήλη «%s»." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d αντικείμενο(α) δημιουργήθηκε(αν)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Αποστολή" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Πατήστε το escape για ακύρωση της επεξεργασίας." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2302,15 +2307,15 @@ msgstr "" "Έχετε επεξεργαστεί ορισμένα δεδομένα και δεν έχουν αποθηκευτεί. Θέλετε να " "αφήσετε τη σελίδα χωρίς αποθήκευση των δεδομένων;" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Σύρτε για ανακατανομή." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Πατήστε για ταξινόμηση των αποτελεσμάτων κατά αυτή τη στήλη." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2320,26 +2325,26 @@ msgstr "" "ASC/DESC.
- Control+Κλικ ή Alt+Κλικ (Για Mac: Shift+Option+Click) για " "απομάκρυνση της στήλης από τη δήλωση ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Πατήστε για εναλλαγή επισήμανσης." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Διπλό κλικ για αντιγραφή ονόματος στήλης." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Εμφάνιση όλων" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2348,12 +2353,12 @@ msgstr "" "την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή " "ίσως να μη λειτουργούν μετά την αποθήκευση." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Εισάγετε ένα έγκυρο δεκαεξαδικό αριθμό. Έγκυροι χαρακτήρες είναι 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2361,103 +2366,103 @@ msgstr "" "Θέλετε πραγματικά να δείτε όλες τις εγγραφές; Για ένα μεγάλο πίνακα, αυτό " "ίσως φέρει δυσλειτουργία στον φυλλομετρητή σας." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Αρχικό μήκος" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "άκυρο" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Επιτυχία" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Κατάσταση εισαγωγής" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Ρίξτε αρχεία εδώ" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Επιλέξτε βάση δεδομένων πρώτα" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Εκτύπωση" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας με " "διπλό κλικ κατευθείαν σε αυτές." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας " "κατευθείαν σε αυτές." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Μετάβαση στο σύνδεσμο:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Αντιγραφή ονόματος στήλης." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Δεξί κλικ στο όνομα στήλης για αντιγραφή του στο πρόχειρο." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Εμφάνιση πίνακα" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Απόκρυψη πίνακα" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Προβολή κρυφών αντικειμένων δέντρου πλοήγησης." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Σύνδεσμος με τον βασικό πίνακα" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Αποσύνδεση από τον βασικό πίνακα" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Η αιτούμενη σελίδα δεν βρέθηκε στο ιστορικό, ίσως έληξε." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2467,27 +2472,27 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", τελευταία έκδοση:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "ενημερωμένο" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Δημιουργία προβολής" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Αποστολή αναφορών σφάλματος" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Υποβολή αναφοράς σφάλματος" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2495,21 +2500,21 @@ msgstr "" "Ένα ανεπανόρθωτο σφάλμα έχει συμβεί. Θέλετε να στείλετε μια αναφορά " "σφάλματος;" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Αλλαγή ρυθμίσεων αναφοράς" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Εμφάνιση λεπτομερειών αναφοράς" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Η εξαγωγή σας ήταν ανεπιτυχής, λόγω χαμηλού χρονικού ορίου στην PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2519,58 +2524,58 @@ msgstr "" "Κατά την υποβολή ορισμένα πεδία ίσως αγνοηθούν λόγω της ρύθμισης της PHP " "max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Ανιχνεύτηκαν ορισμένα σφάλματα στο διακομιστή!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Δείτε στο κάτω μέρος αυτού του παραθύρου." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Παράληψη Όλων" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Σύμφωνα με τις ρυθμίσεις σας, υποβάλλονται άμεσα, κάντε υπομονή." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Επανεκτέλεση αυτού του ερώτηματος ξανά;" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Θέλετε πραγματικά να διαγράψετε αυτό το σελιδοδείκτη;" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Κάποιο σφάλμα συνέβει κατά τη λήψη πληροφοριών αποσφαλμάτωσης SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s ερωτήματα εκτελέστηκαν %s φορές σε %s δευτερόλεπτα." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s επιχείρημα(τα) πέρασαν" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Προβολή επιχειρημάτων" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Απόκρυψη επιχειρημάτων" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Χρόνος που παρήλθε:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2586,349 +2591,369 @@ msgstr "" "βοηθήσει. Στον Safari, τέτοιο πρόβλημα εμφανίζεται από την «Κατάσταση " "Ιδιωτικής Περιήγησης»." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Αντιγραφή πινάκων στη" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Προσθήκη προθέματος πίνακα" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Αντικατάσταση πίνακα με πρόθεμα" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Αντιγραφή πίνακα με πρόθεμα" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Προηγούμενο" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Απριλίου" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Μαΐου" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "ημερολόγιο-μήνας-έτος" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "κανένα" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Δευτερόλεπτο" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Αυτό το πεδίο είναι υποχρεωτικό" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Διορθώστε αυτό το πεδίο" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Εισάγετε μια έγκυρή ηλεκτρονική διεύθυνση" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Εισάγετε έναν έγκυρο URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Εισάγετε μια έγκυρη ημερομηνία" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Εισάγετε μια έγκυρη ημερομηνία (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Εισάγετε έναν έγκυρο αριθμό" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Εισάγετε μόνο ψηφία" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Εισάγετε την ίδια τιμή ξανά" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Εισάγετε όχι περισσότερους από {0} χαρακτήρες" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Εισάγετε τουλάχιστον {0} χαρακτήρες" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Εισάγετε μια τιμή μήκους μεταξύ {0} και {1} χαρακτήρες" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Εισάγετε εισάγετε μια τιμή μεταξύ {0} και {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Εισάγετε μια τιμή μικρότερη ή ίση με {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Εισάγετε μια τιμή μεγαλύτερη ή ίση με {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Εισάγετε μια έγκυρη ημερομηνία ή ώρα" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Λάθος" @@ -2995,20 +3020,20 @@ msgid "Charset" msgstr "Σύνολο χαρακτήρων" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Σύνθεση" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Δυαδικό" @@ -3203,7 +3228,7 @@ msgid "Czech-Slovak" msgstr "Τσέχο-Σλοβάκικα" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "άγνωστο" @@ -3251,26 +3276,26 @@ msgstr "" msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Προβολή %1$d σελιδοδείκτη (τόσο ιδιωτικού όσο και κοινόχρηστου)" msgstr[1] "Προβολή %1$d σελιδοδεικτών (τόσο ιδιωτικών όσο και κοινόχρηστων)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Κανένας σελιδοδείκτης" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Παράθυρο Ερωτήματος SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Αδύνατος ο ορισμός σύνδεσης ρυθμισμένης σύνθεσης!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3278,23 +3303,23 @@ msgstr "" "Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί " "σωστά)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Ο διακομιστής δεν αποκρίνεται." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Λεπτομέρειες…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Παράμετροι χαμένης σύνδεσης!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας." @@ -3388,110 +3413,105 @@ msgstr "Προσθήκη:" msgid "Del:" msgstr "Διαγραφή:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Εντολή SQL στη βάση δεδομένων %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Υποβολή ερωτήματος" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Αποθηκευμένες αναζητήσεις από σελιδοδείκτες:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Νέος σελιδοδείκτης" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Δημιουργία σελιδοδείκτη" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Ενημέρωση σελιδοδείκτη" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Διαγραφή σελιδοδείκτη" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "τουλάχιστον έναν από τους όρους" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "όλους τους όρους" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "την ακριβή φράση" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "ως κανονική έκφραση" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Αποτελέσματα αναζήτησης για «%s» %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Σύνολο: %s αποτέλεσμα" msgstr[1] "Σύνολο: %s αποτελέσματα" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s απατέλεσμα στο %2$s" msgstr[1] "%1$s αποτελέσματα στο %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Περιήγηση" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Αναζήτηση στη βάση δεδπμένων" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Λέξεις ή τιμές για αναζήτηση (μπαλαντέρ: «%»):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Έυρεση:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Μέσα στους πίνακες:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Αποεπιλογή όλων" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" @@ -3511,30 +3531,30 @@ msgstr "Φιλτράρισμα εγγραφών" msgid "Search this table" msgstr "Αναζήτηση σε αυτόν τον πίνακα" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Αρχή" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Προηγούμενη" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Επόμενη" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Τέλος" @@ -3543,7 +3563,7 @@ msgstr "Τέλος" msgid "All" msgstr "Όλα" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Αριθμός εγγραφών:" @@ -3552,8 +3572,8 @@ msgstr "Αριθμός εγγραφών:" msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3575,10 +3595,10 @@ msgstr "Ταξινόμηση ανά κλειδί" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Επιλογές" @@ -3618,29 +3638,29 @@ msgstr "Καλά Γνωστό Κείμενο" msgid "Well Known Binary" msgstr "Καλά Γνωστό Δυαδικό" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Η εγγραφή έχει διαγραφεί." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Τερματισμός" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις [doc@faq3-11]ΣΑΕ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3649,73 +3669,73 @@ msgstr "" "Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " "%sτεκμηρίωση%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Εμφάνιση εγγραφών %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d σύνολο, %2$d στο ερώτημα" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d συνολικά" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Επιλογή όλων" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Αντιγραφή στο πρόχειρο" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Οπτικοποίηση δεδομένων GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Δεν βρέθηκε η σύνδεση!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Καμία" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Μετατροπή σε Kana" @@ -3723,25 +3743,25 @@ msgstr "Μετατροπή σε Kana" msgid "Too many error messages, some are not displayed." msgstr "Πολλά μηνύματα σφάλματος, ορισμένα δεν εμφανίζονται." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Αναφορά" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Αυτόματη αποστολή αναφοράς την επόμενη φορά" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Το αρχείο δεν ήταν αρχείο αποστολής." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3749,49 +3769,49 @@ msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε " "στη φόρμα HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Χάθηκε ένας προσωρινός φάκελος." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Το αρχείο είναι συμβολικός σύνδεσμος" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [doc@faq1-11]ΣΑΕ 1.11[/" "doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Σφάλμα κατά τη μετακίνηση αρχείου αποστολής." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Αδύνατη η ανάγνωση του αποσταλμένου αρχείου." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3801,28 +3821,28 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Τώρα τρέχει η έκδοση Git %1$s από τον κλάδο %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Λείπουν οι πληροφορίες Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Πατήστε στη γραμμή για να μεταβείτε στην κορυφή της σελίδας" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένη την Javascript!" @@ -3831,20 +3851,20 @@ msgid "No index defined!" msgstr "Δεν ορίστηκε ευρετήριο!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Ευρετήρια" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3854,59 +3874,59 @@ msgstr "Ευρετήρια" msgid "Action" msgstr "Ενέργεια" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Όνομα κλειδιού" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Μοναδικότητα" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Σχόλιο" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Το πρωτεύον κλειδί διεγράφη." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Το ευρετήριο %s έχει διαγραφεί." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Διαγραφή" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3915,19 +3935,19 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Σελίδα:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Αγνόηση μη υποστηριζόμενου κωδικού γλώσσας." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Γλώσσα" @@ -3953,11 +3973,11 @@ msgstr "Διακομιστής" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3976,14 +3996,15 @@ msgid "View" msgstr "Προβολή" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3992,8 +4013,8 @@ msgid "Table" msgstr "Πίνακας" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4001,45 +4022,45 @@ msgstr "Πίνακας" msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Αναζήτηση" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Προσθήκη" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Δικαιώματα" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4055,16 +4076,16 @@ msgstr "Δείκτες" msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Εργασίες" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4072,20 +4093,20 @@ msgstr "Εργασίες" msgid "Events" msgstr "Συμβάντα" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Κεντρικές στήλες" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Βάσεις δεδομένων" @@ -4094,53 +4115,53 @@ msgid "User accounts" msgstr "Λογαριασμοί χρήστη" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Αναπαραγωγή" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Μηχανές" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Πρόσθετα" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "Επηρεάστηκε %1$d γραμμή." msgstr[1] "Επηρεάστηκαν %1$d γραμμές." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "Διαγράφτηκε %1$d γραμμή." msgstr[1] "Διαγράφτηκαν %1$d γραμμές." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4188,28 +4209,28 @@ msgstr "Αγαπημένοι πίνακες" msgid "Favorites" msgstr "Αγαπημένοι" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Δώστε ένα όνομα για αυτή την αναζήτηση από φυλλομετρητή." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" "Λείπουν πληροφορίες για την αποθήκευση της αναζήτησης από σελιδοδείκτη." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Μια εισαγωγή με αυτό το όνομα υπάρχει ήδη." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Λείπουν πληροφορίες για διαγραφή της αναζήτησης." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Λείπουν πληροφορίες για φόρτωση της αναζήτησης." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Σφάλμα κατά τη φόρτωση της αναζήτησης." @@ -4271,7 +4292,7 @@ msgstr "Εμφάνιση ανοιχτών πινάκων" msgid "Show slave hosts" msgstr "Εμφάνιση δευτερευόντων διακομιστών" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" @@ -4325,72 +4346,72 @@ msgid_plural "%d minutes" msgstr[0] "%d λεπτά" msgstr[1] "%d λεπτά" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή " "αποθήκευσης." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Άγνωστη κατάσταση πίνακα:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Η Βάση δεδομένων προέλευσης «%s» δεν βρέθηκε!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Η βάση δεδομένων προορισμού «%s» δεν βρέθηκε!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Μη έγκυρη βάση δεδομένων:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Μη έγκυρο όνομα πίνακα:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Αποτυχία μετονομασίας του πίνακα %1$s σε %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Ο πίνακας %1$s μετονομάσθηκε σε %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Αδύνατη η αποθήκευση του πίνακα ρυθμίσεων UI!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4399,7 +4420,7 @@ msgstr "" "Αδύνατη η εκκαθάριση του πίνακα προτιμήσεων του περιβάλλοντος εργασίας " "(δείτε το $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4410,19 +4431,19 @@ msgstr "" "παραμείνουν μετά την ανανέωση της σελίδας. Ελέξτε αν η δομή πίνακα έχει " "αλλαχτεί." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Το όνομα του πρωτεύοντος κλειδιού πρέπει να είναι \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Η μετατροπή του ευρετηρίου σε PRIMARY δεν είναι εφικτή!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Δεν ορίστηκαν τα στοιχεία του ευρετηρίου!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4752,7 +4773,7 @@ msgid "Date and time" msgstr "Ημερομηνία και ώρα" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Κείμενο" @@ -4767,128 +4788,128 @@ msgstr "Χωρική" msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Στατική ανάλυση:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d σφάλματα βρέθηκαν κατά την ανάλυση." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Ανάλυση Εξήγησης στο %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Χωρίς κώδικα PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Υποβολή ερωτήματος" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Δημιουργία προφίλ" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Επεξεργασία εσωτερικά" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Κυρ" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Απολεσθείσα παράμετρος:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" "Ο φάκελος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Δεν υπάρχουν αρχεία προς αποστολή!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Άδειασμα" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Εκτέλεση" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Χρήστες" @@ -4902,7 +4923,7 @@ msgstr "ανά λεπτό" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "ανά ώρα" @@ -4910,12 +4931,12 @@ msgstr "ανά ώρα" msgid "per day" msgstr "ανά ημέρα" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Αναζήτηση:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4923,7 +4944,7 @@ msgstr "Αναζήτηση:" msgid "Description" msgstr "Περιγραφή" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Χρήση αυτής της τιμής" @@ -4964,22 +4985,22 @@ msgstr "ΝΑΙ" msgid "NO" msgstr "ΌΧΙ" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Όνομα" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Μήκος/Τιμές*" @@ -4988,7 +5009,7 @@ msgstr "Μήκος/Τιμές*" msgid "Attribute" msgstr "Χαρακτηριστικό" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "Α/Α" @@ -5005,11 +5026,11 @@ msgstr "Προσθήκη στήλης" msgid "Select a column." msgstr "Επιλογή μιας στήλης." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Προσθήκη νέας στήλης" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5017,7 +5038,7 @@ msgstr "Προσθήκη νέας στήλης" msgid "Attributes" msgstr "Χαρακτηριστικά" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5027,28 +5048,28 @@ msgstr "" "επιλογή είναι ασύμβατη με το phpMyAdmin και ίσως προκαλέσει πρόβλημα με " "μερικά δεδομένα!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Διακομιστής %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5060,20 +5081,20 @@ msgstr "" "το phpMyAdmin χρησιμοποιεί την προεπιλεγμένη ζώνη ώρας του διακομιστή της " "βάσης δεδομένων." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "προσπάθεια επανεγγραφής GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "δυνατή αξιοποίηση" @@ -5681,7 +5702,7 @@ msgid "Compress on the fly" msgstr "Άμεση συμπίεση" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Αρχείο ρυθμίσεων" @@ -5789,12 +5810,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Μέγιστος χρόνος εκτέλεσης" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Χρήση δήλωσης %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Αποστολή" @@ -5804,7 +5825,7 @@ msgstr "Σύνολο χαρακτήρων αρχείου" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Μορφοποίηση" @@ -5929,7 +5950,7 @@ msgid "Save on server" msgstr "Αποθήκευση στο διακομιστή" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Αντικατάσταση αρχείου(ων)" @@ -5942,7 +5963,7 @@ msgid "Remember file name template" msgstr "Πρότυπο απομνημόνευσης ονοματος αρχείου" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" @@ -5951,7 +5972,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των πινάκων και των στηλών" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" @@ -5981,7 +6002,7 @@ msgstr "Εξαγωγή σχετικών μεταδεδομένων από απο #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" @@ -6152,7 +6173,7 @@ msgid "Customize the navigation tree." msgstr "Προσαρμογή δέντρου πλοήγησης." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Διακομιστές" @@ -7078,7 +7099,7 @@ msgstr "Βασίλειο HTTP" msgid "Authentication method to use." msgstr "Μέθοδος επικύρωσης για χρήση." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Τύπος επικύρωσης" @@ -7834,7 +7855,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Έλεγχος για τελευταία έκδοση" @@ -7844,10 +7865,10 @@ msgstr "" "Ενεργοποιεί τον έλεγχο για τη τελευταία έκδοση στη κεντρική σελίδα του " "phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Έλεγχος έκδοσης" @@ -7997,24 +8018,24 @@ msgstr "Έγγραφο Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Η Λίστα Αγαπημένων είναι πλήρης!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Ο πίνακας %s άδειασε." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Η προβολή %s διαγράφτηκε." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Ο πίνακας %s έχει διαγραφεί." @@ -8028,12 +8049,12 @@ msgid "Position" msgstr "Θέση" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Τύπος συμβάντος" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Ταυτότητα Διακομιστή" @@ -8042,7 +8063,7 @@ msgid "Original position" msgstr "Αρχική θέση" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Πληροφορία" @@ -8056,42 +8077,42 @@ msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Δεν υπάρχουν βάσεις δεδομένων" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d βάση δεδομένων διεγράφηκε επιτυχώς." msgstr[1] "%1$d βάσεις δεδομένων διεγράφηκαν επιτυχώς." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Εγγραφές" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Σύνολο" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Περίσσεια" @@ -8118,34 +8139,34 @@ msgstr "" msgid "Enable statistics" msgstr "Ενεργοποίηση στατιστικών" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Δεν υπάρχουν αρκετά δικαιώματα για προβολή μεταβλητών διακομιστή και " "ρυθμίσεων. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Ο ορισμός της μεταβλητής απέτυχε" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Κανένα ερώτημα SQL δεν τέθηκε για να έρθουν δεδομένα." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Καμία αριθμητική στήλη παρούσα στον πίνακα για εκτύπωση." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Κανένα δεδομένο για προβολή" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς." @@ -8188,7 +8209,7 @@ msgstr "Οι στήλες μετακινήθηκαν επιτυχώς." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Σφάλμα ερωτήματος" @@ -8205,12 +8226,12 @@ msgstr "Αλλαγή" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Ευρετήριο" @@ -8231,13 +8252,13 @@ msgstr "Πλήρες κείμενο" msgid "Distinct values" msgstr "Διακριτές τιμές" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσεις της PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -8260,31 +8281,35 @@ msgstr "" "Αδύνατη η φόρτωση προσθέτων σχήματος, για αυτό ελέξτε την εγκατάστασή σας!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Επαναεισαγωγή:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Μείγμα κωδικού πρόσβασης:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8294,83 +8319,83 @@ msgstr "" "κρυπτογραμμένης σύνδεσης που κρυπτογραφεί τον κωδικό πρόσβασης με χρήση RSA», κατά τη σύνδεση στο διακομιστή." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Εξαγωγή βάσεων δεδομένων από τον τρέχοντα διακομιστή" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Εξαγωγή πινάκων από τη βάση δεδομένων «%s»" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Εξαγωγή εγγραφών από τον πίνακα «%s»" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Εξαγωγή προτύπων:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Νέο πρότυπο:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Ονομασία προτύπου" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Δημιουργία" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Υπάρχοντα πρότυπα:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Πρότυπο:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Ενημέρωση" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Επιλογή ενός προτύπου" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Μέθοδος εξαγωγής:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Βάσεις δεδομένων:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Πίνακες:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Μορφοποίηση:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Επιλογές ορισμένης μορφής:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8378,52 +8403,52 @@ msgstr "" "Μεταβείτε πιο κάτω για να συμπληρώσετε τις επιλογές για την επιλεγμένη μορφή " "και αγνοήστε τις επιλογές για τις άλλες μορφές." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Μετατροπή κωδικοποίησης:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Εγγραφές:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Μετατροπή εγγραφής(ών)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Η εγγραφή θα ξεκινάει στο:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Μετατροπή όλων των γραμμών" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Εξαγόμενο:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Αποθήκευση στον διακομιστή στον φάκελο %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Πρότυπο ονόματος αρχείου:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "Το @SERVER@ θα γίνει το όνομα του διακομιστή" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", το @DATABASE@ θα γίνει το όνομα της βάσης δεδομένων" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8435,99 +8460,99 @@ msgstr "" "και οι ακόλουθες μετατροπές: %3$s. Το υπόλοιπο κείμενο θα παραμείνει όπως " "είναι. Δείτε τις %4$sΣΑΕ%5$s για λεπτομέρειες." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "χρησιμοποιήστε το για μελλοντικές εξαγωγές" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Σύνολο χαρακτήρων του αρχείου:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Συμπίεση:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "συμπίεση «zip»" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "συμπίεση «gzip»" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Προβολή εξαγόμενου ως κείμενο" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Εξαγωγή βάσεων δεδομένων ως χωριστά αρχεία" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Εξαγωγή πινάκων ως χωριστά αρχεία" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Μετονομασία εξαγόμενων βάσεων δεδομένων/πινάκων/στηλών" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Αποθήκευση εξαγόμενου σε αρχείο" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Αγνόηση πινάκων μεγαλύτερων από" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Επιλογή βάσης δεδομένων" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Επιλογή πίνακα" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Νέο όνομα βάσης δεδομένων" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Νέο όνομα πίνακα" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Παλαιό ονόμα στήλης" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Νέο ονόμα στήλης" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εξαγωγής, για αυτό εξέξτε την εγκατάστασή σας!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s από %2$s κλάδο" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "κανένας κλάδος" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Αναθεώρηση git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "έγινε την %1$s από %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "δημιουργήθηκε την %1$s από %2$s" @@ -8992,13 +9017,13 @@ msgstr "" "Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " "%sΙστοσελίδα του PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9006,75 +9031,75 @@ msgstr "" "Το αρχείο %s υπάρχει ήδη στον διακομιστή, για αυτό επιλέξτε διαφορετικό " "όνομα αρχείου ή ενεργοποιήστε την επιλογή αντικατάστασης." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[συνέβει ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Μετάβαση στη βάση δεδομένων: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Επεξεργασία ρυθμίσεων για %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Μετάβαση στον πίνακα: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Δομή του %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Μετάβαση στην προβολή: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Μονο ερωτήματα UPDATE και DELETE μονού πίνακα μπορούν να εξομοιωθούν." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9087,87 +9112,88 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Δημιουργία ευρετηρίου σε  %s  στήλες" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Απόκρυψη" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Συνάρτηση" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" "Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ενωση" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Επεξεργασία/Προσθήκη" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "και μετά" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9178,31 +9204,31 @@ msgstr "" msgid "Value" msgstr "Τιμή" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Επιτυχία!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Μόνο η δομή" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Δομή και δεδομένα" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Μόνο τα δεδομένα" @@ -9211,14 +9237,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Προσθήκη τιμής AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Προσαρμογή δικαιωμάτων" @@ -9263,8 +9289,8 @@ msgstr "Διαδικασίες:" msgid "Views:" msgstr "Προβολές:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Εμφάνιση" @@ -9308,17 +9334,17 @@ msgid_plural "%s results found" msgstr[0] "%s αποτέλεσμα βρέθηκε" msgstr[1] "%s αποτελέσματα βρέθηκαν" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Γράψτε για να φιλτράρετε, Enter για αναζήτηση όλων" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Εκκαθάριση γρήγορου φίλτρου" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Σύμπτηξη όλων" @@ -9333,7 +9359,7 @@ msgstr "Μη έγκυρο όνομα κλάσης «%1$s», χρήση της π msgid "Could not load class \"%1$s\"" msgstr "Αδύνατη η φόρτωση κλάσης «%1$s»" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Ανάπτυξη/Σύμπτηξη" @@ -9352,7 +9378,7 @@ msgstr "Νέα" msgid "Database operations" msgstr "Λειτουργίες βάσης δεδομένων" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Εμφάνιση κρυφών αντικειμένων" @@ -9457,11 +9483,11 @@ msgstr "" "Επιλέξτε μια στήση που μπορεί να διαιρεθεί σε περισσότερες από μια " "(επιλέγοντας το «Καμιά τέτοια στήλη», θα μεταβείτε στο επόμενο βήμα)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Επιλογή ενός…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Καμιά τέτοια στήλη" @@ -9739,8 +9765,8 @@ msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9786,177 +9812,177 @@ msgstr "(μοναδικά)" msgid "Move table to (database.table)" msgstr "Μεταφορά πίνακα σε (βάση δεδομένων.πίνακας)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Μετονομασία πίνακα σε" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Σχόλια πίνακα" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Επιλογές πίνακα" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Αλλαγή όλων των συνθέσεων στηλών" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Αντιγραφή πίνακα σε (βάση δεδομένων.πίνακας)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Μεταφορά στον αντεγραμμένο πίνακα" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Συντήρηση πίνακα" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Ανάλυση πίνακα" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Πίνακας αθροίσματος ελέγχου" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Ανασυγκρότηση πίνακα" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Ο πίνακας %s εκκαθαρίστηκε." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Εκκαθάριση («FLUSH») πίνακα" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Βελτιστοποίηση πίνακα" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Διαγραφή δεδομένων ή πίνακα" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Άδειασμα του πίνακα (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Διαγραφή της βάσης δεδομένων (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Ανάλυση" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Έλεγχος" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Βελτιστοποίηση" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Επανακατασκευή" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Επισκευή" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Διαγραφή" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Κοαλέζικα" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Συντήρηση κατάτμησης" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Κατάτμηση %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Απομάκρυνση κατάτμησης" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Δεν είναι δυνατή η μεταφορά του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Δεν είναι δυνατή η αντιγραφή του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s αντιγράφηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Ο πίνακας %s αντιγράφηκε στο %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Το όνομα του πίνακα είναι κενό!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Αυτή η μορφή δεν έχει επιλογές" @@ -9987,18 +10013,18 @@ msgstr "Εμφάνιση χρωμάτων" msgid "Only show keys" msgstr "Μόνο ερφάνιση κλειδιών" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Καλωσήρθατε στο %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10007,7 +10033,7 @@ msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10020,7 +10046,7 @@ msgstr "" "και να βεβαιωθείτε ότι αντιστοιχούν σε αυτά που σας έχει δώσει ο " "διαχειρηστής του διακομιστή MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Επαναπροσπάθεια για σύνδεση" @@ -10047,15 +10073,15 @@ msgstr "Όνομα χρήστη:" msgid "Server Choice:" msgstr "Επιλογή Διακομιστή:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Το captcha που εισάγατε είναι λανθασμένο, δοκιμάστε ξανά!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Εισάγετε το σωστό captcha!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Δεν επιτρέπεται να συνδεθείτε στον διακομιστή MySQL!" @@ -10116,7 +10142,7 @@ msgstr "Επιλογές απορριμμάτων δεδομένων" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" @@ -10125,7 +10151,7 @@ msgstr "Άδειασμα δεδομένων του πίνακα" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Συμβάν" @@ -10133,8 +10159,8 @@ msgstr "Συμβάν" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Προσδιορισμός" @@ -10220,7 +10246,7 @@ msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γρ #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Φιλοξενητής:" @@ -10753,7 +10779,7 @@ msgstr "Πίνακας περιεχομένων" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Πρόσθετα" @@ -11141,11 +11167,11 @@ msgstr "" "Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο " "ρυθμίσεων." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "χωρίς περιγραφή" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11156,7 +11182,7 @@ msgstr "" "οποιασδήποτε βάσης δεδομένων για να ορίσετε την αποθήκευση ρυθμίσεων του " "phpMyAdmin εκεί." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11165,7 +11191,7 @@ msgstr "" "%sΔημιουργία%s μιας βάσης δεδομένων με το όνομα «phpmyadmin» και εγκατάσταση " "της αποθήκευσης ρυθμίσεων του phpMyAdmin εκεί." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11173,36 +11199,36 @@ msgstr "" "%sΔημιουργία%s του τρέχοντος χώρου αποθήκευσης ρυθμίσεων του phpMyAdmin στην " "τρέχουσα βάση δεδομένων." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" "%sΔημιουργία%s των πινάκων αποθήκευσης ρυθμίσεων του phpMyAdmin που λείπουν." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Πρωτεύουσα αναπαραγωγή" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Προβολή συνδεδεμένων δευτερευόντων" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Ρύθμιση πρωτεύοντος" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11217,19 +11243,19 @@ msgstr "" "παραβλέψετε όλες τις βάσεις δεδομένων ως προεπιλογή και να επιτρέψετε μόνο " "σε ορισμένες να αναπαράγονται. Επιλέξτε:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Αναπαραγωγή όλων των βάσεων δεδομένων. Παράβλεψη:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Παράβλεψη όλων των βάσεων δεδομένων. Αναπαραγωγή:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Επιλέξτε βάσεις δεδομένων:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11237,7 +11263,7 @@ msgstr "" "Τώρα, προσθέστε της ακόλουθες γραμμές στο τέλος του τομέα [mysqld] του " "αρχείου my.cnf και επανεκκινήστε τον διακομιστή MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11247,71 +11273,71 @@ msgstr "" "θα πρέπει να δείτε ένα μύνημα που να σας πληροφορεί ότι αυτός ο διακομιστής " "έχει ρυθμιστεί ως πρωτεύων." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Δευτερεύουσα αναπαραγωγή" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Κύρια σύνδεση:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Το δευτερεύον νήμα SQL δεν τρέχει!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Το δευτερεύον IO SQL δεν τρέχει!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ο διακομιστής ρυθμίστηκε ως δευτερεύων σε μια διαδικασία αναπαραγωγής. " "Θέλετε να:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Έλεγχος δευτερεύοντος:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Πλήρης εκκίνηση" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Πλήρες σταμάτημα" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Επαναφορά δευτερεύοντος" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Εκκίνηση μόνο Νήματος SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Σταμάτημα μόνο Νήματος SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Εκκίνηση μόνο Νήματος IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Σταμάτημα μόνο Νήματος IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11320,26 +11346,26 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Διαχείριση σφάλματος:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και " "δευτερεύοντος!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Παράβλεψη τρέχοντος σφάλματος" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Παράβλεψη επόμενων %s σφαλμάτων." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11348,11 +11374,11 @@ msgstr "" "Αυτός ο διακομιστής δεν έχει ρυθμιστεί ως πρωτεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Ρύθμιση δευτερεύοντος" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11360,53 +11386,53 @@ msgstr "" "Σιγουρευτείτε ότι έχετε μοναδική ταυτότητα διακομιστή στο αρχείο ρυθμίσεων " "(my.cnf). Αν όχι, προσθέστε την παρακάτω γραμμή στον τομέα [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Όνομα χρήστη:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Όνομα χρήστη" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Κωδικός πρόσβασης" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Θύρα:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Κατάσταση πρωτεύοντος" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Μεταβλητή" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Φιλοξενητής" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11414,39 +11440,39 @@ msgstr "" "Μόνο οι δευτερεύοντες που εκκινούν με την ρύθμιση --report-host=host_name " "είναι ορατές σε αυτή τη λίστα." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Οποιοδήποτε σύστημα" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Τοπικό" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Οποιοσδήποτε χρήστης" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Χρήση πεδίου κειμένου:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11454,77 +11480,77 @@ msgstr "" "Όταν χρησιμοποιείται ο Οικείος πίνακας, παραβλέπεται αυτό το πεδίο και " "χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Επαναεισαγωγή" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Δημιουργία κωδικού πρόσβασης:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Η αναπαραγωγή εκκινήθηκε επιτυχώς." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Σφάλμα έναρξης αναπαραγωγής." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Η αναπαραγωγή σταμάτησε επιτυχώς." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Σφάλμα λήξης αναπαραγωγής." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Η αναπαραγωγή επαναφέρθηκε επιτυχώς." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Σφάλμα επαναφοράς αναπαραγωγής." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Επιτυχία." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Λάθος." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Άγνωστο σφάλμα" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Αδύνατη η σύνδεση στον πρωτεύοντα %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Αδύνατη η ανάγνωση της θέσης πρωτεύουσας καταγραφής. Πιθανό πρόβλημα " "δικαιωμάτων." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Αδύνατη η αλλαγή της πρωτεύουσας!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Ο πρωτεύων διακομιστής άλλαξε επιτυχώς σε %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11545,7 +11571,7 @@ msgstr "Το συμβάν %1$s έχει αλλαχτεί." msgid "Event %1$s has been created." msgstr "Το συμβάν %1$s έχει δημιουργηθεί." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11555,75 +11581,75 @@ msgstr "" msgid "Edit event" msgstr "Επεξεργασία συμβάντος" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Λεπτομέρειες" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Όνομα συμβάντος" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Αλλαγή σε %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Εκτέλεση σε" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Εκτέλεση κάθε" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Έναρξη" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Λήξη" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Διατήρηση με την ολοκλήρωση" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Προσδιοριστής" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Ο οριστής πρέπει να είναι της μορφής «username@hostname»!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Πρέπει να δώσετε ένα όνομα στο συμβάν!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Πρέπει να δώσετε μια έγκυρη τιμή διαστήματος για το συμβάν." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Πρέπει να δώσετε μια έγκυρη τιμή εκτέλεσης για το συμβάν." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Πρέπει να δώσετε έναν έγκυρο τύπο συμβάντος." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Πρέπει να δώσετε έναν προσδιορισμό συμβάντος." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Σφάλμα στην προώθηση αιτημάτος:" @@ -11644,7 +11670,7 @@ msgstr "Κατάσταση προγραμματισμού συμβάντων" msgid "The backed up query was:" msgstr "Το εφεδρικό ερώτημα ήταν:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Επιστροφές" @@ -11660,72 +11686,72 @@ msgstr "" "αποθηκευμένων ερωτημάτων ίσως αποτύχουν![/strong] Χρησιμοποιήστε τη " "βελτιωμένη επέκταση «mysqli» για να αποφύγετε προβλήματα." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Επεξεργασία ρουτίνας" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Η ρουτίνα %1$s έχει δημιουργηθεί." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Συγνώμη, αποτύχαμε να επαναφέρουμε τη διαγραμμένη ρουτίνα." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Η ρουτίνα %1$s έχει αλλαχτεί. Τα προνόμια έχουν προσαρμοστει." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Η ρουτίνα %1$s έχει αλλαχτεί." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Όνομα ρουτίνας" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Παράμετροι" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Κατεύθυνση" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Προσθήκη παραμέτρου" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Μετακίνηση τελευταίας παραμέτρου" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Επιστροφή μήκους/τιμών" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Επιλογές επιστροφής" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Είναι προσδιοριστικό" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11733,25 +11759,25 @@ msgstr "" "Δεν έχετε επαρκή δικαιώματα για εκτέλεση αυτή της λειτουργίας. Δείτε την " "τεκμηρίωση για περισσότερες λεπτομέρειες" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Τύπος ασφάλειας" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Πρόσβαση δεδομένων SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Πρέπει να δώσετε ένα όνομα στη ρουτίνα!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Εσφαλμένη κατεύθυνση «%s» δόθηκε για την παράμετρο." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11759,25 +11785,25 @@ msgstr "" "Πρέπει να δώσετε μήκος/τιμές για τις παραμέτρους της ρουτίνας του τύπου " "ENUM, SET, VARCHAR και VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Πρέπει να δώσετε ένα όνομα και ένα τύπο για κάθε παράμετρος της ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Πρέπει να δώσετε ένα έγκυρο τύπο επιστροφής για τη ρουτίνα." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Πρέπει να δώσετε ένα προσδιορισμό ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -11786,13 +11812,13 @@ msgstr[0] "" msgstr[1] "" "%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Εκτέλεση ρουτίνας" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Παράμετροι ρουτίνας" @@ -11814,32 +11840,32 @@ msgstr "Η ενέργεια %1$s έχει δημιουργηθεί." msgid "Edit trigger" msgstr "Επεξεργασία ενέργειας" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Όνομα ενέργειας" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Χρόνος" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Πρέπει να δώσετε ένα όνομα στην ενέργεια!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Πρέπει να δώσετε ένα έγκυρο χρόνο για την ενέργεια!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Πρέπει να δώσετε ένα έγκυρο συμβάν για την ενέργεια!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Πρέπει να δώσετε ένα έγκυρο όνομα πίνακα!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Πρέπει να δώσετε ένα προσδιορισμό ενέργειας." @@ -11881,7 +11907,8 @@ msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format msgid "No routine with name %1$s found in database %2$s." -msgstr "Καμιά ρουτίνα με την ονομασία %1$s δεν βρέθηκε στη βάση δεδομένων %2$s." +msgstr "" +"Καμιά ρουτίνα με την ονομασία %1$s δεν βρέθηκε στη βάση δεδομένων %2$s." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11960,92 +11987,92 @@ msgstr "Σύνολα και Συνθέσεις Χαρακτήρων" msgid "Databases statistics" msgstr "Στατιστικά βάσης" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12055,134 +12082,107 @@ msgstr "" "καλυθφεί, το οποίο απαιτείται για τις περισσότερες λειτουργίες διαχείρισης " "όπως ο ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι / δευτερεύοντες " "διακομιστές." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Κανένα" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Ομάδας χρηστών" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Δεν απαιτούνται κρυπτογραφημένες συνδέσεις SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Απαιτούνται κρυπτογραφημένες συνδέσεις SSL." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Απαιτείται ένα έγκυρο πιστοποιητικό X509." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" "Απαιτεί ότι συγκεκριμένη κρυπτογραφημένη μέθοδος θα χρησιμοποιείται για μια " "σύνδεση." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Απαιτεί ότι ένα έγκυρο πιστοποιητικό X509 που εκδόθηκε από αυτό το CA " "παρουσιάζεται." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Απαιτεί ότι ένα έγκυρο πιστοποιητικό X509 με αυτό το θέμα παρουσιάζεται." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Όρια πόρων" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " "διακομιστή ανά ώρα." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12190,28 +12190,26 @@ msgstr "" "Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " "εκετελέσει ανά ώρα." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " "ανά ώρα." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Εργασία" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." @@ -12219,62 +12217,62 @@ msgstr "" "Επιτρέπει στο χρήστη για δίνει σε άλλους χρήστες ή να απομακρύνει από άλλους " "χρήστες δικαιώματα που ο χρήστης κατέχει σε αυτή τη ρουτίνα." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Επιτρέπει την αλλαγή και διαγραφή αυτής της εργασίας." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Επιτρέπει την εκτέλεση αυτής της εργασίας." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Διαχείριση" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Γενικά" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " "πίνακες δικαιωμάτων." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." @@ -12282,31 +12280,28 @@ msgstr "" "Επιτρέπει το χρήστη να δώσει σε άλλους χρήστες ή απομακρύνει από άλλους " "χρήστες τα δικαιώματα που ο χρήστης κατέχει από μόνος του." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Γηγενής πιστοποίηση MySQL" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Πιστοποίηση κωδικού πρόσβασης SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Γηγενής Πιστοποίηση MySQL" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12314,135 +12309,135 @@ msgstr "" "Ένας λογαριασμός με το ίδιο όνομα χρήστη υπάρχει ήδη αλλά πιθανά διαφορετικό " "φιλοξενητή." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Όνομα φιλοξενητή:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Όνομασία φιλοξενητή" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Πρόσθετο Πιστοποιίησης" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Μέθοδος Μείγματος Κωδικού Πρόσβασης" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο κωδικός πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ανακαλέσατε τα δικαιώματα για %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Προσθήκη λογαριασμού χρήστη" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Βάση δεδομένων για λογαριασμό χρήστη" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Πλήρη δικαιώματα στη βάση δεδομένων %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Χορήγηση" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή χρηστών." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Οποιοδήποτε" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "γενικός" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "σχετιζόμενος με βάση δεδομένων" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "μπαλαντέρ" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "σχετικός με πίνακα" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Επεξεργασία δικαιωμάτων" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Ανάκληση" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Επεξεργασία ομάδας χρηστών" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… διατήρηση του παλιού χρήστη." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12450,90 +12445,77 @@ msgstr "" "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " "δικαιωμάτων." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Αλλαγή στοιχείων πρόσβασης / Αντιγραφή λογαριασμού χρήστη" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Δημιουργία νέου λογαριασμού χρήστη με τα ίδια δικαιώματα και …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Δικαιώματα για τη συγκεκριμένη εργασία" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Διαγραφή των επιλεγμένων λογαριασμών χρηστών" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Ομάδας χρηστών" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Δικαιώματα για %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Χρήστης" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Νέος" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Επεξεργασία δικαιωμάτων:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Λογαριασμός χρήστη" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12541,11 +12523,11 @@ msgstr "" "Σημείωση: Προσπαθείτε να επεξεργαστείτε δικαιώματα του χρήστη με τον οποίο " "έχετε συνδεθεί." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Επισκόπηση λογαριασμών χρηστών" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12556,7 +12538,7 @@ msgstr "" "φιλοξενίας του λογαριασμού τους επιτρέπει μια σύνδεση από οποιαδήποτε (%) " "φιλοξενία." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12570,7 +12552,7 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12584,11 +12566,11 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, τα δικαιώματα πρέπει να " "επαναφορτωθούν αλλά προς το παρόν, δεν έχετε το δικαίωμα RELOAD." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." @@ -12902,12 +12884,12 @@ msgstr "Εντολή" msgid "Progress" msgstr "Εξέλιξη" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Φίλτρα" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Εμφάνιση μόνο των ενεργών" @@ -12928,12 +12910,12 @@ msgstr "ανά λεπτό:" msgid "per second:" msgstr "ανά δευτερόλεπτο:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Δηλώσεις" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12957,7 +12939,7 @@ msgstr "Εμφάνιση μη διαμορφομένων τιμών" msgid "Related links:" msgstr "Σχετικοί σύνδεσμοι:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12965,12 +12947,12 @@ msgstr "" "Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " "κλείσει σωστά τη σύνδεση." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12980,20 +12962,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13005,11 +12987,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13017,7 +12999,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13025,7 +13007,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13034,23 +13016,23 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13061,7 +13043,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13072,7 +13054,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13081,7 +13063,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13091,7 +13073,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13100,7 +13082,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13113,7 +13095,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13125,37 +13107,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13165,7 +13147,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13177,11 +13159,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13190,7 +13172,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13198,11 +13180,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13210,7 +13192,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13225,55 +13207,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13281,36 +13263,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13319,55 +13301,55 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13376,7 +13358,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13385,7 +13367,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13395,17 +13377,17 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" "Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13416,7 +13398,7 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13424,22 +13406,22 @@ msgstr "" "Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων " "σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13450,7 +13432,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13458,12 +13440,12 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13471,21 +13453,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13495,19 +13477,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13521,7 +13503,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13529,19 +13511,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13549,13 +13531,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13564,7 +13546,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13572,17 +13554,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13590,13 +13572,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13604,14 +13586,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13621,23 +13603,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13649,7 +13631,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13659,11 +13641,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13675,11 +13657,11 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." @@ -13708,37 +13690,37 @@ msgstr "Καρτέλες επιπέδου βάσης δεδομένων" msgid "Table level tabs" msgstr "Καρτέλες επιπέδου πίνακα" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Χρήστες προβολών" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Προσθήκη ομάδας χρηστών" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Επεξεργασία ομάδας χρηστών: «%s»" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Συσχετίσεις μενού ομάδας χρήστών" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Όνομα ομάδας:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Καρτέλες επιπέδου διακομιστή" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Καρτέλες επιπέδου βάσης δεδομένων" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Καρτέλες επιπέδου πίνακα" @@ -13839,7 +13821,7 @@ msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δε msgid "Run SQL query/queries on table %s" msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στον πίνακα %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Καθάρισμα" @@ -13924,113 +13906,113 @@ msgstr "Απενεργοποιήση τώρα" msgid "Version" msgstr "Έκδοση" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Δημιουργήθηκε" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Ενημερώθηκε" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Διαγραφή έκδοσης" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "ενεργή" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "μη ενεργή" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Δηλώσεις παρακολούθησης" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Διαγραφή γραμμής δεδομένων παρακολούθησης από την αναφορά" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Δεν υπάρχουν δεδομένα" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Εμφάνιση %1$s με ημερομηνίες από %2$s έως %3$s από χρήστη %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Κάδος SQL (λήψη αρχείου)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Κάδος SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" "Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Εκτέλεση SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Εξαγωγή ως %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Δήλωση χειρισμού δεδομένων" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Δήλωση ορισμού δεδομένων" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Ημερομηνία" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Όνομα χρήστη" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Καμία" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Ο προσδιορισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Ο χειρισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14038,61 +14020,61 @@ msgstr "" "Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι " "προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Αναφορά παρακολούθησης για τον πίνακα «%s»" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Παρακολούθηση του %1$s ενεργοποιήθηκε στην έκδοση %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Παρακολούθηση του %1$s απενεργοποιήθηκε στην έκδοση %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Η έκδοση %1$s από %2$s διαγράφτηκε." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Η έκδοση %1$s δημιουργήθηκε, η παρακολούθηση του %2$s ενεργοποιήθηκε." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Προβολή παρακολούθησης πίνακα" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Τελευταία έκδοση" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Διαγραφή παρακολούθησης" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Εκδόσεις" @@ -14100,7 +14082,7 @@ msgstr "Εκδόσεις" msgid "Manage your settings" msgstr "Διαχειριστείτε τις ρυθμίσεις σας" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Οι ρυθμίσεις αποθηκεύτηκαν." @@ -14126,7 +14108,7 @@ msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:" msgid "No files found inside ZIP archive!" msgstr "Δεν βρέθηκαν αρχεία στο συμπιεσμένο αρχείο ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω AJAX" @@ -14135,56 +14117,56 @@ msgid "Cannot save settings, submitted form contains errors!" msgstr "" "Αδύνατη η αποθήκευση ρυθμίσεων γιατί η υποβλειθείσα φόρμα περιέχει σφάλματα!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "Απόσπασμα ρυθμίσεων του phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Επικολλήστε το στο config.inc.php" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Αδύνατη η εισαγωγή ρυθμίσεων" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Οι ρυθμίσεις περιέχουν λανθασμένα δεδομένα για ορισμένα πεδία." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Θέλετε να εισάγετε τις υπόλοιπες ρυθμίσεις;" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Αποθήκευση στις: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Εισαγωγή από αρχείο" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Εισαγωγή από την αποθήκευση φυλλομετρητή" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "Οι ρυθμίσεις θα εισαχθούν από την τοπική αποθήκευση του φυλλομετρητή σας." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Δεν έχετε αποθηκευμένες ρυθμίσεις!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Αυτό το χαρακτηριστικό δεν υποστηρίζεται από τον φυλλομετρητή σας" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Ένωση με την τρέχουσα ρύθμιση" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14193,24 +14175,24 @@ msgstr "" "Μπορείτε να ορίσετε περισσότερες ρυθμίσεις αλλάζοντας το αρχείο config.inc." "php, π.χ. χρησιμοποιώντας τον %sκώδικα Εγκατάστασης%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Αποθήκευση στο αρχείο PHP" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Αποθήκευση στο χώρο αποθήκευσης του φυλλομετρητή" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" "Οι ρυθμίσεις θα αποθηκευτούν στην τοπική αποθήκευση του φυλλομετρητή σας." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Οι υπάρχουσες ρυθμίσεις θα αντικατασταθούν!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Μπορείτε να επαναφέρεται όλες σας τις ρυθμίσεις στις προεπιλεγμένες τιμές." @@ -14219,12 +14201,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Εμφάνισης σκαριφήματος (σχήματος) βάσεων δεδομένων" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14233,20 +14215,20 @@ msgstr "" "μόνο τον κωδικό πρόσβασης, πρέπει να χρησιμοποιηθεί η καρτέλα «Αλλαγή " "κωδικού»." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή κατάστασης διακομιστή." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή συμβούλου." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Η λειτουργία %s διεκόπη." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14254,15 +14236,15 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή στατιστικά ερωτημάτων." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή μεταβλητών κατάστασης." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Λήψη" @@ -14272,11 +14254,11 @@ msgstr "" "Λανθασμένο σύνολο φόρμας, ελέγξτε τη ακολουθία $formsets στο setup/frames/" "form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Αδύνατη η φόρτωση ή η αποθήκευση ρυθμίσεων" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14287,7 +14269,7 @@ msgstr "" "[doc@setup_script]τεκμηρίωση[/doc]. Διαφορετικά, θα μπορείτε μόνο να τον " "λάβετε ή να τον προβάλετε." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14296,24 +14278,27 @@ msgstr "" "ευαίσθητες πληροφορίες, όπως οι κωδικοί πρόσβασης) διακινούνται " "ακρυπτογράφητα!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Αν ο διακομιστής σας έχει ρυθμιστεί να δέχεται αιτήσεις HTTPS πατήστε [a@" "%s]αυτόν τον σύνδεσμο[/a] για χρήση ασφαλούς σύνδεσης." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Μη ασφαλής σύνδεση" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Οι ρυθμίσεις αποθηκεύτηκαν." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14322,59 +14307,59 @@ msgstr "" "φάκελο του phpMyAdmin. Αντιγράψτε το στο ριζικό φάκελο και διαγράψτε το " "φάκελο config για να το χρησιμοποιήσετε." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Επισκόπηση" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Εμφάνιση κρυφών μηνυμάτων (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Δεν υπάρχουν ρυθμισμένοι διακομιστές" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Νέος διακομιστής" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Προεπιλεγμένη γλώσσα" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "δικαίωμα επιλογής στο χρήστη" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- καμία -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Προεπιλεγμένος διακομιστής" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Τέλος γραμμής" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Προβολή" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Φόρτωση" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Ιστοσελίδα phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Δωρεά" @@ -14410,7 +14395,7 @@ msgstr "Παράβλεψη σφαλμάτων" msgid "Show form" msgstr "Εμφάνιση φόρμας" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14418,15 +14403,15 @@ msgstr "" "Η ανάγνωση της έκδοσης απέτυχε. Ίσως είστε εκτός δικτύου ή ο αναβαθμισμένος " "διακομιστής δεν αποκρίνεται." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Ελήφθει μη έγκυρη έκδοση από τον διακομιστή" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Μη αναγνώσιμος αριθμός έκδοσης" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14435,7 +14420,7 @@ msgstr "" "Χρησιμοποιείτε έκδοση Git, τρέξτε το [kbd]git pull[/kbd] :-)[br]Η τελευταία " "σταθερή έκδοση είναι %s, δημοσιεύτηκε την %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Δεν υπάρχει νεότερη σταθερή έκδοση διαθέσιμη" @@ -14448,12 +14433,12 @@ msgstr "Εσφαλμένα δεδομένα" msgid "Wrong data or no validation for %s" msgstr "Εσφαλμένα δεδομένα ή καμιά πιστοποίηση για %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Η βάση δεδομένων «%s» δεν υπάρχει." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Ο πίνακας %s υπάρχει ήδη!" @@ -14466,29 +14451,29 @@ msgstr "Εμφάνιση σκαριφήματος (σχήματος) του πί msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Γραμμή: %1$s, Στήλη: %2$s, Σφάλμα: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Δεν επιλέχθηκε εγγραφή." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Παρακολούθηση του %s ενεργοποιήθηκε." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Οι παρακολουθούμενες εκδόσεις διεγράφησαν επιτυχώς." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Δεν επιλέχθηκαν εκδόσεις." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Οι δηλώσεις SQL εκτελέστηκαν." @@ -14658,7 +14643,7 @@ msgid "List of available transformations and their options" msgstr "Κατάλογος διαθέσιμων μετατροπών και οι επιλογές τους" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Μετατροπή προβολής περιηγητή" @@ -14680,7 +14665,7 @@ msgstr "" "'α\\'β')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Μετατροπή εισαγωγής" @@ -15112,17 +15097,17 @@ msgid "Size" msgstr "Μέγεθος" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Δημιουργία" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Τελευταία ενημέρωση" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Tελευταίος έλεγχος" @@ -15164,6 +15149,12 @@ msgstr "" "Ο φυλλομετρητής σας έχει ρύθμιση phpMyAdmin για αυτό το domain. Θέλετε να το " "εισάγετε για την τρέχουσα συνεδρία;" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Διαγραφή παρακολούθησης" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Προσθήκη δικαιωμάτων στην(ις) ακόλουθη(ες) βάση(εις) δεδομένων:" @@ -15182,10 +15173,45 @@ msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη εργ msgid "Add privileges on the following table:" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Νέος" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Κανένα" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Διαγραφή των επιλεγμένων λογαριασμών χρηστών" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Όρια πόρων" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" @@ -15216,7 +15242,7 @@ msgstr "Πρόσθετο" msgid "Author" msgstr "Δημιουργός" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "Απενεργοποιημένο" @@ -15373,7 +15399,7 @@ msgstr "Μεταφραστής:" msgid "Comment:" msgstr "Σχόλιο:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Σύρτε για ανακατανομή" @@ -15410,20 +15436,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Όριο μη διακριτού κλειδιού" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+Προσθήκη περιορισμού" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Εσωτερικές συσχετίσεις" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Εσωτερική συσχέτιση" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15431,7 +15457,7 @@ msgstr "" "Μια εσωτερική συσχέτιση δεν είναι απαραίτητη όταν υπάρχει μια αντίστοιχη " "συσχέτιση FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Επιλέξτε στήλη για εμφάνιση:" @@ -15484,11 +15510,11 @@ msgstr "Αρχικό κείμενο" msgid "Replaced string" msgstr "Αντικατεστημένο κείμενο" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Αντικατάσταση" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Πρόσθετα κριτήρια αναζήτησης" @@ -15559,7 +15585,7 @@ msgid "at beginning of table" msgstr "στην αρχή του πίνακα" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Κατατμήσεις" @@ -15583,24 +15609,24 @@ msgstr "Μέγεθος δεδομένων" msgid "Index length" msgstr "Μέγεθος ευρετηρίου" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Πίνακας κατάτμησης" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Επεξεργασία κατάτμησης" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Χρήση χώρου" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Αποτελεσματικός" @@ -15625,31 +15651,31 @@ msgstr "Βελτίωση δομής πίνακα" msgid "Track view" msgstr "Προβολή παρακολούθησης" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Στατιστικά εγγραφών" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "στατικό" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "δυναμικά" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "κατατμήθηκε" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Μέγεθος γραμμής" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Μέγεθος εγγραφής" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Επόμενη αυτόματη αρίθμηση" @@ -15662,44 +15688,44 @@ msgstr "Η στήλη %s διεγράφη." msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Θέμα" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Λήψη περισσότερων θεμάτων!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Διαθέσιμοι τύποι MIME" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Διαθέσιμες μετατροπές προβολής φυλλομετρητή" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Διαθέσιμες μετατροπές εισαγωγής" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Περιγραφή" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Μεταφέροντάς σας στη σελίδα προορισμού." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Δεν έχετε αρκετά δικαιώματα να είσαστε εδώ τώρα!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Τα στοιχεία ανανεώθηκαν." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Ο κωδικός πρόσβασης είναι πολύ μεγάλος!" @@ -15768,8 +15794,12 @@ msgid "Unexpected end of CASE expression" msgstr "Μη αναμενόμενο τέλος της έκφρασης CASE" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Αναμενόταν ένα όνομα συμβόλου! Μια δεσμευμένη λέξη-κλειδί δεν μπορεί να " @@ -15792,17 +15822,17 @@ msgid "Unrecognized data type." msgstr "Μη αναγνωρισμένος τύπος δεδομένων." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Αναμενόταν μια ετικέτα." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Βρέθηκε μια ετικέτα προηγουμένως." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Μη αναμενόμενη τελεία." @@ -15854,24 +15884,24 @@ msgstr "Αναμενόταν λευκό(ά) διάστημα(τα) πριν το msgid "Expected delimiter." msgstr "Αναμενόταν διαχωριστής." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Αναμενόταν τελικό εισαγωγικό %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Αναμενόταν όνομα μεταβλητής." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Μη αναμενόμενη έναρξη δήλωσης." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Μη αναγνωρισμένος τύπος δήλωσης." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Καμιά συναλλαγή δεν ξεκίνησε προηγουμένως." @@ -15888,10 +15918,16 @@ msgstr "Μη αναμενόμενο τεκμήριο." msgid "This type of clause was previously parsed." msgstr "Αυτός ο τύπος ρύτρας έχει αναλυθεί προηγουμένως." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Μη αναγνωρισμένη λέξη κλειδί." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Μη αναμενόμενη έναρξη δήλωσης." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Αναμενόταν το όνομα της οντότητας." @@ -15928,7 +15964,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "περιορισμένο σφάλμα" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Όνομα προβολής δεν μπορεί να είναι άδειο" @@ -17264,6 +17300,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Γηγενής Πιστοποίηση MySQL" + #~ msgid "Try to connect without password." #~ msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης." diff --git a/po/en_GB.po b/po/en_GB.po index 63593c3a31..3b0f830fe4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: English (United Kingdom) Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Contribute" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Add primary key" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "A primary key has been added on %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Tracking report" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2048,264 +2053,264 @@ msgstr "" msgid "End of step" msgstr "End of line" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Done" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "No databases selected." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "The following queries have been executed:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "Add privileges on the following table:" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "No databases selected." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Save" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Hide search criteria" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Table Search" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Column names: " -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Column names: " -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maximum tables" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maximum tables" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Hide find and replace criteria" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Show find and replace criteria" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Each point represents a data row." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Hovering over a point will show its label." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "To zoom in, select a section of the plot with the mouse." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Click reset zoom button to come back to original state." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Click a data point to view and possibly edit the data row." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "The plot can be resized by dragging it along the bottom right corner." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Select two columns" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Select two different columns" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Data point content" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copy" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Point" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Inner Ring" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Outer ring:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Do you want to copy encryption key?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Encryption key" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Please select the primary key or a unique key!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Choose column to display" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2313,92 +2318,92 @@ msgstr "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Page name" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "Select page" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "Select page" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Free pages" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Select page" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Unit" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Please choose a page to edit" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "Please enter a valid number!" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Edit or export relational schema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Add an option for column \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d object(s) created." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Submit" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Press escape to cancel editing." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2406,15 +2411,15 @@ msgstr "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Drag to reorder." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Click to sort results by this column." -#: js/messages.php:581 +#: js/messages.php:582 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2427,26 +2432,26 @@ msgstr "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Control+Click to remove column from ORDER BY clause" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Click to mark/unmark." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Double-click to copy column name." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Click the drop-down arrow
to toggle column's visibility." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Show all" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2454,128 +2459,128 @@ msgstr "" "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." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Original string" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Cancel" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Aborted" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import defaults" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Log file threshold" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Print" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "You can also edit most values
by double-clicking directly on them." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "You can also edit most values
by clicking directly on them." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Go to link:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copy column name." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Right-click the column name to copy it to your clipboard." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generate" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "More" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Show Panel" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Hide Panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Show hidden navigation tree items." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "Customise main panel" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "Customise main panel" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "The requested page was not found in the history, it may have expired." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2585,31 +2590,31 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "up to date" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Create view" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Send error reports" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Submit Error Report" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2617,19 +2622,19 @@ msgstr "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Change Report Settings" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Show Report Details" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2637,7 +2642,7 @@ msgstr "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2646,69 +2651,69 @@ msgstr "" "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." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignore" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Show this query here again" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Do you really want to delete the search \"%s\"?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Executed queries" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Table comments" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Hide search results" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2717,387 +2722,407 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copy database to" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Add table prefix:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Replace table prefix" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copy table with prefix" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Prev" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Today" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "January" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "February" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "March" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "April" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "May" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "June" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "July" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "August" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "September" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "October" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "November" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Monday" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Friday" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hour" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minute" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Second" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Use text field" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "Please enter a valid number!" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Please enter a valid number!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "Please enter a valid number!" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "Please enter a valid number!" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Please enter a valid number!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Please enter a valid number!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Please enter a valid length!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "Please enter a valid number!" -#: js/messages.php:919 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "Please enter a valid number!" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Please enter a valid length!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "Please enter a valid number!" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "Please enter a valid number!" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Please enter a valid number!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Error" @@ -3159,20 +3184,20 @@ msgid "Charset" msgstr "Charset" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Collation" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binary" @@ -3369,7 +3394,7 @@ msgid "Czech-Slovak" msgstr "Czech-Slovak" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "unknown" @@ -3422,32 +3447,32 @@ msgstr "" msgid "Font size" msgstr "Font size" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Delete relation" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL Query box" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Failed to read configuration file!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3455,25 +3480,25 @@ msgstr "" "The server is not responding (or the local server's socket is not correctly " "configured)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "The server is not responding." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Please check privileges of directory containing database." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Missing parameter:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." @@ -3569,112 +3594,107 @@ msgstr "Ins:" msgid "Del:" msgstr "Del:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Submit Query" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Saved bookmarked search:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "New bookmark" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Create bookmark" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Update bookmark" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Delete bookmark" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "at least one of the words" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "all words" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "the exact phrase" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "as regular expression" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Search results for \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s match" msgstr[1] "Total: %s matches" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s match in %2$s" msgstr[1] "%1$s matches in %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Browse" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Delete the matches for the %s table?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Search in database" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Words or values to search for (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Find:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Inside tables:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Unselect All" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Inside column:" @@ -3694,30 +3714,30 @@ msgstr "Filter rows" msgid "Search this table" msgstr "Search this table" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Previous" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Next" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "End" @@ -3726,7 +3746,7 @@ msgstr "End" msgid "All" msgstr "All" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Number of rows:" @@ -3735,8 +3755,8 @@ msgstr "Number of rows:" msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3758,10 +3778,10 @@ msgstr "Sort by key" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Options" @@ -3803,29 +3823,29 @@ msgstr "Well Known Text" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "The row has been deleted." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Your SQL query has been executed successfully." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3834,75 +3854,75 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Showing rows %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d in query" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Query took %01.4f seconds." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "With selected:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Check All" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Query results operations" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Display chart" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualise GIS data" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link not found!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "None" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Convert to Kana" @@ -3910,26 +3930,26 @@ msgstr "Convert to Kana" msgid "Too many error messages, some are not displayed." msgstr "Too many error messages, some are not displayed." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Import" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Automatically send report next time" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "File was not an uploaded file." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "The uploaded file exceeds the upload_max_filesize directive in php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3937,49 +3957,49 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "File could not be read!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Error while moving uploaded file." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Cannot read (moved) upload file." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3988,28 +4008,28 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Currently running Git revision %1$s from the %2$s branch." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git information missing!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Print view" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Click on the bar to scroll to top of page" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript must be enabled past this point!" @@ -4018,20 +4038,20 @@ msgid "No index defined!" msgstr "No index defined!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indexes" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4041,59 +4061,59 @@ msgstr "Indexes" msgid "Action" msgstr "Action" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Keyname" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unique" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Packed" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Comment" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "The primary key has been dropped." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Index %s has been dropped." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Drop" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4102,19 +4122,19 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Page number:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Language" @@ -4138,11 +4158,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4161,14 +4181,15 @@ msgid "View" msgstr "View" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4177,8 +4198,8 @@ msgid "Table" msgstr "Table" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4186,45 +4207,45 @@ msgstr "Table" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Search" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Insert" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privileges" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operations" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Tracking" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4240,16 +4261,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Query" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4257,22 +4278,22 @@ msgstr "Routines" msgid "Events" msgstr "Events" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Textarea columns" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databases" @@ -4283,53 +4304,53 @@ msgid "User accounts" msgstr "User groups" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binary log" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replication" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Engines" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d row affected." msgstr[1] "%1$d rows affected." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d row deleted." msgstr[1] "%1$d rows deleted." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4377,27 +4398,27 @@ msgstr "Favourite tables" msgid "Favorites" msgstr "Favourites" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Please provide a name for this bookmarked search." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Missing information to save the bookmarked search." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "An entry with this name already exists." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Missing information to delete the search." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Missing information to load the search." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Error while loading the search." @@ -4459,7 +4480,7 @@ msgstr "Show open tables" msgid "Show slave hosts" msgstr "Show slave hosts" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Show master status" @@ -4513,70 +4534,70 @@ msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "There is no detailed status information available for this storage engine." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s has been disabled for this MySQL server." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "This MySQL server does not support the %s storage engine." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Unknown table status:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Source database `%s` was not found!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Target database `%s` was not found!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Invalid database:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Invalid table name:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Failed to rename table %1$s to %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Table %1$s has been renamed to %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Could not save table UI preferences!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4585,7 +4606,7 @@ msgstr "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4596,19 +4617,19 @@ msgstr "" "after you refresh this page. Please check if the table structure has been " "changed." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "The name of the primary key must be \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Can't rename index to PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" @@ -4928,7 +4949,7 @@ msgid "Date and time" msgstr "Date and time" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "String" @@ -4943,72 +4964,72 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Static data" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Without PHP Code" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Submit Query" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Create PHP Code" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Refresh" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profiling" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5016,63 +5037,63 @@ msgid "Edit inline" msgstr "Edit index" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Sun" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Missing parameter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Jump to database \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "The directory you set for upload work cannot be reached." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "There are no files to upload!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Empty" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Execute" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Users" @@ -5086,7 +5107,7 @@ msgstr "per minute" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per hour" @@ -5094,12 +5115,12 @@ msgstr "per hour" msgid "per day" msgstr "per day" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Search:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5107,7 +5128,7 @@ msgstr "Search:" msgid "Description" msgstr "Description" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Use this value" @@ -5148,22 +5169,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Name" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Length/Values" @@ -5174,7 +5195,7 @@ msgstr "Length/Values" msgid "Attribute" msgstr "Attributes" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5195,13 +5216,13 @@ msgstr "Add column" msgid "Select a column." msgstr "Select two columns" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "Add column" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5209,7 +5230,7 @@ msgstr "Add column" msgid "Attributes" msgstr "Attributes" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5219,26 +5240,26 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Invalid server index: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5246,20 +5267,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Error: Token mismatch" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS overwrite attempt" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "possible exploit" @@ -5875,7 +5896,7 @@ msgid "Compress on the fly" msgstr "Compress on the fly" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Configuration file" @@ -5987,13 +6008,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximum execution time" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Add %s statement" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Save as file" @@ -6003,7 +6024,7 @@ msgstr "Character set of the file" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6128,7 +6149,7 @@ msgid "Save on server" msgstr "Save on server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" @@ -6143,7 +6164,7 @@ msgid "Remember file name template" msgstr "Remember file name template" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" @@ -6152,7 +6173,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Enclose table and column names with backquotes" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" @@ -6184,7 +6205,7 @@ msgstr "Missing phpMyAdmin configuration storage tables" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Add %s" @@ -6358,7 +6379,7 @@ msgid "Customize the navigation tree." msgstr "Customise navigation panel" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servers" @@ -7301,7 +7322,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Authentication method to use." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Authentication type" @@ -8101,7 +8122,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Enable the Developer tab in settings" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Check for latest version" @@ -8109,10 +8130,10 @@ msgstr "Check for latest version" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Enables check for latest version on main phpMyAdmin page." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Version check" @@ -8264,24 +8285,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open-Document Text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Favourite List is full!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Table %s has been emptied." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "View %s has been dropped." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Table %s has been dropped." @@ -8295,12 +8316,12 @@ msgid "Position" msgstr "Position" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Event type" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server ID" @@ -8309,7 +8330,7 @@ msgid "Original position" msgstr "Original position" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Information" @@ -8323,42 +8344,42 @@ msgstr "Truncate Shown Queries" msgid "Show Full Queries" msgstr "Show Full Queries" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "No databases" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s has been created." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d database has been dropped successfully." msgstr[1] "%1$d databases have been dropped successfully." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rows" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8387,33 +8408,33 @@ msgstr "" msgid "Enable statistics" msgstr "Enable Statistics" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Server variables and settings" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Setting variable failed" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "No SQL query was set to fetch data." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "No numeric columns present in the table to plot." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "No data to display" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Table %1$s has been altered successfully." @@ -8465,7 +8486,7 @@ msgstr "The columns have been moved successfully." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Query error" @@ -8483,12 +8504,12 @@ msgstr "Change" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8509,13 +8530,13 @@ msgstr "Fulltext" msgid "Distinct values" msgstr "Distinct values" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "The %s extension is missing. Please check your PHP configuration." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "No change" @@ -8539,132 +8560,136 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Could not load import plug-ins, please check your installation!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "No Password" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Password:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Re-type:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Password Hashing:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exporting databases from the current server" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exporting tables from \"%s\" database" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exporting rows from \"%s\" table" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Export type" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "File name template:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Table name" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Create" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "File name template:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "Temp disk rate" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Updated" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Select Tables" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Export method" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Quick - display only the minimal options" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Custom - display all possible options" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Databases" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tables:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Format-specific options:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8672,52 +8697,52 @@ msgstr "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Encoding Conversion:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rows:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Dump some row(s)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Row to begin at:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Dump all rows" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Output:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Save on server in the directory %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "File name template:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ will become the server name" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ will become the database name" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ will become the table name" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8728,114 +8753,114 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "use this for future exports" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Character set of the file:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compression:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zipped" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzipped" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "View output as text" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Export views as tables" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Export table headers" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Save output to a file" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Skip tables larger than" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Select Tables" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Select Tables" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "Database name" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "New page name: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "Copy column name" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Copy column name" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plug-ins, please check your installation!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s from %2$s branch" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "no branch" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git revision:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "committed on %1$s by %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "authored on %1$s by %2$s" @@ -9301,89 +9326,89 @@ msgstr "" "Documentation and further information about PBXT can be found on the " "%sPrimeBase XT Home Page%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "The following structures have either been created or altered. Here you can:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "View a structure's contents by clicking on its name." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Change any of its settings by clicking the corresponding \"Options\" link." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Edit structure by following the \"Structure\" link." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Go to database: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Edit settings for %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Go to table: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Structure of %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Go to view: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9394,78 +9419,79 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Create an index on  %s columns" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Hide" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Function" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Because of its length,
this column might not be editable." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Or" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "web server upload directory:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edit/Insert" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "and then" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Show insert query" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Edit next row" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9474,8 +9500,8 @@ msgid "" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9486,31 +9512,31 @@ msgstr "" msgid "Value" msgstr "Value" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Structure only" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Structure and data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Data only" @@ -9521,14 +9547,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Add AUTO_INCREMENT value" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Add constraints" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9579,8 +9605,8 @@ msgstr "Procedures:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Show" @@ -9627,17 +9653,17 @@ msgid_plural "%s results found" msgstr[0] "%s other result found" msgstr[1] "%s other results found" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Clear fast filter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9653,7 +9679,7 @@ msgstr "Invalid class name \"%1$s\", using default of \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Could not save configuration" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Expand/Collapse" @@ -9672,7 +9698,7 @@ msgstr "New" msgid "Database operations" msgstr "Database operations" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Show hidden items" @@ -9771,13 +9797,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Select two columns" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Move column" msgid "No such column" @@ -10032,8 +10058,8 @@ msgid "Rename database to" msgstr "Rename database to" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10079,183 +10105,183 @@ msgstr "(singly)" msgid "Move table to (database.table)" msgstr "Move table to (database.table)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Rename table to" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Table comments" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Table options" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copy table to (database.table)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Switch to copied table" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Table maintenance" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analyse table" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Check table" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Check table" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragment table" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Table %s has been flushed." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimise table" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Repair table" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Delete data or table" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Empty the table (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Delete the table (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analyse" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Check" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimise" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Rebuild" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Repair" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Close" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Partition maintenance" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Remove partitioning" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Table %s has been moved to %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Table %s has been copied to %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "The table name is empty!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "This format has no options" @@ -10283,18 +10309,18 @@ msgstr "Show colour" msgid "Only show keys" msgstr "Only show keys" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Cannot connect: invalid settings." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10303,7 +10329,7 @@ msgstr "" "You probably did not create a configuration file. You might want to use the " "%1$ssetup script%2$s to create one." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10315,7 +10341,7 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Retry to connect" @@ -10340,15 +10366,15 @@ msgstr "Username:" msgid "Server Choice:" msgstr "Server Choice:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Entered captcha is wrong, try again!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Please enter correct captcha!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10411,7 +10437,7 @@ msgstr "Data dump options" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumping data for table" @@ -10420,7 +10446,7 @@ msgstr "Dumping data for table" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Event" @@ -10428,8 +10454,8 @@ msgstr "Event" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definition" @@ -10515,7 +10541,7 @@ msgstr "Put columns names in the first row:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -11071,7 +11097,7 @@ msgstr "Table of contents" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11494,18 +11520,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "no description" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11513,41 +11539,41 @@ msgid "" "configuration storage there." msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Master replication" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Show connected slaves" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Master configuration" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11568,19 +11594,19 @@ msgstr "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replicate all databases; Ignore:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignore all databases; Replicate:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Please select databases:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11588,7 +11614,7 @@ msgstr "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11598,72 +11624,72 @@ msgstr "" "should see a message informing you, that this server is configured as " "master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slave replication" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Insecure connection" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread not running!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread not running!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server is configured as slave in a replication process. Would you like to:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "See slave status table" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Control slave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Full start" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Full stop" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Reset slave" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Start SQL Thread only" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Stop SQL Thread only" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Start IO Thread only" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Stop IO Thread only" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Change or reconfigure master server" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11672,24 +11698,24 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Error management:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Skipping errors might lead into unsynchronised master and slave!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Skip current error" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Skip next %s errors." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11698,11 +11724,11 @@ msgstr "" "This server is not configured as master in a replication process. Would you " "like to configure it?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slave configuration" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11710,53 +11736,53 @@ msgstr "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "User name:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "User name" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Password" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Master status" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slave status" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11764,39 +11790,39 @@ msgstr "" "Only slaves started with the --report-host=host_name option are visible in " "this list." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Any host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Any user" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Use text field:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11804,78 +11830,78 @@ msgstr "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Re-type" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Generate password" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replication started successfully." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Error starting replication." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replication stopped successfully." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Error stopping replication." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replication resetting successfully." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Error resetting replication." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Success." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Error." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Unknown error" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Unable to connect to master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Unable to read master log position. Possible privilege problem on master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Unable to change master!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Master server changed successfully to %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11896,7 +11922,7 @@ msgstr "Event %1$s has been modified." msgid "Event %1$s has been created." msgstr "Event %1$s has been created." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "One or more errors have occurred while processing your request:" @@ -11905,75 +11931,75 @@ msgstr "One or more errors have occurred while processing your request:" msgid "Edit event" msgstr "Edit event" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Details" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Event name" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Change to %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Execute at" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Execute every" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "End" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "On completion preserve" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definer" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "The definer must be in the \"username@hostname\" format!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "You must provide an event name!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "You must provide a valid interval value for the event." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "You must provide a valid execution time for the event." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "You must provide a valid type for the event." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "You must provide an event definition." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Error in processing request:" @@ -11994,7 +12020,7 @@ msgstr "Event scheduler status" msgid "The backed up query was:" msgstr "The backed up query was:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Returns" @@ -12010,97 +12036,97 @@ msgstr "" "fail![/strong] Please use the improved 'mysqli' extension to avoid any " "problems." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Edit routine" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid routine type: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Routine %1$s has been created." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Sorry, we failed to restore the dropped routine." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Routine %1$s has been modified." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Routine %1$s has been modified." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Routine name" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Add parameter" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Remove last parameter" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Return length/values" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Return options" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Is deterministic" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Security type" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL data access" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "You must provide a routine name!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Invalid direction \"%s\" given for parameter." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -12108,37 +12134,37 @@ msgstr "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "You must provide a name and a type for each routine parameter." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "You must provide a valid return type for the routine." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "You must provide a routine definition." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Execution results of routine %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 row affected by the last statement inside the procedure." msgstr[1] "%d rows affected by the last statement inside the procedure." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Execute routine" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Routine parameters" @@ -12160,32 +12186,32 @@ msgstr "Trigger %1$s has been created." msgid "Edit trigger" msgstr "Edit trigger" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Trigger name" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Time" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "You must provide a trigger name!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "You must provide a valid timing for the trigger!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "You must provide a valid event for the trigger!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "You must provide a valid table name!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "You must provide a trigger definition." @@ -12312,90 +12338,90 @@ msgstr "Character Sets and Collations" msgid "Databases statistics" msgstr "Databases statistics" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "No privileges." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Allows reading data." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Allows changing data." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Allows deleting data." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Allows viewing processes of all users." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12405,128 +12431,102 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Allows creating new views." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Allows to set up events for the event scheduler." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Allows creating and dropping triggers." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "None" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "User group" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Persistent connections" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Persistent connections" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Resource limits" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Note: Setting these options to 0 (zero) removes the limit." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12534,127 +12534,120 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Routines" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Allows altering and dropping stored routines." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Allows executing stored routines." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Note: MySQL privilege names are expressed in English." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administration" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Global privileges" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie authentication" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon authentication" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Cookie authentication" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Login Information" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Use text field" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12662,150 +12655,150 @@ msgstr "" "An account already exists with the same username but possibly a different " "hostname." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "User name:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Log name" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Do not change the password" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Authentication" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Password Hashing:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "You have revoked the privileges for %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Add user group" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Database for user" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Create database with same name and grant all privileges." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Grant all privileges on wildcard name (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Grant all privileges on database \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Users having access to \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "User has been added." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "No user found." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Any" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "database-specific" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "table-specific" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Edit Privileges:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Revoke" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Edit user group" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… keep the old one." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… delete the old one from the user tables." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoke all active privileges from the old one and delete it afterwards." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12813,121 +12806,106 @@ msgstr "" "… delete the old one from the user tables and reload the privileges " "afterwards." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Change Login Information / Copy User" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Create a new user with the same privileges and …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Column-specific privileges" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Remove selected users" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "User group" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Revoke all active privileges from the users and delete them afterwards." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Drop the databases that have the same names as the users." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privileges for %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "User" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "New" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Edit Privileges:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "User group" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Users overview" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12940,7 +12918,7 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12959,11 +12937,11 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "You have added a new user." @@ -13274,12 +13252,12 @@ msgstr "Command" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filters" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13302,12 +13280,12 @@ msgstr "per minute:" msgid "per second:" msgstr "per second:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13331,7 +13309,7 @@ msgstr "Show unformatted values" msgid "Related links:" msgstr "Related links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13339,11 +13317,11 @@ msgstr "" "The number of connections that were aborted because the client died without " "closing the connection properly." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of failed attempts to connect to the MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13353,17 +13331,17 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "The number of connection attempts (successful or not) to the MySQL server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13375,11 +13353,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13387,7 +13365,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13395,7 +13373,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13403,23 +13381,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13429,7 +13407,7 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13439,7 +13417,7 @@ msgstr "" "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13447,7 +13425,7 @@ msgstr "" "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." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13457,7 +13435,7 @@ msgstr "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13465,7 +13443,7 @@ msgstr "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimise ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13477,7 +13455,7 @@ msgstr "" "probably have a lot of queries that require MySQL to scan whole tables or " "you have joins that don't use keys properly." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13489,36 +13467,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "The number of free pages." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13528,7 +13506,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13540,11 +13518,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13552,7 +13530,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13560,11 +13538,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13572,7 +13550,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13586,51 +13564,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "The total number of data reads." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "The total number of data writes." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13638,35 +13616,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "The number of log write requests." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Pending log file writes." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "The number of pages created." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13674,51 +13652,51 @@ msgstr "" "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." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "The number of pages read." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "The number of pages written." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13726,7 +13704,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13734,7 +13712,7 @@ msgstr "" "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." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13744,15 +13722,15 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage of used key cache (calculated value)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13762,7 +13740,7 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13770,21 +13748,21 @@ msgstr "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage of physical writes compared to write requests (calculated value)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13794,7 +13772,7 @@ msgstr "" "optimiser. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13802,11 +13780,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13814,19 +13792,19 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "The number of files that are open." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13836,19 +13814,19 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "The number of cache hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13860,7 +13838,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13868,19 +13846,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13888,11 +13866,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13900,7 +13878,7 @@ msgstr "" "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.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13908,15 +13886,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13924,11 +13902,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13936,13 +13914,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13952,23 +13930,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13980,7 +13958,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13990,11 +13968,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14006,11 +13984,11 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Thread cache hit rate (calculated value)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -14039,37 +14017,37 @@ msgstr "Database level tabs" msgid "Table level tabs" msgstr "Table level tabs" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "View users" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Add user group" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Edit user group: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "User group menu assignments" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Group name:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Server-level tabs" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Database-level tabs" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Table-level tabs" @@ -14175,7 +14153,7 @@ msgstr "Run SQL query/queries on database %s" msgid "Run SQL query/queries on table %s" msgstr "Run SQL query/queries on database %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Clear" @@ -14263,114 +14241,114 @@ msgstr "Deactivate now" msgid "Version" msgstr "Version" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Created" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Updated" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Create version" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Tracking report" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Structure snapshot" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "active" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "not active" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Tracking statements" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Delete tracking data row from report" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "No data" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL dump (file download)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL dump" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "This option will replace your table and contained data." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL execution" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Export as %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Data manipulation statement" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Data definition statement" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Date" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Username" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL code)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "None" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Tracking data definition successfully deleted" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking data manipulation successfully deleted" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14378,64 +14356,64 @@ msgstr "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Comment out these two lines if you do not need them." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL statements exported. Please copy the dump or execute it." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking report for table `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking for %1$s was activated at version %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking for %1$s was deactivated at version %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Create version %1$s of %2$s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s was created, tracking for %2$s is active." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Untracked tables" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Track table" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tracked tables" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Last version" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Deleting tracking data" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versions" @@ -14443,7 +14421,7 @@ msgstr "Versions" msgid "Manage your settings" msgstr "Manage your settings" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Configuration has been saved." @@ -14469,7 +14447,7 @@ msgstr "Error in ZIP archive:" msgid "No files found inside ZIP archive!" msgstr "No files found inside ZIP archive!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fatal error: The navigation can only be accessed via AJAX" @@ -14477,57 +14455,57 @@ msgstr "Fatal error: The navigation can only be accessed via AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Cannot save settings, submitted form contains errors!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Missing phpMyAdmin configuration storage tables" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Could not import configuration" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Configuration contains incorrect data for some fields." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Do you want to import remaining settings?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Saved on: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Import from file" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Import from browser's storage" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Settings will be imported from your browser's local storage." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "You have no saved settings!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "This feature is not supported by your web browser" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Merge with current configuration" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14536,25 +14514,25 @@ msgstr "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Save as file" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Save to browser's storage" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Settings will be saved in your browser's local storage." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Existing settings will be overwritten!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "You can reset all your settings and restore them to default values." @@ -14562,46 +14540,46 @@ msgstr "You can reset all your settings and restore them to default values." msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "No Privileges" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Download" @@ -14609,11 +14587,11 @@ msgstr "Download" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Cannot load or save configuration" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14623,7 +14601,7 @@ msgstr "" "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14631,24 +14609,27 @@ msgstr "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Insecure connection" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuration saved." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14656,61 +14637,61 @@ msgstr "" "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." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Configuration saved." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Overview" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Show hidden messages (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "There are no configured servers" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "New server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Default language" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "let the user choose" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- none -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Default server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "End of line" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Display" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Load" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin homepage" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Donate" @@ -14746,7 +14727,7 @@ msgstr "Ignore errors" msgid "Show form" msgstr "Show form" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14754,15 +14735,15 @@ msgstr "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Got invalid version string from server" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Unparsable version string" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14771,7 +14752,7 @@ msgstr "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "No newer stable version is available" @@ -14784,12 +14765,12 @@ msgstr "Wrong data" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database does not exist." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" @@ -14802,35 +14783,35 @@ msgstr "View dump (schema) of table" msgid "Invalid table name" msgstr "Invalid table name" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "No rows selected" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Tracking of %s is activated." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "The selected users have been deleted successfully." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "No rows selected" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL statements executed." @@ -15040,7 +15021,7 @@ msgid "List of available transformations and their options" msgstr "List of available transformations and their options" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15066,7 +15047,7 @@ msgstr "" "'\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15588,17 +15569,17 @@ msgid "Size" msgstr "Size" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Creation" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Last update" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Last check" @@ -15643,6 +15624,12 @@ msgstr "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Deleting tracking data" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database:" @@ -15663,10 +15650,46 @@ msgstr "Add privileges on the following table:" msgid "Add privileges on the following table:" msgstr "Add privileges on the following table:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "New" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "None" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Remove selected users" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Revoke all active privileges from the users and delete them afterwards." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Drop the databases that have the same names as the users." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Column-specific privileges" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Resource limits" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Note: Setting these options to 0 (zero) removes the limit." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Select binary log to view" @@ -15699,7 +15722,7 @@ msgstr "Plug-in" msgid "Author" msgstr "Author" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "disabled" @@ -15866,7 +15889,7 @@ msgstr "User:" msgid "Comment:" msgstr "Comment:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15906,22 +15929,22 @@ msgstr "" msgid "Foreign key constraint" msgstr "Foreign key constraint" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Add constraints" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Internal relations" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Internal relation" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15929,7 +15952,7 @@ msgstr "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Choose column to display:" @@ -15985,11 +16008,11 @@ msgstr "Original string" msgid "Replaced string" msgstr "Replaced string" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Replace" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Additional search criteria" @@ -16068,7 +16091,7 @@ msgid "at beginning of table" msgstr "At Beginning of Table" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16104,28 +16127,28 @@ msgstr "Row length" msgid "Index length" msgstr "Row length" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "partitioned" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Remove partitioning" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Edit view" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Space usage" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effective" @@ -16154,31 +16177,31 @@ msgstr "Propose table structure" msgid "Track view" msgstr "Track table" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Row statistics" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "static" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamic" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partitioned" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Row length" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Row size" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Next autoindex" @@ -16191,50 +16214,50 @@ msgstr "Column %s has been dropped." msgid "Click to toggle" msgstr "Click to toggle" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Theme" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Get more themes!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Available MIME types" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Available transformations" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Available transformations" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Description" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Tracking report" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "The profile has been updated." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16312,7 +16335,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16337,19 +16360,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "No databases selected." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16412,29 +16435,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Event %1$s has been created." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Table name template" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "At Beginning of Table" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16453,10 +16476,16 @@ msgstr "Unexpected characters on line %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "At Beginning of Table" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16503,7 +16532,7 @@ msgstr "" msgid "strict error" msgstr "Gather errors" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17808,6 +17837,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is set to 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Cookie authentication" + #~ msgid "Try to connect without password." #~ msgstr "Try to connect without password." diff --git a/po/eo.po b/po/eo.po index 39c1344cfe..c57b8cd446 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-05-03 00:36+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Esperanto Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Daŭrigi" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Farita" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Paŝo" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Konservi" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimuma valoro:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maksimuma valoro:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignori" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopii" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkto" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrio" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Ĉifroŝlosilo" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Elekti fremdan ŝlosilon" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Konservi paĝon" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Konservi paĝon kiel" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Malfermi paĝon" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Forigi paĝon" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sentitola" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "nuligi" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Presi" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generi pasvorton" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generi" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2322,105 +2327,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2429,349 +2434,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "hodiaŭ" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "januaro" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "februaro" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "marto" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "aprilo" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "majo" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "junio" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "julio" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "aŭgusto" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "septembro" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktobro" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "novembro" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "decembro" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "aŭg" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "dimanĉo" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "lundo" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "mardo" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "merkredo" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "ĵaŭdo" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "vendredo" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "sabato" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "dim" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "lun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "mar" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "mer" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "ĵaŭ" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "ven" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "lu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "me" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "ĵa" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "ve" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "neniu" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Horo" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuto" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekundo" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Eraro" @@ -2832,20 +2857,20 @@ msgid "Charset" msgstr "Signaro" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Duuma" @@ -3040,7 +3065,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nekonata" @@ -3088,48 +3113,48 @@ msgstr "" msgid "Font size" msgstr "Tipara grando" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detaloj…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3223,110 +3248,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nova legosigno" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Krei legosignon" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Ĝisdatigi legosignon" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Forigi legosignon" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Foliumi" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Trovi:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3346,30 +3366,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3378,7 +3398,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3387,8 +3407,8 @@ msgstr "" msgid "Sort by key" msgstr "Ordigi per ŝlosilo" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3410,10 +3430,10 @@ msgstr "Ordigi per ŝlosilo" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opcioj" @@ -3453,102 +3473,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Neniu" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3556,97 +3576,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Raporti" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3655,20 +3675,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksoj" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3678,78 +3698,78 @@ msgstr "Indeksoj" msgid "Action" msgstr "Ago" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komento" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Forigi" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Lingvo" @@ -3773,11 +3793,11 @@ msgstr "Servilo" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3796,14 +3816,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3812,8 +3833,8 @@ msgid "Table" msgstr "Tabelo" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3821,45 +3842,45 @@ msgstr "Tabelo" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Serĉi" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacioj" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3875,16 +3896,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Peto" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3892,20 +3913,20 @@ msgstr "" msgid "Events" msgstr "Eventoj" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Datumbazoj" @@ -3914,53 +3935,53 @@ msgid "User accounts" msgstr "Uzantkontoj" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikado" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabloj" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Signaroj" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Moduloj" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Kromprogramoj" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4008,27 +4029,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4090,7 +4111,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4144,76 +4165,76 @@ msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutoj" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4221,19 +4242,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4500,7 +4521,7 @@ msgid "Date and time" msgstr "Dato kaj tempo" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Ĉeno" @@ -4515,126 +4536,126 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimuma: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statika analizo:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL diris: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Krei PHP-kodon" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "dim" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s tagoj, %s horoj, %s minutoj kaj %s sekundoj" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Plenumi" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Uzantoj" @@ -4648,7 +4669,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4656,12 +4677,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Serĉi:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4669,7 +4690,7 @@ msgstr "Serĉi:" msgid "Description" msgstr "Priskribo" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Uzi ĉi tiun valoron" @@ -4706,22 +4727,22 @@ msgstr "JES" msgid "NO" msgstr "NE" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nomo" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4730,7 +4751,7 @@ msgstr "" msgid "Attribute" msgstr "Atributo" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4747,11 +4768,11 @@ msgstr "Aldoni kolumnon" msgid "Select a column." msgstr "Elekti kolumnon." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Aldoni novan kolumnon" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4759,33 +4780,33 @@ msgstr "Aldoni novan kolumnon" msgid "Attributes" msgstr "Atributoj" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Servilo %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4793,20 +4814,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5333,7 +5354,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5433,12 +5454,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Konservi kiel dosieron" @@ -5448,7 +5469,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5573,7 +5594,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5586,7 +5607,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5595,7 +5616,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5625,7 +5646,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Aldoni %s" @@ -5791,7 +5812,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serviloj" @@ -6622,7 +6643,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7259,7 +7280,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7267,10 +7288,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7405,24 +7426,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7436,12 +7457,12 @@ msgid "Position" msgstr "Pozicio" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7450,7 +7471,7 @@ msgid "Original position" msgstr "Originala pozicio" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informo" @@ -7464,42 +7485,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Vicoj" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7524,32 +7545,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7592,7 +7613,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7609,12 +7630,12 @@ msgstr "Ŝanĝi" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indekso" @@ -7635,13 +7656,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7661,165 +7682,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Pasvorto:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Eksporti ŝablonojn:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nova ŝablono:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Krei" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Ŝablono:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Ĝisdatigi" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Elekti ŝablonon" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Datumbazoj:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabeloj:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7827,98 +7852,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Elekti datumbazon" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Elekti tabelon" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8315,86 +8340,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8405,84 +8430,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Kaŝi" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcio" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Aŭ" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8493,31 +8519,31 @@ msgstr "" msgid "Value" msgstr "Valoro" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8526,14 +8552,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Aldoni limigojn" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8578,8 +8604,8 @@ msgstr "Proceduroj:" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Montri" @@ -8620,17 +8646,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8645,7 +8671,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Etendi/maletendi" @@ -8664,7 +8690,7 @@ msgstr "Nova" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8763,11 +8789,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9001,8 +9027,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9046,177 +9072,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Ripari tabelon" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizi" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Ripari" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9243,25 +9269,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Bonvenon al %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9269,7 +9295,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9294,15 +9320,15 @@ msgstr "Uzantnomo:" msgid "Server Choice:" msgstr "Elekti servilon:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9363,7 +9389,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9372,7 +9398,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Evento" @@ -9380,8 +9406,8 @@ msgstr "Evento" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9467,7 +9493,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9962,7 +9988,7 @@ msgstr "Tabelo de enhavo" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10282,57 +10308,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10341,293 +10367,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Uzantnomo:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Uzantnomo" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Pasvorto" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variablo" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Eraro." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Nekonata eraro" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10648,7 +10674,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10657,75 +10683,75 @@ msgstr "" msgid "Edit event" msgstr "Redakti eventon" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detaloj" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10746,7 +10772,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10758,132 +10784,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10905,32 +10931,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11046,565 +11072,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Neniu" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256-a pasvorta aŭtentigo" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Gastignomo:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Gastignomo" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Aldoni uzantkonton" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Datumbazo por uzantkonto" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Forigi elektitajn uzantkontojn" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Uzanto" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nova" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Uzantkonto" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11613,7 +11596,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11622,11 +11605,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11893,12 +11876,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11919,12 +11902,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -11948,33 +11931,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11982,78 +11965,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12061,7 +12044,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12069,42 +12052,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12112,33 +12095,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12147,242 +12130,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12390,99 +12373,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12490,18 +12473,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12509,11 +12492,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12542,37 +12525,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Grupnomo:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12667,7 +12650,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Vakigi" @@ -12752,172 +12735,172 @@ msgstr "" msgid "Version" msgstr "Versio" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Kreita" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Ĝisdatigita" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Forigi version" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktiva" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "malaktiva" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Eksporti kiel %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Dato" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Uzantnomo" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Neniu" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Lasta versio" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versioj" @@ -12925,7 +12908,7 @@ msgstr "Versioj" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12949,7 +12932,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12957,80 +12940,80 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Konservi kiel dosieron" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13038,45 +13021,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Elŝuti" @@ -13084,97 +13067,96 @@ msgstr "Elŝuti" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nova servilo" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Defaŭlta lingvo" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- neniu -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Defaŭlta servilo" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13210,28 +13192,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13244,12 +13226,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13262,29 +13244,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13450,7 +13432,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13468,7 +13450,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13896,17 +13878,17 @@ msgid "Size" msgstr "Grando" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13941,6 +13923,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "More settings" +msgid "Delete settings " +msgstr "Pli agordoj" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13957,10 +13945,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nova" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Neniu" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Forigi elektitajn uzantkontojn" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13991,7 +14012,7 @@ msgstr "Kromprogramo" msgid "Author" msgstr "Aŭtoro" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "malŝaltita" @@ -14145,7 +14166,7 @@ msgstr "Analizilo:" msgid "Comment:" msgstr "Komento:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14177,26 +14198,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Aldoni limigon" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14249,11 +14270,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14322,7 +14343,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14346,24 +14367,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14388,31 +14409,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14425,44 +14446,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Etoso" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Priskribo" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14532,7 +14553,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14553,17 +14574,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14615,24 +14636,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14649,10 +14670,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14689,7 +14714,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/es.po b/po/es.po index 79f589f8c8..931ed4b089 100644 --- a/po/es.po +++ b/po/es.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" -"PO-Revision-Date: 2016-11-18 10:30+0000\n" -"Last-Translator: Michal Čihař \n" -"Language-Team: Spanish " -"\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" +"PO-Revision-Date: 2016-12-13 09:29+0000\n" +"Last-Translator: Laura Arjona Reina \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,31 +27,31 @@ msgstr "" "El archivo %s no está disponible en este sistema, visite www.phpmyadmin.net " "para más información." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "La lista central de columnas para la base de datos actual está vacía." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Pulsar para ordenar." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Mostrando fila(s) %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Comentario de la base de datos" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Comentarios de la tabla:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -63,13 +63,13 @@ msgstr "Comentarios de la tabla:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -80,9 +80,9 @@ msgstr "Comentarios de la tabla:" msgid "Column" msgstr "Columna" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -93,12 +93,12 @@ msgstr "Columna" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -110,9 +110,9 @@ msgstr "Columna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -123,15 +123,15 @@ msgstr "Tipo" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nulo" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -142,14 +142,14 @@ msgstr "Nulo" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Predeterminado" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -159,7 +159,7 @@ msgstr "Predeterminado" msgid "Links to" msgstr "Enlaces a" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -173,19 +173,19 @@ msgstr "Enlaces a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primaria" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -193,13 +193,13 @@ msgstr "Primaria" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -207,17 +207,17 @@ msgstr "Primaria" msgid "No" msgstr "No" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -226,13 +226,13 @@ msgstr "No" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -244,15 +244,15 @@ msgstr "Sí" msgid "View dump (schema) of database" msgstr "Ver el volcado (esquema) de la base de datos" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "No se han encontrado tablas en la base de datos." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -261,8 +261,8 @@ msgid "Tables" msgstr "Tablas" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -270,10 +270,10 @@ msgstr "Tablas" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,27 +286,27 @@ msgstr "Estructura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Datos" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Seleccionar todo" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Se renombró la base de datos %1$s a %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Se copió la base de datos %1$s a %2$s." @@ -319,27 +319,27 @@ msgstr "" "El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. " "%sAverigüe por qué%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "¡Debe elegir al menos una columna para mostrar!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cambiar al %sconstructor visual%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "¡Acceso denegado!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Datos de seguimiento eliminados satisfactoriamente." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -347,11 +347,11 @@ msgstr "" "Se ha creado la versión %1$s de las tablas seeccionadas, se ha activado su " "seguimiento." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "No se han seleccionado tablas." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Registro de la base de datos" @@ -391,131 +391,131 @@ msgstr "¡Tipo erróneo!" msgid "Bad parameters!" msgstr "¡Parámetros incorrectos!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor para la columna \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilizar OpenStreetMaps como capa base" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometría %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punto:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Agregar un punto" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Cadena de líneas %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Círculo exterior:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Círculo interior %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Agregar una cadena de líneas" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Agregar un círculo interior" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polígono %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Agregar un polígono" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Agregar geometría" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Continuar" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Salida" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -523,19 +523,19 @@ msgstr "" "Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena " "ubicada debajo en el campo \"Valor\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Exitoso" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "falló" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Parámetros incompletos" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -544,15 +544,15 @@ msgstr "" "Probablemente intentó cargar un archivo demasiado grande. Revise %sla " "documentation%s para hallar modos de superar esta limitación." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "El favorito ha sido borrado." -#: import.php:489 +#: import.php:486 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 " @@ -562,24 +562,24 @@ msgstr "" "el tamaño del archivo excedió el máximo permitido por su configuración PHP. " "Ver [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "No se pudieron cargar los plugins de importación. ¡Revise su instalación!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Se creó el favorito %s." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importación ejecutada exitosamente, %d consulta ejecutada." msgstr[1] "Importación ejecutada exitosamente, %d consultas ejecutadas." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -588,7 +588,7 @@ msgstr "" "Tiempo de ejecución del script agotado; si desea completar la importación, " "%sreenvíe el mismo archivo%s y la importación continuará." -#: import.php:632 +#: import.php:629 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." @@ -597,7 +597,7 @@ msgstr "" "usualmente significa que phpMyAdmin no será capaz de completar esta " "importación a menos que usted incremente el tiempo de ejecución de php." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." @@ -605,17 +605,17 @@ msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." msgid "Could not load the progress of the import." msgstr "No se pudo cargar el progreso de la importación." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Volver" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Servidor phpMyAdmin de demostración" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -626,107 +626,107 @@ msgstr "" "aquí, pero no modifique los usuarios root, debian-sys-maint y pma. Puede " "encontrar más información en %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Configuraciones generales" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Cambio de contraseña" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Cotejamiento de la conexión al servidor" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Configuraciones de apariencia" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Más configuraciones" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Servidor de base de datos" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Servidor:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Tipo de servidor:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Versión del servidor:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Versión del protocolo:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Usuario:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Conjunto de caracteres del servidor:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Servidor web" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Versión del cliente de base de datos:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "extensión PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Versión de PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Acerca de esta versión:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentación" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Página oficial de phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Contribuir" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Obtener soporte" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista de cambios" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licencia" -#: index.php:443 +#: index.php:444 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 " @@ -736,7 +736,7 @@ msgstr "" "tipografía multibyte. phpMyAdmin no puede cortar correctamente las cadenas " "de caracteres sin la extensión mbstring y podría dar resultados inesperados." -#: index.php:458 +#: index.php:459 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." @@ -745,7 +745,7 @@ msgstr "" "Debido a esto están deshabilitadas algunas funciones como la verificación de " "versión o la presentación de informes de error." -#: index.php:473 +#: index.php:474 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 " @@ -757,7 +757,7 @@ msgstr "" "que la validez de la cookie configurada en phpMyAdmin. Por ello, la sesión " "expirará antes de lo configurado en phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -766,17 +766,18 @@ msgstr "" "de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes " "de lo configurado en phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "El archivo de configuración ahora necesita una frase secreta " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" +"La frase secreta en la configuración (blowfish_secret) es demasiado corta." -#: index.php:528 +#: index.php:529 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 " @@ -789,7 +790,7 @@ msgstr "" "seguridad de su servidor cuando personas no autorizadas descarguen su " "configuración." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -799,14 +800,14 @@ msgstr "" "configurado, algunas funcionalidades extendidas fueron deshabilitadas. " "%sAverigüe por qué%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "
O, de modo alternativo, utilizar la pestaña «Operaciones» de cualquier " "base de datos para configurarlo allí." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -815,7 +816,7 @@ msgstr "" "Su versión de librería PHP MySQL %s es distinta de aquella de su versión de " "servidor MySQL %s. Esto puede ocasionar un comportamiento impredecible." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -983,7 +984,7 @@ msgid "Save & close" msgstr "Guardar y Cerrar" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Reiniciar" @@ -1015,7 +1016,7 @@ msgstr "Agregar índice" msgid "Edit index" msgstr "Editar Índice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Agregar %s columna(s) al índice" @@ -1040,10 +1041,10 @@ msgstr "Seleccione la(s) columna(s) para el índice." msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Previsualizar SQL" @@ -1055,7 +1056,7 @@ msgstr "Simular consulta" msgid "Matched rows:" msgstr "Filas encontradas:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "consulta SQL:" @@ -1072,13 +1073,13 @@ msgstr "¡El nombre del servidor está vacío!" msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" @@ -1086,8 +1087,8 @@ msgstr "¡Las contraseñas no coinciden!" msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Cerrar" @@ -1109,19 +1110,19 @@ msgstr "Plantilla borrada." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Otro" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1227,40 +1228,40 @@ msgid "Processes" msgstr "Procesos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1281,7 +1282,7 @@ msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configuración" @@ -1295,16 +1296,16 @@ msgid "Please add at least one variable to the series!" msgstr "¡Introduzca una longitud válida!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Ninguna" @@ -1503,20 +1504,20 @@ msgstr "Analizando…" msgid "Explain output" msgstr "Explicar salida" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Estado actual" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Tiempo" @@ -1605,10 +1606,10 @@ msgstr "" "Reiniciando a configuración predeterminada…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importar" @@ -1681,7 +1682,7 @@ msgstr "¡Sin parámetros encontrados!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Ajustes de página relacionada" @@ -1721,8 +1722,8 @@ msgid "Error text: %s" msgstr "Texto de error: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." @@ -1760,7 +1761,7 @@ msgstr "Copiando base de datos" msgid "Changing charset" msgstr "Cambiando el juego de caracteres" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Habilite la revisión de las claves foráneas" @@ -1788,73 +1789,79 @@ msgstr "Examinando" msgid "Deleting" msgstr "Borrando" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "¿Eliminar las coincidencias para la tabla %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "¡La definición de una función almacenada debe contener una sentencia RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exportar" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" +"No se puede exportar ninguna rutina. Quizá falten los privilegios necesarios." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Valores para la columna %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Valores para una nueva columna" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Introducir cada valor en un campo separado." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Agregar %d valor(es)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: si la fila contiene múltiples tablas, van a ser combinadas en una." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Ocultar ventana de consultas SQL" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1862,53 +1869,53 @@ msgstr "Mostrar ventana de consultas SQL" msgid "Edit" msgstr "Editar" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Borrar" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Sin consultas almacenadas automáticamente" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Elegir" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Selección de columnas" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Buscar en esta lista" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1918,15 +1925,15 @@ msgstr "" "columnas para la base de datos %s tenga columnas que no estén en la tabla " "actual." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Más" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "¿Está seguro?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1934,51 +1941,51 @@ msgstr "" "Esta acción puede cambiar la definición de algunas columnas.
¿Está " "seguro que desea continuar?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continuar" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Agregar clave primaria" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Se agregó la clave primaria." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Llevándolo al siguiente paso…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Se completó el primer paso de la normalización para la tabla '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Final de los pasos" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Segundo paso de normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Terminado" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirmar dependencias parciales" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Las dependencias parciales seleccionadas son:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1986,21 +1993,21 @@ msgstr "" "Nota: «a, b -> d, f» implica que los valores combinados de las columnas a y " "b pueden determinar el valor de las columnas d y f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "¡No se seleccionaron dependencias parciales!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostrar las posibles dependencias parciales basadas en los datos actuales de " "la tabla" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Esconder lista de dependencias parciales" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2008,180 +2015,184 @@ msgstr "" "¡Paciencia! Puede tomar unos segundos, dependiendo del tamaño de los datos y " "la cantidad de columnas de la tabla." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Paso" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Se realizarán las siguientes acciones:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnas %s de la tabla %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Crear la siguiente tabla" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tercer paso de la normalización (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Confirmar dependencias transitivas" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Las dependencias seleccionadas son:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "¡No se seleccionaron dependencias!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Guardar" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Ocultar criterio de búsqueda" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Búsqueda por rango" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Máximo de las columnas:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Mínimo de las columnas:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Ocultar criterio de búsqueda y reemplazo" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Mostrar criterio de búsqueda y reemplazo" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Cada punto representa una fila de datos." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, seleccione el gráfico." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Pulse el botón de restaurar ampliación para volver al estado original." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Pulse en un punto de datos para ver y posiblemente editar la fila de datos." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "El gráfico puede redimensionarse arrastrando la esquina inferior derecha." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Seleccionar dos columnas" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Seleccionar dos columnas distintas" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Contenido del punto de datos" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copiar" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punto" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Cadena de líneas" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometría" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Círculo interior" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Círculo exterior" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "¿Desea copiar la llave de cifrado?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Llave de cifrado" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" +"MySQL acepta valores adicionales que no se pueden seleccionar en el " +"deslizador; introduzca esos valores directamente si lo desea" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" +"MySQL acepta valores adicionales que no se pueden seleccionar en el " +"calendario; introduzca esos valores directamente si lo desea" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2189,24 +2200,24 @@ msgstr "" "Indica que ha realizado cambios en esta página; se le pedirá confirmación " "antes de abandonar los cambios" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "¡Seleccione la clave primaria o una clave única!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Elegir la columna a mostrar" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2214,76 +2225,76 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nombre de página" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Guardar página" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Guardar página como" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir página" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Borrar página" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sin título" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Seleccione una página para continuar" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Introduzca un nombre de página válido" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "¿Desea guardar los cambios en la página actual?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Página eliminada exitosamente" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Añadir una opción para la columna «%s»." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) creado(s)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Enviar" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Presione la tecla de escape para cancelar la edición." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2291,15 +2302,15 @@ msgstr "" "Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta " "página sin guardar los datos?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Arrastrar para reordenar." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Pulse para ordenar los resultados según esta columna." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2309,28 +2320,28 @@ msgstr "" "intercambiar entre ASC/DESC.
- Pulsar Ctrl+Click o Alt+Click (Mac: Shift" "+Option+Click) para eliminar la columna de la cláusula «ORDER BY»" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Pulsar para marcar/desmarcar." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Haga doble click para copiar el nombre de la columna." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Pulsa la flecha de la lista desplegable
para conmutar la visibilidad " "de la columna." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2339,13 +2350,13 @@ msgstr "" "la edición de la grilla y los enlaces de copiado, eliminación y edición " "pueden no funcionar luego de guardar." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Introduzca una cadena hexadecimal válida. Los carácteres válidos son 0-9 y A-" "F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2353,106 +2364,106 @@ msgstr "" "¿Realmente desea ver todas las filas? Una tabla grande podría afectar el " "funcionamiento del navegador." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Longitud original" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "cancelar" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Éxito" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Estado de la importación" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Suelte aquí los archivos" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Seleccionar base de datos primero" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "También puede editar la mayoría de los valores
con un pulsado doble " "directamente en su contenido." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Puede editar la mayoría de los valores
pulsando directamente en su " "contenido." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Ir al enlace:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copie el nombre de la columna." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Haga click con el botón derecho sobre la columna para copiarla en el " "portapapeles." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generar" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Más" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Mostrar panel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Ocultar panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Mostrar los elementos escondidos del árbol de navegación." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Enlace al panel principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Deshacer enlace en el panel principal" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La página solicitada no se encontró en el historial, puede haber expirado." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2462,42 +2473,42 @@ msgstr "" "la obtenga. La versión más reciente es %s, y existe desde el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "actualizada" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Crear vista" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Enviar informe de error" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Enviar informe de error" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Ocurrió un error fatal en JavaScript. ¿Desearía enviar un reporte de error?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Cambiar configuraciones del informe" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Mostrar detalles del informe" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2505,7 +2516,7 @@ msgstr "" "¡La exportación está incompleta debido a un límite en el tiempo de ejecución " "demasiado bajo a nivel de PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2515,59 +2526,59 @@ msgstr "" "enviarlo se podrían ignorar algunos campos debido a la configuración " "«max_input_vars» de PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "¡Se detectaron algunos errores en el servidor!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Revise el pie de esta ventana." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorar todos" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Un momento, se están enviando en este momento debido a su configuración." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "¿Ejecutar esta consulta nuevamente?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "¿Realmente desea eliminar este favorito?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Ocurrió un error al obtener información de depuración SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas ejecutadas %s veces en %s segundos." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) correcto(s)" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Mostrar argumentos" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Ocultar argumentos" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Tiempo necesario:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2583,349 +2594,369 @@ msgstr "" "Safari, este problema es causado comúnmente por la \"Navegación en modo " "privado\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Copiar tablas a" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Agregar prefijo a la tabla" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Reemplazar tabla con el prefijo" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabla con prefijo" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hoy" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Enero" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Febrero" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Marzo" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Abril" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mayo" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Junio" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Julio" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Agosto" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Septiembre" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Octubre" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Noviembre" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dic" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Lunes" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Viernes" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hora" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuto" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Segundo" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Este campo es requerido" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Corrige este campo" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Ingrese un correo electrónico válido" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Ingrese una URL válida" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Ingrese una fecha válida" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Ingrese una fecha ( ISO ) válida" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Ingrese un número válido" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Ingrese un número de tarjeta de crédito valido" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Ingrese solo dígitos" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Ingrese el mismo valor de nuevo" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Ingrese no más de {0} caracteres" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Ingrese al menos {0} caracteres" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ingrese un valor entre {0} y {1} caracteres de largo" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Ingrese un valor entre {0} y {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Ingrese un valor menor o igual a {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Ingrese un valor mayor o igual a {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Ingrese una fecha u hora válida" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Ingrese una entrada HEX válida" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Error" @@ -2958,6 +2989,7 @@ msgstr "No se pudo dar formato a una cadena para la regla '%s'." #, php-format msgid "Error in reading file: The file '%s' does not exist or is not readable!" msgstr "" +"Error al leer el archivo: ¡El archivo '%s' no existe o no se puede leer!" #: libraries/Advisor.php:494 #, php-format @@ -2990,20 +3022,20 @@ msgid "Charset" msgstr "Juego de caracteres" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Cotejamiento" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binario" @@ -3198,7 +3230,7 @@ msgid "Czech-Slovak" msgstr "Checo-Eslovaco" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "desconocido" @@ -3252,26 +3284,26 @@ msgstr "" msgid "Font size" msgstr "Tamaño de fuente" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Mostrando %1$d favorito (privados y compartidos)" msgstr[1] "Mostrando %1$d favoritos (privados y compartidos)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Ningún favorito" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Consola de consultas SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "¡Fallo al definir la conexión de colacion configurada!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3279,25 +3311,25 @@ msgstr "" "El servidor no está respondiendo (o el zócalo local al servidor MySQL no " "está configurado correctamente)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "El servidor no está respondiendo." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Revisa los permisos del directorio que contiene la base de datos." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalles…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Parámetro faltante:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La conexión para controluser, como está definida en su configuración, " @@ -3393,57 +3425,57 @@ msgstr "Agregar:" msgid "Del:" msgstr "Borrar:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Consulta a la base de datos %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Ejecutar la consulta" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Búsquedas favoritas guardadas:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nuevo favorito" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Crear favorito" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Actualizar favorito" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Eliminar favorito" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "al menos una de estas palabras" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "Todas las palabras" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "La frase exacta" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "como expresión regular" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados de la búsqueda para \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3452,53 +3484,48 @@ msgstr[1] "Total: %s resultados" # singular: %s resultado en la tabla %s # plural: %s resultados en la tabla %s -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s coincidencia en la tabla %2$s" msgstr[1] "%1$s coincidencias en la tabla %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Examinar" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "¿Eliminar las coincidencias para la tabla %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Buscar en la base de datos" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras o valores a buscar (comodín: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Encontrado:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Las palabras están separadas por un espacio (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Dentro de las tablas:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Deseleccionar todo" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Dentro de la columna:" @@ -3518,30 +3545,30 @@ msgstr "Filtrar filas" msgid "Search this table" msgstr "Buscar en esta tabla" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Comenzar" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Siguiente" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -3550,7 +3577,7 @@ msgstr "Fin" msgid "All" msgstr "Todos/as" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de filas:" @@ -3559,8 +3586,8 @@ msgstr "Número de filas:" msgid "Sort by key" msgstr "Ordenar según la clave" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3582,10 +3609,10 @@ msgstr "Ordenar según la clave" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opciones" @@ -3625,29 +3652,29 @@ msgstr "Texto muy conocido" msgid "Well Known Binary" msgstr "Binario muy conocido" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "La fila se ha borrado." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Matar el proceso" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Podría ser aproximado. Ver [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Su consulta se ejecutó con éxito." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3656,74 +3683,74 @@ msgstr "" "Esta vista tiene al menos este número de filas. Refiérase a la " "%sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostrando filas %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d en total, %2$d en la consulta" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "total de %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "La consulta tardó %01.4f segundos." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Seleccionar todo" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualizar datos GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "¡No se encontró el enlace!" # male gender due to referring to encoding modes #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Ninguno" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Convertir a Kana" @@ -3731,25 +3758,25 @@ msgstr "Convertir a Kana" msgid "Too many error messages, some are not displayed." msgstr "Demasiados mensajes de error, algunos no son mostrados." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Reportar" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Enviar reporte automáticamente la próxima vez" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "El archivo no era un archivo subido." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El archivo que intentó subir excede la directiva upload_max_filesize en php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3757,49 +3784,49 @@ msgstr "" "El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada " "en el formulario HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "El archivo que intentó subir no alcanzó el 100%." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Falta una carpeta temporal." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "No fue posible grabar el archivo a disco." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "La subida del archivo fue detenida por extensión." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Error desconocido al subir el archivo." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" -msgstr "" +msgstr "El archivo es un enlace simbólico" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "¡No fue posible leer el archivo!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Se detectó un error al mover el archivo subido, ver [doc@faq1-11]FAQ 1.11[/" "doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Error al mover el archivo subido." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "No se pudo leer el archivo subido." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3809,28 +3836,28 @@ msgstr "" "Este tipo de compresión puede no estar implementado o quizá no ha sido " "habilitado en su archivo de configuración." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Actualmente ejecutando la revisión %1$s de Git de la rama %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "¡Falta información sobre Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Abrir nueva ventana de phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Vista de impresión" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Pulse en la barra para deslizarse al tope de la página" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "¡Pasado este punto, debe tener Javascript activado!" @@ -3839,20 +3866,20 @@ msgid "No index defined!" msgstr "¡No se ha definido ningún índice!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3862,59 +3889,59 @@ msgstr "Índices" msgid "Action" msgstr "Acción" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nombre de la clave" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Único" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalidad" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Comentario" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "La clave primaria ha sido eliminada." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "El índice %s ha sido eliminado." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Eliminar" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3923,19 +3950,19 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar " "uno." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Número de página:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignorando código de idioma no compatible." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Idioma" @@ -3961,11 +3988,11 @@ msgstr "Servidor" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3984,14 +4011,15 @@ msgid "View" msgstr "Visualizar" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4000,8 +4028,8 @@ msgid "Table" msgstr "Tabla" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4009,45 +4037,45 @@ msgstr "Tabla" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Buscar" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Insertar" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegios" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operaciones" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Seguimiento" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4063,16 +4091,16 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Generar una consulta" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4080,20 +4108,20 @@ msgstr "Rutinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Diseñador" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnas centrales" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Bases de datos" @@ -4102,53 +4130,53 @@ msgid "User accounts" msgstr "Cuentas de usuarios" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registro binario" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicación" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Complementos" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d fila afectada." msgstr[1] "%1$d filas afectadas." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d fila eliminada." msgstr[1] "%1$d filas eliminadas." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4196,27 +4224,27 @@ msgstr "Tablas favoritas" msgid "Favorites" msgstr "Favoritas" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Provea un nombre para esta búsqueda favorita." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Falta información para guardar la búsqueda en favoritos." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Ya existe un elemento con este nombre." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Falta información para borrar la búsqueda." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Falta información para cargar la búsqueda." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Error al cargar la búsqueda." @@ -4278,7 +4306,7 @@ msgstr "Mostrar las tablas que están abiertas" msgid "Show slave hosts" msgstr "Mostrar los hosts esclavos" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Mostrar el estado del maestro" @@ -4332,73 +4360,73 @@ msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutos" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "No existe información detallada acerca de las condiciones en que se " "encuentra este motor de almacenamiento." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponible en este servidor MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ha sido deshabilitado para este motor de almacenamiento." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" "Este servidor MySQL no es compatible con el motor de almacenamiento %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Estado de tabla desconocido:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "¡No se encontró la base de datos de origen «%s»!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "¡No se encontró la base de datos de destino «%s»!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "La base de datos no es válida:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "El nombre de la tabla no es válido:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "¡No se pudo cambiar el nombre de la tabla %1$s a %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabla %1$s ahora se llama %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "¡No se pudieron guardar las preferencias de interfaz!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4407,7 +4435,7 @@ msgstr "" "Falló la limpieza de las preferencia de interfaz de tablas (ver " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4418,19 +4446,19 @@ msgstr "" "no serán persistentes luego de actualizar esta página. Revise si cambió la " "estructura de la tabla." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "¡El nombre de la clave primaria tiene que ser «PRIMARY»!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "¡No se puede cambiar el nombre del índice a PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "No se han definido las partes del índice!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4766,7 +4794,7 @@ msgid "Date and time" msgstr "Fecha y marca temporal" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Cadena" @@ -4781,128 +4809,128 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Máximo: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Análisis estático:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Se encontraron %d errores durante el análisis." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Omitir la explicación del SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analice Explicar en %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Sin código PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Ejecutar la consulta" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Crear código PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Actualizar" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Perfilando" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar en línea" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parámetro faltante:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Saltar a la base de datos \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" "No se puede acceder al directorio que seleccionó para subir los archivos." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "¡No hay archivos para subir!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vaciar" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Ejecutar" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Usuarios" @@ -4916,7 +4944,7 @@ msgstr "por minuto" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "por hora" @@ -4924,12 +4952,12 @@ msgstr "por hora" msgid "per day" msgstr "por día" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Buscar:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4937,7 +4965,7 @@ msgstr "Buscar:" msgid "Description" msgstr "Descripción" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Use este valor" @@ -4978,22 +5006,22 @@ msgstr "Si" msgid "NO" msgstr "No" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nombre" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Longitud/Valores" @@ -5002,7 +5030,7 @@ msgstr "Longitud/Valores" msgid "Attribute" msgstr "Atributo" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5019,11 +5047,11 @@ msgstr "Añadir columna" msgid "Select a column." msgstr "Seleccionar una columna." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Añadir columna nueva" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5031,7 +5059,7 @@ msgstr "Añadir columna nueva" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5041,28 +5069,28 @@ msgstr "" "opción es incompatible con phpMyAdmin y podría causar la pérdida de algunos " "datos!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "El nombre del host no es válido para el servidor %1$s. Revise su " "configuración." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticación no válido definido en la configuración:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5074,20 +5102,20 @@ msgstr "" "phpMyAdmin utiliza actualmente la zona horaria predeterminada del servidor " "de la base de datos." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Error: no coincide un «token»" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "intento de sobre-escritura de la variable GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "posible aprovechamiento" @@ -5331,10 +5359,8 @@ msgid "You allow for connecting to the server without a password." msgstr "Permite conectarse al servidor sin contraseña." #: libraries/config/ServerConfigChecks.php:349 -#, fuzzy -#| msgid "Key is too short, it should have at least 8 characters." msgid "Key is too short, it should have at least 32 characters." -msgstr "La clave es muy corta, debe tener al menos 8 caracteres." +msgstr "La clave es muy corta, debe tener al menos 32 caracteres." #: libraries/config/ServerConfigChecks.php:359 msgid "Key should contain letters, numbers [em]and[/em] special characters." @@ -5477,10 +5503,8 @@ msgid "Could not connect to the database server!" msgstr "¡No se pudo conectar con el servidor de base de datos!" #: libraries/config/Validator.php:243 -#, fuzzy -#| msgid "Authentication type" msgid "Invalid authentication type!" -msgstr "Tipo de autenticación" +msgstr "¡Tipo de autenticación inválida!" #: libraries/config/Validator.php:250 msgid "Empty username while using [kbd]config[/kbd] authentication method!" @@ -5702,7 +5726,7 @@ msgid "Compress on the fly" msgstr "Comprimir sobre la marcha" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Archivo de configuración" @@ -5812,12 +5836,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Tiempo máximo de ejecución" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Usar sentencia %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Guardar como archivo" @@ -5827,7 +5851,7 @@ msgstr "Conjunto de caracteres del archivo" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formato" @@ -5954,7 +5978,7 @@ msgid "Save on server" msgstr "Guardar en el servidor" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Sobreescribir el(los) archivo(s) existente(s)" @@ -5967,7 +5991,7 @@ msgid "Remember file name template" msgstr "Recordar el nombre de la plantilla del archivo" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" @@ -5976,7 +6000,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Encerrar nombres de tabla y columna con comillas invertidas" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modo compatible con SQL" @@ -6007,7 +6031,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Añada %s" @@ -6184,7 +6208,7 @@ msgid "Customize the navigation tree." msgstr "Personalizar el árbol de navegación." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servidores" @@ -7107,7 +7131,7 @@ msgstr "Dominio HTTP (Realm)" msgid "Authentication method to use." msgstr "Método de autenticación a usar." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipo de autenticación" @@ -7858,7 +7882,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Habilitar la pestaña Desarrolladores en la configuración" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Buscar si existe una versión más reciente" @@ -7868,10 +7892,10 @@ msgstr "" "Habilita la verificación de la última versión en la página principal de " "phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Revise la versión" @@ -8021,24 +8045,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto Open Document" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "¡La lista de favoritos está completa!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Se ha vaciado la tabla %s." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Se descartó la vista %s." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Se ha eliminado la tabla %s." @@ -8053,12 +8077,12 @@ msgid "Position" msgstr "Posición" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tipo de evento" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID del servidor" @@ -8067,7 +8091,7 @@ msgid "Original position" msgstr "Posición original" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Información" @@ -8081,42 +8105,42 @@ msgstr "Truncar las consultas que ya se han mostrado" msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "No hay bases de datos" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "La base de datos %1$s ha sido creada." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d bases de datos han sido eliminadas exitosamente." msgstr[1] "%1$d bases de datos han sido eliminadas exitosamente." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Filas" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Residuo a depurar" @@ -8143,34 +8167,34 @@ msgstr "" msgid "Enable statistics" msgstr "Activar estadísticas" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Privilegios insuficientes para ver las variables del servidor y las " "configuraciones. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Falló la definición de la variable" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "No definió una consulta SQL para obtener datos." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "No existen columnas numéricas en la tabla a graficar." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "No hay datos para mostrar" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente." @@ -8213,7 +8237,7 @@ msgstr "Las columnas fueron movidas exitosamente." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Errores de consulta" @@ -8231,12 +8255,12 @@ msgstr "Cambiar" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Índice" @@ -8257,13 +8281,13 @@ msgstr "Texto completo" msgid "Distinct values" msgstr "Valores distintos" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "No se encontró la extensión %s. Revisa la configuración PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sin cambios" @@ -8285,31 +8309,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "No se pudieron cargar los plugins de esquema. ¡Revise su instalación!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Sin contraseña" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Contraseña:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Debe volver a escribir:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hashing de la contraseña:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8319,85 +8347,85 @@ msgstr "" "sin cifrar, que cifra la contraseña utilizando RSA'; mientras el " "servidor está conectado." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportar bases de datos del servidor actual" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportando tablas de la base de datos \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportando filas de la tabla \"%s\"" # Used as description for SQL syntax Export Type (options are INSERT, UPDATE # and REPLACE) -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Exportar plantillas:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nueva plantilla:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Nombre de plantilla" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Crear" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Plantillas existentes:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Plantilla:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Actualizar" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Seleccionar plantilla" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Método de exportación:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rápido - mostrar sólo el mínimo de opciones de configuración" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Personalizado - mostrar todas las opciones de configuración posibles" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Bases de datos:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tablas:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formato:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opciones específicas al formato:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8405,52 +8433,52 @@ msgstr "" "Desplácese hacia abajo para rellenar las opciones del formato elegido e " "ignore las opciones de los demás formatos." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Conversión de codificación:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Filas:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Volcar algunas filas" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Fila con la que comenzar:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Volcar todas las filas" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Salida:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Guardar en el servidor en el directorio %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Plantilla del nombre del archivo:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ se convertirá en el nombre del servidor" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ se convertirá en el nombre de la base de datos" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ se convertirá en el nombre de la tabla" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8462,98 +8490,98 @@ msgstr "" "transformaciones: %3$s. El texto restante se mantendrá como está. Referirse " "a la %4$sFAQ%5$s para más detalles." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "usar esto para exportaciones futuras" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Conjunto de caracteres del archivo:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compresión:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "comprimido con zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "comprimido con gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Ver salida como texto" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exportar bases de datos como archivos separados" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exportar tablas como archivos separados" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Renombrar las bases de datos/tablas/columnas exportadas" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Guardar salida a un archivo" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Omitir tablas mayores a" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Seleccionar base de datos" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Seleccionar tabla" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nombre de la nueva base de datos" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nombre de la nueva tabla" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Nombre de la columna antigua" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nombre de la nueva columna" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "No se cargaron los plugins de exportación. ¡Revise su instalación!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s de rama %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "sin rama" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revisión Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "incorporada el %1$s por %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "creada el %1$s por %2$s" @@ -9022,13 +9050,13 @@ msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hay suficiente espacio para guardar el archivo %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9036,77 +9064,77 @@ msgstr "" "El archivo %s ya existe en el servidor, cambie el nombre del archivo o " "revise la opción de sobreescritura." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no tiene permiso para guardar el archivo %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "El volcado ha sido guardado al archivo %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[Ocurrió un ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Puede ver los contenidos de una estructura pulsando en su nombre." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" " "correspondiente." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Edite la estructura siguiendo el enlace \"Estructura\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Ir a la base de datos: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Editar configuración de %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Ir a la tabla: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Ir a la vista: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Sólo se pueden simular consultas UPDATE y DELETE sobre sólo una tabla." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9119,86 +9147,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columna(s)" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Función" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Debido a su longitud,
esta columna podría no ser editable." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binario - no editar" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "O" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "directorio en el servidor web para subir los archivos:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editar/Insertar" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "y luego" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Volver" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9209,31 +9238,31 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "¡Éxito!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Únicamente la estructura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Estructura y datos" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Solamente datos" @@ -9242,14 +9271,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Añadir el valor AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Añadir restricciones" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ajustar privilegios" @@ -9294,8 +9323,8 @@ msgstr "Procedimientos:" msgid "Views:" msgstr "Vistas:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Mostrar" @@ -9308,10 +9337,8 @@ msgid "Log out" msgstr "Finalizar sesión" #: libraries/navigation/NavigationHeader.php:172 -#, fuzzy -#| msgid "Dumping data" msgid "Empty session data" -msgstr "Volcado de datos" +msgstr "Datos de sesión vacíos" #: libraries/navigation/NavigationHeader.php:190 msgid "phpMyAdmin documentation" @@ -9341,18 +9368,17 @@ msgid_plural "%s results found" msgstr[0] "Se encontró %s resultado adicional" msgstr[1] "Se encontró %s resultado adicional" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 -#, fuzzy -msgid "Type to filter these, Enter to search all" -msgstr "Escribe para filtrar estos, Introduce para buscar todo" - -#: libraries/navigation/NavigationTree.php:1359 +#: libraries/navigation/NavigationTree.php:1358 #: libraries/navigation/NavigationTree.php:1390 +msgid "Type to filter these, Enter to search all" +msgstr "Escribe para filtrar estos, «Intro» para buscar todo" + +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Vaciar filtro rápido" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Colapsar todos" @@ -9368,7 +9394,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "No se pudo cargar la clase \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Expandir/Colapsar" @@ -9387,7 +9413,7 @@ msgstr "Nueva" msgid "Database operations" msgstr "Opciones de la base de datos" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Mostrar elementos ocultos" @@ -9491,11 +9517,11 @@ msgstr "" "Seleccionar una columna que puede ser dividida en más de una (si selecciona " "'ninguna columna', continuará en el siguiente paso)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Seleccionar una…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Niguna columna" @@ -9776,8 +9802,8 @@ msgid "Rename database to" msgstr "Renombrar base de datos a" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9823,177 +9849,177 @@ msgstr "(solamente)" msgid "Move table to (database.table)" msgstr "Mover tabla a (Base de datos.tabla)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Cambiar el nombre de la tabla a" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Comentarios de la tabla" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opciones de la tabla" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Motor de almacenamiento" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Cambiar todas las intercalaciones de columna" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copiar tabla a (base de datos.tabla)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Cambiar a la tabla copiada" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Mantenimiento de la tabla" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizar la tabla" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Revisar la tabla" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Tabla de suma de comprobación" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentar la tabla" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Se ha vaciado el caché de la tabla %s." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Vaciar el caché de la tabla (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizar la tabla" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparar la tabla" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Borrar datos o tabla" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Vaciar la tabla (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Borrar la tabla (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analice" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Revise" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimice" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Reconstruya" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Repare" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Truncar" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Fusionar" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Mantenimiento de la partición" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Remueva la partición" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "¡No es posible mover la tabla a la misma!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "¡No es posible copiar la tabla a la misma!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "La tabla %s se movió a %s. Los privilegios se ajustaron." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La tabla %s se copió a %s. Los privilegios se ajustaron." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabla %s se movió a %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabla %s se copió a %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "¡El nombre de la tabla está vacío!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Este formato no tiene opciones" @@ -10024,18 +10050,18 @@ msgstr "Mostrar color" msgid "Only show keys" msgstr "Mostrar las llaves solamente" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "No se estableció la conexión: los parámetros están incorrectos." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Bienvenido a %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10044,7 +10070,7 @@ msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10056,7 +10082,7 @@ msgstr "" "config.inc.php y asegurarse que corresponden con la información provista por " "el administrador del servidor MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Reintentar conexión" @@ -10083,15 +10109,15 @@ msgstr "Usuario:" msgid "Server Choice:" msgstr "Elección del servidor:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "El captcha introducido es incorrecto, ¡intente nuevamente!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "¡Introduzca el captcha correcto!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "¡No puede conectarse en este servidor MySQL!" @@ -10154,7 +10180,7 @@ msgstr "Opciones para volcado de datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" @@ -10163,7 +10189,7 @@ msgstr "Volcado de datos para la tabla" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Evento" @@ -10171,8 +10197,8 @@ msgstr "Evento" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definición" @@ -10258,7 +10284,7 @@ msgstr "Poner los nombres de campo en la primera fila:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Servidor:" @@ -10800,7 +10826,7 @@ msgstr "Tabla de contenidos" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11191,11 +11217,11 @@ msgstr "" "Inicie sesión en phpMyAdmin nuevamente para cargar el archivo de " "configuración actualizado." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Sin descripción" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11205,7 +11231,7 @@ msgstr "" "'phpmyadmin'. Puede ir a la pestaña de 'Operaciones' de cualquier base de " "datos para configurar el almacenamiento de configuración en phpMyAdmin." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11214,7 +11240,7 @@ msgstr "" "%sCree%s una base de datos llamada 'phpmyadmin' y configure el " "almacenamiento de configuración en phpMyAdmin." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11222,35 +11248,35 @@ msgstr "" "%sCrear%s las tablas de almacenamiento de configuración de phpMyAdmin en la " "base de datos actual." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" "%sCree%s las tablas en las que se guarda la configuración de phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replicación maestra" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como maestro en un proceso de replicación." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Mostrar esclavos conectados" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Agregar un usuario de replicación esclavo" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Configuración del maestro" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11264,19 +11290,19 @@ msgstr "" "datos) o bien ignorar todas las bases de datos y sólo permitir que ciertas " "bases de datos sean replicadas. Elija el modo:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas las bases de datos; ignorar:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas las bases de datos; replicar:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Seleccionar bases de datos:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11285,7 +11311,7 @@ msgstr "" "archivo my.cnf y luego reinicie el servidor MySQL." # See translation string 4 -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11295,71 +11321,71 @@ msgstr "" "continuación deberás ver un mensaje informando que el servidor está " "configurado como maestro." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replicación esclava" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Conexión maestra:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "¡El hilo SQL esclavo no se está ejecutando!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "¡El hilo IO esclavo no se está ejecutando!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "El servidor está configurado como esclavo en un proceso de replicación. " "Deseas:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Ver la tabla de estado del esclavo" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Controlar esclavo:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Inicio completo" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Parada completa" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Reiniciar esclavo" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Iniciar hilo SQL sólamente" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Parar hilo SQL sólamente" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Iniciar hilo IO sólamente" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Parar hilo IO sólamente" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Cambiar o reconfigurar el servidor maestro" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11368,26 +11394,26 @@ msgstr "" "Este servidor no está configurado como esclavo en un proceso de replicación. " "¿Desea configurarlo?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Manejo de errores:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "¡Omitir errores podría llevar a que el esclavo y maestro no estén " "sincronizados!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Omitir error actual" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Omitir los siguientes %s errores." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11396,11 +11422,11 @@ msgstr "" "Este servidor no está configurado como maestro en un proceso de replicación. " "¿Desea configurarlo?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Configuración de esclavo" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11408,53 +11434,53 @@ msgstr "" "Asegúrese de tener un ID de servidor único en el archivo de configuración " "(my.cnf). Si no, agregue la siguiente línea en la sección [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nombre de usuario:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nombre de usuario" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Contraseña" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Puerto:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Estado del maestro" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Estado del esclavo" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Servidor" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11462,39 +11488,39 @@ msgstr "" "Sólo los esclavos iniciados con la opción --report-host=host_name son " "visibles en esta lista." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Este Host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Cualquier usuario" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Use el campo de texto:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11502,77 +11528,77 @@ msgstr "" "Cuando la tabla Host es usada, este campo es ignorado y se utilizan los " "valores almacenados en la tabla Host en su lugar." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Debe volver a escribir" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Generar contraseña:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Se inició correctamente la replicación." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Error al iniciar replicación." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Se detuvo correctamente la replicación." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Error al detener la replicación." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Se reinició correctamente la replicación." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Error al reiniciar la replicación." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Éxito." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Error." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Error desconocido" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "No se pudo conectar al maestro %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "No se pudo leer la posición de registro del maestro. Posible problema de " "privilegios en el maestro." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "¡No se pudo cambiar maestro!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "El servidor maestro fue cambiado exitosamente a %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11593,7 +11619,7 @@ msgstr "Se modificó el evento %1$s." msgid "Event %1$s has been created." msgstr "Se creó el evento %1$s." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Ocurrieron uno o más errores al procesar el pedido:" @@ -11602,75 +11628,75 @@ msgstr "Ocurrieron uno o más errores al procesar el pedido:" msgid "Edit event" msgstr "Editar evento" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detalles" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nombre del evento" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Cambiar a %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Ejecutar en" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Ejecutar cada" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Inicio" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Preservar al completar" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definidor" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "¡El definidor tiene que ser en el formato \"usuario@sistema\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "¡Debe proveer un nombre de evento!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Debe proveer un valor de intervalo válido para el evento." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Debe proveer un tiempo de ejecución válido para el evento." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Debe proveer un tipo válido para el evento." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Debe proveer una definición de evento." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Error al procesar la petición:" @@ -11691,7 +11717,7 @@ msgstr "Estado del planificador de eventos" msgid "The backed up query was:" msgstr "La consulta respaldada era:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Retorna" @@ -11707,72 +11733,72 @@ msgstr "" "guardadas puede fallar[/strong]. Utilice la extensión mejorada «mysqli» para " "evitar problemas." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rutina inválido: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Se creó la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Se modificó la rutina %1$s. Los privilegios se ajustaron." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Se modificó la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nombre de rutina" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parámetros" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Agregar parámetro" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Eliminar último parámetro" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Retornar el tipo" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Retornar longitud/valores" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Retornar opciones" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Es determinístico" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11780,25 +11806,25 @@ msgstr "" "Sin privilegios suficientes para realizar esta operación; Por favor, " "consulte la documentación para más detalles" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tipo de seguridad" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Acceso de datos SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "¡Debe proveer un nombre de rutina!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Dirección \"%s\" inválida provista para el parámetro." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11806,37 +11832,37 @@ msgstr "" "Debe proveer longitud/valores para los parámetros de tipo ENUM, SET, VARCHAR " "y VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Debe proveer un nombre y tipo para cada parámetro de rutina." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Debe proveer un tipo de retorno válido para la rutina." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Debe proveer una definición de rutina." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Resultados de la ejecución de la rutina %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 fila afectada por la última sentencia del procedimiento." msgstr[1] "%d filas afectadas por la última sentencia del procedimiento." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Ejecutar rutina" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parámetros de rutina" @@ -11859,32 +11885,32 @@ msgstr "Disparador %1$s creado." msgid "Edit trigger" msgstr "Editar disparador" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nombre del disparador" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tiempo" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "¡Debe proveer un nombre de disparador!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "¡Debe proveer una sincronización válida para el disparador!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "¡Debe proveer un evento válido para el disparador!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "¡Debe proveer un nombre de tabla válido!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Debe proveer una definición del disparador." @@ -11902,10 +11928,8 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -#, 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 "No posee los privilegios necesarios para crear una rutina" +msgstr "No posee los privilegios necesarios para crear una rutina." #: libraries/rte/rte_words.lib.php:35 #, php-format @@ -11913,6 +11937,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 "" +"No se encuentran rutinas con nombre %1$s en la base de datos %2$s. Quizá " +"falten los privilegios necesarios para editar esta rutina." #: libraries/rte/rte_words.lib.php:39 #, php-format @@ -11920,12 +11946,13 @@ 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 "" +"No se encuentran rutinas con nombre %1$s en la base de datos %2$s. Quizá " +"falten los privilegios necesarios para ver/exportar esta rutina." #: libraries/rte/rte_words.lib.php:42 -#, 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 "No se encontró rutina con nombre %1$s en la base de datos %2$s" +msgstr "No se encontró rutina con nombre %1$s en la base de datos %2$s." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11945,16 +11972,13 @@ msgid "trigger" msgstr "disparador" #: libraries/rte/rte_words.lib.php:54 -#, 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 "No posee los privilegios necesarios para crear un disparador" +msgstr "No posee los privilegios necesarios para crear un disparador." #: libraries/rte/rte_words.lib.php:56 -#, 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 "No se encontró disparador con nombre %1$s en la base de datos %2$s" +msgstr "No se encontró disparador con nombre %1$s en la base de datos %2$s." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11974,16 +11998,13 @@ msgid "event" msgstr "evento" #: libraries/rte/rte_words.lib.php:68 -#, 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 "No posee los privilegios necesarios para crear un evento" +msgstr "No posee los privilegios necesarios para crear un evento." #: libraries/rte/rte_words.lib.php:70 -#, 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 "No se encontró evento con nombre %1$s en la base de datos %2$s" +msgstr "No se encontró evento con nombre %1$s en la base de datos %2$s." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -12009,92 +12030,92 @@ msgstr "Conjunto de caracteres y sus cotejamientos" msgid "Databases statistics" msgstr "Estadísticas de la base" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Sin privilegios." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permite leer los datos." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permite cambiar los datos." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permite borrar datos." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Permite ver los procesos de todos los usuarios." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12105,131 +12126,103 @@ msgstr "" "tales como montar parámetros de variables globales o matar procesos de otros " "usuarios." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Necesario para los esclavos de replicación." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los esclavos / maestros." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Permite organizar los eventos para el gestor de eventos." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Permite crear y eliminar un disparador." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite llevar a cabo las consultas SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Ninguno" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Grupo de usuario" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "No requiere conexiones cifradas con SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Requiere conexiones encriptadas con SSL." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Requiere un certificado X509 válido." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Se requiere un método específico de cifrado para usar la conexión." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Requiere que esté presente un certificado X509 válido emitido por esta CA " "(Autoridad certificante)." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Requiere un certificado X509 válido con el tema presentado." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Límites de recursos" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " -"límite." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el número de consultas que el usuario puede enviar al servidor por " "hora." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12237,121 +12230,120 @@ msgstr "" "Limita el número de comandos que cambian cualquier tabla o base de datos que " "el usuario puede ejecutar por hora." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita el número de conexiones nuevas que el usuario puede abrir por hora." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" +"Permite al usuario dar o quitar a otros usuarios los permisos que el usuario " +"posee en esta rutina." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Permite alterar y eliminar esta rutina." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Permite ejecutar esta rutina." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" "Nota: Los nombres de los privilegios de MySQL están expresados en inglés." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administración" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilegios globales" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permite la creación de tablas nuevas." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " "de privilegios." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" +"Permite al usuario dar o quitar a otros usuarios los permisos que el usuario " +"posee." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Autenticación de MySQL nativo" # Description of signon value for configuration described at # https://www.phpmyadmin.net/documentation/Documentation.html#cfg_Servers_auth_type -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Autenticación de contraseña SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Autenticación de MySQL nativo" - # It is talking about the user account not the act of logging in -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Información de la cuenta" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12359,138 +12351,138 @@ msgstr "" "Ya existe una cuenta con el mismo nombre de usuario pero posiblemente un " "nombre de servidor diferente." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Nombre de Host:" # It is about binary logs, not about login names -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Nombre del servidor" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Complemento de autenticación" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Método hash de contraseña" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ha revocado los privilegios para %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Agregar cuenta de usuario" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Base de datos para la cuenta de usuario" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Crear base de datos con el mismo nombre y otorgar todos los privilegios." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Otorgar todos los privilegios para la base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios con acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Se agregó el usuario." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Privilegios insuficientes para ver los usuarios." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "cualquiera" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "específico para la base de datos" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "específico para la tabla" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Editar privilegios" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Revocar" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Editar groupo de usuario" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "…mantener el anterior." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "…borrar el viejo de las tablas de usuario." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "…revocar todos los privilegios activos del viejo y eliminarlo después." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12499,91 +12491,77 @@ msgstr "" "privilegios." # Login refers to the user account not the act of logging in -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Cambiar información de cuenta / Copiar cuenta de usuario" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Crear una cuenta de usuario nueva con los mismos privilegios y…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegios específicos de rutina" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Eliminar cuentas de usuario seleccionadas" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Grupo de usuario" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Revocar todos los privilegios activos de los usuarios y borrarlos después." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Eliminar las bases de datos que tienen los mismos nombres que los usuarios." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilegios para %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nuevo" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Editar los privilegios:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Cuenta de usuario" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12591,11 +12569,11 @@ msgstr "" "Nota: está intentando editar los privilegios del usuario con el que inició " "la sesión actual." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Vista global de las cuentas de usuario" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12605,7 +12583,7 @@ msgstr "" "conectarse. Esto evitará conectarse a otros usuarios, si la parte del host " "de su cuenta permite una conexión desde cualquier host (%)." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12619,7 +12597,7 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12633,11 +12611,11 @@ msgstr "" "manuales en él. En este caso, los privilegios deberán actualizarse pero " "actualmente, no tiene el privilegio RELOAD." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." @@ -12949,12 +12927,12 @@ msgstr "Comando" msgid "Progress" msgstr "Progreso" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtros" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Mostrar sólo activo" @@ -12975,12 +12953,12 @@ msgstr "por minuto:" msgid "per second:" msgstr "por segundo:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Sentencias" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13004,7 +12982,7 @@ msgstr "Mostrar valores sin formato" msgid "Related links:" msgstr "Enlaces relacionados:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13012,11 +12990,11 @@ msgstr "" "La cantidad de conexiones que fueron abandonadas porque el cliente murió sin " "cerrar la conexión apropiadamente." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13026,19 +13004,19 @@ msgstr "" "binarios pero que excedieron el valor del binlog_cache_size y usaron un " "archivo temporal para almacenar las sentencias de la transacción." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache temporal de registros " "binarios." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13051,11 +13029,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13063,7 +13041,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13071,7 +13049,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una clave duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13079,23 +13057,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13106,7 +13084,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13117,7 +13095,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13126,7 +13104,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13136,7 +13114,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13145,7 +13123,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13158,7 +13136,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las claves de manera apropiada." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13171,37 +13149,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas de la reserva de búfers que se ha solicitado sean " "vaciadas." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "El número de páginas libres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13211,7 +13189,7 @@ msgstr "" "páginas en fase de lectura o escritura o que no pueden ser vaciadas o " "removidas por alguna otra razón." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13223,11 +13201,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13236,7 +13214,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13244,11 +13222,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13256,7 +13234,7 @@ msgstr "" "El número de lecturas lógicas que InnoDB no pudo satisfacer la reserva de " "búfers y donde fue necesario hacer lectura de página sencilla." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13271,55 +13249,55 @@ msgstr "" "Si los parámetros del tamaño de la reserva de búfers se fijaron " "apropiadamente, este valor será pequeño." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la reserva de búfers InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13327,35 +13305,35 @@ msgstr "" "El número de esperas generadas porque el búfer de registro fue demasiado " "pequeño y hubo que esperar a que fuera vaciado antes de continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo de registro." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsync() hechas al archivo de registro." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13364,52 +13342,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13418,7 +13396,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13426,7 +13404,7 @@ msgstr "" "El número de bloques sin usar en el caché de claves. Puede usar este valor " "para determinar cuánto del caché de claves está en uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13436,15 +13414,15 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaje de uso del caché de claves (valor calculado)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un bloque de clave desde el caché." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13455,7 +13433,7 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13463,22 +13441,22 @@ msgstr "" "Los fallos en el caché de claves es calculado como la tasa de lecturas " "físicas comparadas con los pedidos de lectura (valor calculado)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un bloque de claves a la caché." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas de un bloque de claves al disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentaje de escrituras físicas comparadas con pedidos de escritura (valor " "calculado)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13489,7 +13467,7 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13497,11 +13475,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13509,21 +13487,21 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "registros)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13533,19 +13511,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13558,7 +13536,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13566,20 +13544,20 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13587,13 +13565,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13602,7 +13580,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13610,19 +13588,19 @@ msgstr "" "El número de vínculos («joins») con rangos en la primera tabla. (Normalmente " "no es crítico aún cuando sea grande.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13630,12 +13608,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13643,14 +13621,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13660,23 +13638,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13688,7 +13666,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13698,11 +13676,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13714,11 +13692,11 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaje de aciertos del caché de hilos (valor calculado)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." @@ -13747,37 +13725,37 @@ msgstr "Pestañas a nivel base de datos" msgid "Table level tabs" msgstr "Pestañas a nivel tabla" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Ver usuarios" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Agregar groupo de usuarios" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Editar grupo de usuarios: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Menú de asignaciones de grupos de usuario" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Nombre del grupo:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Pestañas a nivel servidor" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Pestañas a nivel base de datos" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Pestañas a nivel tabla" @@ -13878,7 +13856,7 @@ msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s" msgid "Run SQL query/queries on table %s" msgstr "Ejecutar la(s) consulta(s) SQL en la tabla %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Limpiar" @@ -13963,112 +13941,112 @@ msgstr "Desactivar ahora" msgid "Version" msgstr "Versión" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Creado/a" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Actualizado" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Borrar versión" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Informe de seguimiento" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Instantánea de la estructura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "activo/a" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "no activo/a" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Realizando el seguimiento de las sentencias" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Borrar fila de seguimiento de datos del reporte" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "No hay datos" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Muestra %1$s con fechas de %2$s a %3$s por parte del usuario %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Volcado SQL (descarga de archivo)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Volcado SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Esta opción sustituirá tu tabla y los datos que contiene." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Ejecución SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Sentencia de manipulación de datos" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Sentencia de definición de datos" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Fecha" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nombre de usuario" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Captura de la versión %s (código SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ninguna" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Definición de seguimiento de datos eliminado exitosamente" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulación de seguimiento de datos eliminada exitosamente" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14076,61 +14054,61 @@ msgstr "" "Puede ejecutar el volcado creando y utilizando una base de datos temporal. " "Asegúrese de tener los privilegios para poder hacerlo." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Comenta estas dos líneas si no las necesitas." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Sentencias SQL exportadas. Copia el volcado o ejecútalo." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimiento para la tabla `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Seguimiento de %1$s activado en versión %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Seguimiento para %1$s desactivado en versión %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Se borró la versión %1$s de %2$s." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Se ha creado la versión %1$s, se ha activado el seguimiento para %2$s." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tablas sin seguimiento" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Hacer seguimiento a la tabla" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tablas con seguimiento" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Última versión" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Borrando los datos de seguimiento" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versiones" @@ -14138,7 +14116,7 @@ msgstr "Versiones" msgid "Manage your settings" msgstr "Administrar tu configuración" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Se guardó la configuración." @@ -14164,7 +14142,7 @@ msgstr "Error en el archivo ZIP:" msgid "No files found inside ZIP archive!" msgstr "¡No se hallaron archivos dentro del archivo ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: sólo se puede acceder a la navegación mediante AJAX" @@ -14173,59 +14151,59 @@ msgid "Cannot save settings, submitted form contains errors!" msgstr "" "No se pudo guardar la configuración, ¡el formulario enviado contiene errores!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Faltan las tablas de almacenaje de configuración de phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "No se pudo importar la configuración" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "La configuración contiene datos incorrectos para algunos campos." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "¿Desea importar las configuraciones restantes?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Guradado el: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importar de un archivo" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importar del almacenamiento del navegador" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "Se importarán las configuraciones del almacenamiento local del navegador." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "¡No se encontraron configuraciones guardadas!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Esta funcionalidad no está soportada por tu navegador" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Combinar con la configuración actual" # I still don't like translating "script" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14234,26 +14212,26 @@ msgstr "" "Se pueden definir más configuraciones modificando config.inc.php. Por " "ejemplo, utilizado %sscripts de configuración%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Guardar como archivo" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Guardar en almacenamiento del navegador" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" "La configuración será guardada en el almacenamiento local del navegador." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "¡Se reemplazarán las configuraciones existentes!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Se pueden reiniciar todas las configuraciones y devolverlas a sus valores " @@ -14263,12 +14241,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Sin privilegios" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14276,20 +14254,20 @@ msgstr "" "El nombre de usuario y del servidor no cambian. Si sólo desea cambiar la " "contraseña, debe utilizar la pestaña 'Cambiar contraseña'." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Privilegios insuficientes para ver estado del servidor." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Privilegios insuficientes para ver el asesor." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "El proceso %s fue destruido exitosamente." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14297,15 +14275,15 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Privilegios insuficientes para ver las estadísticas de las consultas." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Privilegios insuficientes para ver el estado de las variables." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Descargar" @@ -14315,11 +14293,11 @@ msgstr "" "Conjunto de formularios inválidos, ¡revise el array $formests en el archivo " "setup/frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "No se puede cargar o guardar una configuración" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14330,7 +14308,7 @@ msgstr "" "[doc@setup_script]la documentación[/doc]. De lo contrario, sólamente podrá " "descargar o mostrar la configuración." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14339,24 +14317,27 @@ msgstr "" "información potencialmente sensible, como las contraseñas) se transfieren " "sin encriptar!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Si su servidor también está configurado para acepta solicitudes HTTPS siga " "[a@%s]este enlace[/a] para utilizar una conexión segura." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Conexión insegura" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuración guardada." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14365,61 +14346,59 @@ msgstr "" "raíz de phpMyAdmin, copialo al directorio raíz y elimina el directorio " "config para utilizarlo." -#: setup/frames/index.inc.php:134 -#, fuzzy -#| msgid "Configuration saved." +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" -msgstr "Configuración guardada." +msgstr "¡Configuración no guardada!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Vista general" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Mostrar mensajes ocultos (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "No existen servidores configurados" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nuevo servidor" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Idioma predeterminado" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "permita que el usuario pueda escoger" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ninguno -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Servidor predeterminado" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Final de la línea" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Mostrar" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Cargar" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Página de inicio de phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Donación" @@ -14455,7 +14434,7 @@ msgstr "Ignorar los errores" msgid "Show form" msgstr "Mostrar el formulario" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14463,15 +14442,15 @@ msgstr "" "Fracasó la lectura de la versión. Quizá usted está desconectado o el " "servidor de actualizaciones no está respondiendo." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "El servidor envió una cifra incorrecta para la versión" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "No se puede procesar la cifra de la versión" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14480,7 +14459,7 @@ msgstr "" "Usted está usando versionado Git, ejecute [kbd]git pull[/kbd] :-)[br]La " "versión estable más reciente es %s, publicada el %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "No existe una versión estable más reciente" @@ -14491,14 +14470,14 @@ msgstr "Datos incorrectos" #: setup/validate.php:30 #, php-format msgid "Wrong data or no validation for %s" -msgstr "" +msgstr "Datos erróneos o sin validación para %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "la base de datos «%s» no existe." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "La tabla %s ya existe!" @@ -14511,29 +14490,29 @@ msgstr "Mostrar volcado (esquema) de la tabla" msgid "Invalid table name" msgstr "El nombre de la tabla no es válido" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "No se seleccionó la fila." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Seguimiento de %s activado." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Las versiones de seguimiento fueron borradas satisfactoriamente." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "No se seleccionaron versiones." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Sentencias SQL ejecutadas." @@ -14558,10 +14537,8 @@ msgid "Add" msgstr "Agregar" #: templates/columns_definitions/column_definitions_form.phtml:66 -#, fuzzy -#| msgid "Columns" msgid "column(s)" -msgstr "Columnas" +msgstr "columna(s)" #: templates/columns_definitions/column_definitions_form.phtml:93 msgid "Collation:" @@ -14707,7 +14684,7 @@ msgid "List of available transformations and their options" msgstr "Lista de transformaciones disponibles y sus opciones" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformación de visualización en el navegador" @@ -14729,7 +14706,7 @@ msgstr "" "barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformación de entrada" @@ -15168,17 +15145,17 @@ msgid "Size" msgstr "Tamaño" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Creación" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Última actualización" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Última revisión" @@ -15220,6 +15197,12 @@ msgstr "" "El navegador tiene una configuración phpMyAdmin para este dominio. ¿Quieres " "importarlo a la sesión actual?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Borrando los datos de seguimiento" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Añadir privilegios a la o las base de datos siguientes:" @@ -15238,10 +15221,47 @@ msgstr "Añadir privilegios a la siguiente rutina:" msgid "Add privileges on the following table:" msgstr "Añadir privilegios a esta tabla:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nuevo" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Ninguno" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Eliminar cuentas de usuario seleccionadas" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Revocar todos los privilegios activos de los usuarios y borrarlos después." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Eliminar las bases de datos que tienen los mismos nombres que los usuarios." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Límites de recursos" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " +"límite." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Seleccionar el registro binario que desea examinar" @@ -15272,7 +15292,7 @@ msgstr "Complemento" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "desactivado" @@ -15428,7 +15448,7 @@ msgstr "Analizador:" msgid "Comment:" msgstr "Comentario:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Arrastrar para reordenar" @@ -15450,6 +15470,9 @@ msgid "" "an index on it. Alternatively, you can define an index below, before " "creating the foreign key." msgstr "" +"Crear una clave foránea sobre una columna no indexada crearía " +"automáticamente un índice en ella. De manera alternativa, puede definir un " +"índice más abajo, antes de crear la clave foránea." #: templates/table/relation/common_form.phtml:20 msgid "" @@ -15460,20 +15483,20 @@ msgstr "Sólo se mostrarán columnas con índices. Abajo puede definir un índic msgid "Foreign key constraint" msgstr "Restricción de clave foránea" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Añadir restricción" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relaciones internas" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relación interna" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15481,7 +15504,7 @@ msgstr "" "No es necesaria una relación interna cuando existe una relación CLAVE " "FORÁNEA correspondiente." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Elegir la columna a mostrar:" @@ -15535,11 +15558,11 @@ msgstr "Cadena original" msgid "Replaced string" msgstr "Cadena reemplazada" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Reemplazar" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Criterios de búsqueda adicionales" @@ -15610,7 +15633,7 @@ msgid "at beginning of table" msgstr "Al comienzo de la tabla" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Particiones" @@ -15634,24 +15657,24 @@ msgstr "Longitud de los datos" msgid "Index length" msgstr "Longitud del índice" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Tabla de divisiones" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Editar partición" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Editar vista" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Espacio utilizado" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efectivo/a" @@ -15676,31 +15699,31 @@ msgstr "Mejorar la estructura de tabla" msgid "Track view" msgstr "Vista de seguimiento" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Estadísticas de la fila" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "estático" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinámico/a" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "particionado" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Longitud de la fila" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Tamaño de la fila" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Índice automático siguiente" @@ -15713,50 +15736,46 @@ msgstr "Se ha eliminado la columna %s." msgid "Click to toggle" msgstr "Pulse para conmutar" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "¡Obtener más temas!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "MIME-types disponibles" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Transformaciones de visualización en el navegador disponibles" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Transformaciones de entrada disponibles" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Descripción" -#: url.php:38 -#, fuzzy -#| msgid "Taking you to next step…" +#: url.php:39 msgid "Taking you to the target site." -msgstr "Llevándolo al siguiente paso…" +msgstr "Llevándolo a la página web destino." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "¡Usted no tiene suficientes privilegios para estar aquí ahora!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Se actualizó el perfil." -#: user_password.php:125 -#, fuzzy -#| msgid "Password Hashing:" +#: user_password.php:127 msgid "Password is too long!" -msgstr "Hashing de la contraseña:" +msgstr "¡Contraseña muy larga!" #: vendor/phpmyadmin/motranslator/tests/MoFilesTest.php:24 #, fuzzy @@ -15820,18 +15839,16 @@ msgstr "Se esperaba un corchete de apertura." #: vendor/phpmyadmin/sql-parser/src/Statements/InsertStatement.php:227 #: vendor/phpmyadmin/sql-parser/src/Statements/ReplaceStatement.php:165 #: vendor/phpmyadmin/sql-parser/src/Statements/ReplaceStatement.php:193 -#, fuzzy -#| msgid "Unexpected token." msgid "Unexpected keyword." -msgstr "Símbolo (token) inesperado." +msgstr "Palabra clave inesperada." #: vendor/phpmyadmin/sql-parser/src/Components/CaseExpression.php:202 msgid "Unexpected end of CASE expression" -msgstr "" +msgstr "Final inesperado de expresión CASE" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15852,17 +15869,17 @@ msgid "Unrecognized data type." msgstr "Tipo de dato desconocido." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Se esperaba un alias." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Se encontró anteriormente un alias." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Punto inesperado." @@ -15881,10 +15898,9 @@ msgid "This option conflicts with \"%1$s\"." msgstr "Esta opción tiene conflictos con \"%1$s\"." #: vendor/phpmyadmin/sql-parser/src/Components/OptionsArray.php:260 -#, fuzzy, php-format -#| msgid "Ending quote %1$s was expected." +#, php-format msgid "Value/Expression for the option %1$s was expected" -msgstr "Se esperaba terminar la cita %1$s." +msgstr "Se esperaba una expresión/valor para la opción %1$s" #: vendor/phpmyadmin/sql-parser/src/Components/RenameOperation.php:101 msgid "The old name of the table was expected." @@ -15915,24 +15931,24 @@ msgstr "Espacio(s) en blanco esperado(s) antes de delimitador." msgid "Expected delimiter." msgstr "Delimitador esperado." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Se esperaba terminar la cita %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Se esperaba el nombre de la variable." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Comienzo inesperado de declaración." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Tipo de declaración desconocida." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Ninguna operación se inició anteriormente." @@ -15949,19 +15965,23 @@ msgstr "Símbolo (token) inesperado." msgid "This type of clause was previously parsed." msgstr "Este tipo de cláusula se analizó previamente." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Palabra clave no reconocida." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Comienzo inesperado de declaración." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Se esperaba el nombre de la entidad." #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:436 -#, fuzzy -#| msgid "Variable name was expected." msgid "A table name was expected." -msgstr "Se esperaba el nombre de la variable." +msgstr "Se esperaba un nombre de tabla." #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:444 msgid "At least one column definition was expected." @@ -15972,10 +15992,8 @@ msgid "A \"RETURNS\" keyword was expected." msgstr "Se esperaba una palabra \"RETURNS\"." #: vendor/phpmyadmin/sql-parser/src/Statements/DeleteStatement.php:303 -#, fuzzy -#| msgid "This type of clause was previously parsed." msgid "This type of clause is not valid in Multi-table queries." -msgstr "Este tipo de cláusula se analizó previamente." +msgstr "Este tipo de cláusula no es válida en consultas multi-tabla." #: vendor/phpmyadmin/sql-parser/tests/Lexer/LexerTest.php:21 #: vendor/phpmyadmin/sql-parser/tests/Parser/ParserTest.php:58 @@ -15997,9 +16015,9 @@ msgstr "" msgid "strict error" msgstr "Agrupar los errores" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" -msgstr "" +msgstr "El nombre de la vista no puede estar vacío" #: view_create.php:253 msgid "VIEW name" @@ -17332,6 +17350,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autenticación de MySQL nativo" + #~ msgid "Try to connect without password." #~ msgstr "Intente conectar sin contraseña." diff --git a/po/et.po b/po/et.po index edb365cef4..d93c7e8aa2 100644 --- a/po/et.po +++ b/po/et.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:30+0000\n" "Last-Translator: Michal Čihař \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" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -26,33 +26,33 @@ msgstr "" "Fail %s ei ole selles süsteemis saadaval; täiendavat informatsiooni leiad " "aadressilt %s." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" "Selle andmebaasi jaoks ei ole keskses veergude nimekirjas mitte ühtegi " "veergu." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Kliki sorteerimiseks." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Kuvatakse read %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Andmebaasi kommentaar" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Tabeli kommentaarid:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -64,13 +64,13 @@ msgstr "Tabeli kommentaarid:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -81,9 +81,9 @@ msgstr "Tabeli kommentaarid:" msgid "Column" msgstr "Veerg" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -94,12 +94,12 @@ msgstr "Veerg" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -111,9 +111,9 @@ msgstr "Veerg" msgid "Type" msgstr "Tüüp" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -124,15 +124,15 @@ msgstr "Tüüp" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Tühi" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -143,14 +143,14 @@ msgstr "Tühi" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Vaikimisi" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -160,7 +160,7 @@ msgstr "Vaikimisi" msgid "Links to" msgstr "Viitab aadressile" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -174,19 +174,19 @@ msgstr "Viitab aadressile" msgid "Comments" msgstr "Kommentaarid" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primaarne" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -194,13 +194,13 @@ msgstr "Primaarne" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -208,17 +208,17 @@ msgstr "Primaarne" msgid "No" msgstr "Ei" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -227,13 +227,13 @@ msgstr "Ei" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -245,15 +245,15 @@ msgstr "Jah" msgid "View dump (schema) of database" msgstr "Vaata andmebaasi tõmmist (skeemi)" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Andmebaasist tabeleid ei leitud." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -262,8 +262,8 @@ msgid "Tables" msgstr "Tabelid" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -271,10 +271,10 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -287,27 +287,27 @@ msgstr "Struktuur" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Andmed" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Vali kõik" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "%1$s andmebaasi uueks nimeks on %2$sˇ." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "%1$s andmebaas on kopeeritud kohta %2$s." @@ -318,38 +318,38 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmini seadistuse salvestus on deaktiveeritud. %sVaata põhjust%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Näitamiseks pead valima vähemalt ühe veeru!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mine %sgraafilisele loojale%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Ligipääs keelatud!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Jälgimise andmed kustutati edukalt." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "Versioon %1$s loodi valitud tabelitele; nende jälgimine on aktiveeritud." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Ühtegi tabelit ei ole valitud." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Andmebaasi logi" @@ -387,131 +387,131 @@ msgstr "Halb tüüp!" msgid "Bad parameters!" msgstr "Halvad parameetrid!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" veeru väärtus" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Kasuta OpenStreetMaps kaarti põhjana" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geomeetria %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Lisa punkt" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Rea sõne %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Välimine ring:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Sisemine ring %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Lisa rea sõne" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Lisa sisemine ring" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Hulktahukas %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Lisa hulktahukas" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Lisa geomeetria" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Mine" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Väljund" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,19 +519,19 @@ msgstr "" "Vali väärtus \"GeomFromText\" veerust \"Function\" ja kleebi allolev sõne " "väljale \"Value\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Õnnestus" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Nurjus" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Puudulikud parameetrid" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -540,15 +540,15 @@ msgstr "" "Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe " "%sdokumentatsioonist%s, kuidas sellest piirangust vabaneda." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Järjehoidja on kustutatud." -#: import.php:489 +#: import.php:486 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 " @@ -558,24 +558,24 @@ msgstr "" "maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata " "[doc@faq1-16]KKK 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Loodi järjehoidja %s." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importimine lõpetati edukalt, teostati %d päring." msgstr[1] "Importimine lõpetati edukalt, teostati %d päringut." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -584,7 +584,7 @@ msgstr "" "Ületati skripti ooteaeg. Kui tahad importimise lõpetada, siis palun %ssaada " "fail uuesti%s ja importimine jätkub poolelijäänud kohast." -#: import.php:632 +#: import.php:629 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." @@ -593,7 +593,7 @@ msgstr "" "phpMyAdmin ei suuda importimist lõpetada, kuni sa ei suurenda php aja " "piiranguid." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud on keelatud." @@ -601,17 +601,17 @@ msgstr "\"DROP DATABASE\" käsud on keelatud." msgid "Could not load the progress of the import." msgstr "Importimise edenemise laadimine nurjus." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Tagasi" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmini Demo Server" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -621,107 +621,107 @@ msgstr "" "Oled kasutamas demo serverit. Sa saad siin teha kõike, kuid palun ära muuda " "kasutajaid root, debian-sys-maint ja pma. Lisainfot leiad siit: %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Üldised sätted" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Muuda parooli" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Serveri ühenduse kodeering" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Välimuse sätted" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Rohkem sätteid" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Andmebaasi server" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Serveri tüüp:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Serveri versioon:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protokolli versioon:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Kasutaja:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Serveri märgitabel:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Veebiserver" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Andmebaasi kliendi versioon:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP laiend:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP versioon:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Versiooniinfo:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentatsioon" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Ametlik koduleht" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Anna oma panus" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Hangi abi" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Muudatuste nimekiri" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Litsents" -#: index.php:443 +#: index.php:444 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 " @@ -731,7 +731,7 @@ msgstr "" "märgitabelit. Ilma mbstring laiendita ei suuda phpMyAdmin sõnesid " "korralikult poolitada ja see võib viia ettearvamatute tulemusteni." -#: index.php:458 +#: index.php:459 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." @@ -740,7 +740,7 @@ msgstr "" "keelatud ka mõned võimalused nagu vigade raporteerimine või versiooni " "kontroll." -#: index.php:473 +#: index.php:474 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 " @@ -752,7 +752,7 @@ msgstr "" "väiksem, kui phpMyAdminis seadistatud küpsise kehtivus. Seetõttu võib " "sessioon aeguda kiiremini, kui phpMyAdminis seadistatud." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -761,15 +761,15 @@ msgstr "" "küpsise kehtivus, seetõttu sinu sisselogimine aegub varem, kui phpMyAdminis " "seadistatud." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Seadistusfail vajab nüüd turvasõna (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "Konfiguratsioonis (blowfish_secret) on salastatud fraas liiga lühike." -#: index.php:528 +#: index.php:529 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 " @@ -781,7 +781,7 @@ msgstr "" "kataloogi kindlasti kustutama. Vastasel korral võivad su serveri turvalisust " "ohustada isikud, kes on alla laadinud serveri seadistuste faili." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -790,14 +790,14 @@ msgstr "" "phpMyAdmini häälestuse salvestuskoht ei ole lõplikult häälestatud; mõned " "laiendatud funktsioonid ei ole aktiveeritud. %sVaata põhjust%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Alternatiivina mine suvalises andmebaasis sakile 'Operatsioonid' ja seadista " "ta seal." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -806,7 +806,7 @@ msgstr "" "Sinu PHP MySQL'i teegi versioon %s erineb sinu MySQL serveri versioonist %s. " "See võib põhjustada ettearvamatut käitumist." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -976,7 +976,7 @@ msgid "Save & close" msgstr "Salvesta ja sule" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Lähtesta" @@ -1008,7 +1008,7 @@ msgstr "Lisa indeks" msgid "Edit index" msgstr "Muuda indeksit" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Lisa indeksisse %s veerg(u)" @@ -1033,10 +1033,10 @@ msgstr "Palun vali indeksi veerg(u)." msgid "You have to add at least one column." msgstr "Pead lisama vähemalt ühe veeru." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQL eelvaade" @@ -1048,7 +1048,7 @@ msgstr "Simuleeri päringut" msgid "Matched rows:" msgstr "Sobivad read:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL päring:" @@ -1065,13 +1065,13 @@ msgstr "Hostinimi on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" @@ -1079,8 +1079,8 @@ msgstr "Paroolid ei kattu!" msgid "Removing Selected Users" msgstr "Valitud kasutajate kustutamine" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Sulge" @@ -1102,19 +1102,19 @@ msgstr "Mall on kustutatud." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Muud" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1220,40 +1220,40 @@ msgid "Processes" msgstr "Protsessid" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1271,7 +1271,7 @@ msgstr "Päringud" msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Sätted" @@ -1285,16 +1285,16 @@ msgid "Please add at least one variable to the series!" msgstr "Palun lisa seeriasse vähemalt üks muutuja!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Puudub" @@ -1488,20 +1488,20 @@ msgstr "Analüüsimine…" msgid "Explain output" msgstr "Selgita väljundit" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Olek" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Aeg" @@ -1588,10 +1588,10 @@ msgstr "" "Lähtestamine vaikimisi seadistusse…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Impordi" @@ -1664,7 +1664,7 @@ msgstr "Parameetrid puuduvad!" msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Lehega seonduvad sätted" @@ -1704,8 +1704,8 @@ msgid "Error text: %s" msgstr "Vea tekst: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." @@ -1743,7 +1743,7 @@ msgstr "Andmebaasi kopeeritakse" msgid "Changing charset" msgstr "Märgitabeli muutmine" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Luba võõrvõtme(te) kontrollid" @@ -1771,71 +1771,76 @@ msgstr "Vaatamine" msgid "Deleting" msgstr "Kustutamine" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Kustutada %s tabeli vasted?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Ekspordi" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET toimeti" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "%s veeru väärtused" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Uue veeru väärtused" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Sisesta iga väärtus eraldi väljale." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Lisa %d väärtus(t)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Märkus: Kui fail sisaldab mitut tabelit, siis need liidetakse kokku." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Peida päringu kast" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Näita päringu kasti" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1843,53 +1848,53 @@ msgstr "Näita päringu kasti" msgid "Edit" msgstr "Muuda" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Kustuta" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Automaatselt salvestatud päringuid ei ole" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Muutuja %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Vali" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Veeru valija" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Otsi sellest loendist" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1898,15 +1903,15 @@ msgstr "" "Keskne loend ei sisalda veerge. Palun kontrolli, et andmebaasi %s keskne " "veergude loend sisaldaks veerge, mis puuduvad aktiivsest tabelist." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Vaata lisaks" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Oled sa kindel?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1914,51 +1919,51 @@ msgstr "" "See tulemusel võivad muutuda mõnede veergude kirjeldused.
Kas sa oled " "kindel, et jätkata?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Jätka" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Lisa primaarvõti" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Primaarvõti lisatud." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Viiakse sind järgmisele sammule…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Tabeli \"%s\" normaliseerimise esimene samm on lõpetatud." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Sammu lõpp" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Normaliseeriminse teine samm (2NK)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Valmis" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Kinnita osalised sõltuvused" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Valitud osalised sõltuvused on järgnevad:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1966,21 +1971,21 @@ msgstr "" "Märkus: a, b -> d, f kaasab väärtused veergudest a ja b, mis kombineeritult " "määravad väärtused veergudes d ja f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Ühtegi osalist sõltuvust ei ole valitud!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Kuva mulle võimalikud osalised sõltuvused vastavalt tabelis olevatele " "andmetele" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Peida osaliste sõltuvuste nimekiri" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1988,179 +1993,179 @@ msgstr "" "Palun oota! See võib võtta aega mõned sekundid olenevalt andmete suurused ja " "tabeli veergude arvust." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Samm" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Teostatakse järgnevad päringud:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Kustuta (DROP) veerud %s tabelist %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Loo järgmine tabel" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Normaliseerimise kolmas samm (3NK)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Kinnita transitiivsed sõltuvused" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Valitud sõltuvused on järgnevad:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Ühtegi sõltuvust ei ole valitud!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvesta" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Peida otsingu kriteerium" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Näita otsingu kriteeriumi" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Vahemiku otsing" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Veeru maksimum:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Veeru miinimum:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Väikseim väärtus:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Suurim väärtus:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Peida 'leia ja asenda' kriteerium" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Kuva 'leia ja asenda' kriteeriumi" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Iga punkt tähendab andmete rida." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Kursori üleliigutamisel näitab punkt selle nime." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Vali graafiku suumitav ala hiirega." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Algoleku taastamiseks vajuta suurenduse lähtestamise nuppu." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Kliki andmepunktil, et vaadata ja vajadusel muuta andmete rida." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Diagrammi suurust saab muuta, kui lohistada seda alumist paremat nurkapidi." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Vali kaks veergu" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Vali kaks erinevat veergu" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Andmepunkti sisu" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopeeri" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Rea sõne" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Hulktahukas" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geomeetria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Sisemine ring" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Välimine ring" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Kas sa soovid kopeerida krüpteerimisvõtme?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Krüpteerimisvõti" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2168,24 +2173,24 @@ msgstr "" "Näitab, et lehel on tehtud muudatusi; muudatustest loobumisel küsitakse su " "käest kinnitust" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Vali osutatud võti" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Vali võõrvõti" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Palun vali primaarvõti või unikaalne nimi!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Vali veerg, mida näidata" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2193,76 +2198,76 @@ msgstr "" "Sa ei ole muudatusi salvestanud. Kui sa neid ei salvesta, siis need lähevad " "kaotsi. Kas soovid jätkata?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Lehe nimi" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salvesta leht" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salvesta leht nimega" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ava lehe" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Kustuta leht" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetu" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Palun vali jätkamiseks leht" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Palun sisesta korrektne lehe nimi" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Kas sa soovid salvestada muudatused sellel leheküljel?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Lehekülje kustutamine õnnestus" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Ekspordi seosteskeem" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Muutused on salvestatud" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisa säte veerule \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "Loodi %d objekt(i)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Saada" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Muutmisest loobumiseks vajuta ESC." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2270,15 +2275,15 @@ msgstr "" "Sa muutsid mõningaid andmed ja neid pole veel salvestatud. Oled kindel, et " "soovid enne andmete salvestamist sellelt lehelt lahkuda?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Järjekorra muutmiseks lohista." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Klõpsa selle veeru järgi sortimiseks." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2288,26 +2293,26 @@ msgstr "" "režiimi.
- Ctrl+klõps või Alt+klõps (Mac: Shift+Option+klõps) eemaldab " "veeru ORDER BY klauslist" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klõpsa valimiseks/mittevalimiseks." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Veeru nime kopeerimiseks tee sellel topeltklõps." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Näita kõiki" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2316,12 +2321,12 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud " "funktsionaalsus ei pruugi pärast salvestamist toimida." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Palun sisesta korrektne kuueteistkümnend sõne. Lubatud märgid on 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2329,100 +2334,100 @@ msgstr "" "Kas sa soovid tõesti näha kõiki ridu? Suur tabel nagu see võib põhjustada " "krahhi lehitsejas." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Algne pikkus" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "katkesta" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Katkestatud" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Õnnestus" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Impordi olek" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Kukuta failid siia" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Vali esmalt andmebaas" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Prindi" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Sa saad ka muuta enamikke väärtuseid,
kui teed nende sisul topeltkliki." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "Sa saad ka muuta enamikke väärtuseid,
kui klikid nende peal." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Mine lingile:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopeeri veeru nimi." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Rohkem" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Paneeli kuvamine" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Peida paneel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Kuva peidetud navigeerimispaneeli elemendid." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Lingi peapaneeli" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Kustuta link peapaneeli" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Valitud lehte ei leitud ajaloost, see võib olla aegunud." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2432,41 +2437,41 @@ msgstr "" "Uusim versioon on %s, välja antud %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", viimane stabiilne versioon:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "ajakohane" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Loo vaade" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Saada vearaport" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Saada vearaport" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Saatuslik JavaScripti viga; kas sa soovid saata vearaporti?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Muuda raporti sätteid" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Kuva raporti detailid" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2474,7 +2479,7 @@ msgstr "" "Su eksport on mittetäielik, sest PHP skripti töötamiseks lubatud aeg on " "liiga väike!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2483,58 +2488,58 @@ msgstr "" "Hoiatus: sellel lehel oleval vormil on enam kui %d välja. Vormi saatmisel " "võidakse mõne välja sisu eirata tänu PHP sättele max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Server tuvastas mõned vead!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Palun vaata selle akna alumisse serva." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignoreeri kõiki" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Palun oota, sinu sätteid saadetakse hetkel." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Kas käivitada see päring uuesti?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Kas sa soovid tõesti kustutada selle järjehoidja?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "SQL silumisinfo hankimisel esines vigu." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s päringut käivitati %s korda %s sekundiga." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "edastati %s argument(i)" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Kuva argumendid" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Peida argumendid" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Aega kulus:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2550,349 +2555,369 @@ msgstr "" "kustutada \"Veebisaitide lokaalsed andmed\". Safaris põhjustab seda üsna " "tihti privaatrežiim." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Kopeeri tabelid kohta" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Lisa tabeli eesliide" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Asenda tabel eesliitega" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopeeri tabel koos eesliitega" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Eelmine" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Täna" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Jaanuar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Veebruar" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Märts" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Aprill" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Juuni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Juuli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "August" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "September" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Oktoober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "November" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dets" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Pühapäev" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Esmaspäev" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Teisipäev" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Kolmapäev" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Neljapäev" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Reede" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Laupäev" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "E" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "N" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "R" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "L" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Näd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalender-kuu-aasta" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "puudub" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Tund" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minut" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekund" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "See väli on kohustuslik" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Palun paranda see väli" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Palun sisesta korrektne e-posti aadress" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Palun sisesta korrektne URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Palun sisesta korrektne kuupäev" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Palun sisesta korrektne kuupäev (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Palun sisesta korrektne number" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Palun sisesta korrektne krediitkaardi number" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Palun sisesta ainult numbrid" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Palun sisesta sama väärtus uuesti" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Palun sisesta kuni {0} märki" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Palun sisesta vähemalt {0} märki" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Palun sisesta väärtus pikkusega {0} kuni {1} tähte" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Palun sisesta väärtus vahemikust {0} kuni {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Palun sisesta väärtus, mis on väiksem kui või võrdne {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Palun sisesta väärtus, mis on suurem kui või võrdne {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Palun sisesta korrektne kuupäev või kellaaeg" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Palun sisesta korrektne 16-nd väärtus" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Viga" @@ -2953,20 +2978,20 @@ msgid "Charset" msgstr "Märgitabel" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Kodeering" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binaarne" @@ -3161,7 +3186,7 @@ msgid "Czech-Slovak" msgstr "Tsehhi-Slovaki" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "tundmatu" @@ -3209,49 +3234,49 @@ msgstr "" msgid "Font size" msgstr "Fondi kõrgus" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Kuvatakse %1$d järjehoidja (isiklikud ja ühised)" msgstr[1] "Kuvatakse %1$d järjehoidjat (isiklikud ja ühised)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Järjehoidjad puuduvad" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL päringu konsool" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Seadistatud sortimise ühenduse määramine ebaõnnestus!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Server ei vasta." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detailid…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Puuduvad ühenduse parameetrid!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus." @@ -3345,110 +3370,105 @@ msgstr "Lisa:" msgid "Del:" msgstr "Kustuta:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL päring %s andmebaasis:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Saada päring" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Salvestatud järjehoidjate otsing:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Uus järjehoidja" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Loo järjehoidja" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Uuenda järjehoidjat" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Kustuta järjehoidja" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "vähemalt üks sõna" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "kõik sõnad" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "täpne vaste" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "regulaaravaldisena" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s otsingu tulemused:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Kokku: %s vaste" msgstr[1] "Kokku: %s vastet" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s vaste %2$s tabelis" msgstr[1] "%1$s vastet %2$s tabelis" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Vaata" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Kustutada %s tabeli vasted?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Otsi andmebaasist" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Sõnad või väärtused, mida otsida (metamärk: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Leia:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Sõnad on eraldatud tühikuga (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Tabelitest:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Ära vali ühtegi" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Veerust:" @@ -3468,30 +3488,30 @@ msgstr "Filtreeritud read" msgid "Search this table" msgstr "Otsi sellest tabelist" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Algus" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Eelmine" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Järgmine" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Lõpp" @@ -3500,7 +3520,7 @@ msgstr "Lõpp" msgid "All" msgstr "Kõik" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Ridade hulk:" @@ -3509,8 +3529,8 @@ msgstr "Ridade hulk:" msgid "Sort by key" msgstr "Sorteeri võtme alusel" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3532,10 +3552,10 @@ msgstr "Sorteeri võtme alusel" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Valikud" @@ -3575,29 +3595,29 @@ msgstr "Harilik tekst" msgid "Well Known Binary" msgstr "Harilik binaar" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Rida on kustutatud." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Sulge" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Sinu SQL päring teostati edukalt." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3605,73 +3625,73 @@ msgid "" msgstr "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Kuvatakse read %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "Kokku %1$d, päringus %2$d" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "kokku: %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "päring kestis %01.4f sekundit." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Valitutega:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Vali kõik" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopeeri lõikelauale" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Näita diagrammi" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualiseeri GIS andmed" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Linki ei leitud!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Puudub" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konverdi Kana'ks" @@ -3679,71 +3699,71 @@ msgstr "Konverdi Kana'ks" msgid "Too many error messages, some are not displayed." msgstr "Liiga palju veasõnumeid, mõningaid pole näha." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Raport" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Saada järgmisel korral raport automaatselt" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Fail ei olnud üleslaetud fail." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Üleslaetud fail ületab upload_max_filesize väärtust php.ini failis." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Üleslaetud fail ületab MAX_FILE_SIZE väärtust, mis täpsustati HTML vormis." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Üleslaetud fail laeti üles vaid osaliselt." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Ajutine kaust puudub." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Faili salvestamine kettale ebaõnnestus." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Laiend peatas faili üleslaadimise." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Faili üleslaadimises on tundmatu viga." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Fail on nimeviit" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Faili ei saanud lugeda!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Üleslaetud faili liigutamisel esines viga, vaata [doc@faq1-11]KKK 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Üleslaetud faili liigutamisel esines viga." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Ei saa lugeda üleslaaditud faili." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3752,28 +3772,28 @@ msgstr "" "Üritasid laadida mittetoetatava tihendamisega faili (%s). Selle tugi on pole " "loodud või on seadistuses keelatud." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Kasutad Git'i redaktsiooni %1$s harust %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git'i informatsioon puudub!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmini aken" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Prindi vaade" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Kliki ribal, et lehe alguessse kerida" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript peab olema lubatud!" @@ -3782,20 +3802,20 @@ msgid "No index defined!" msgstr "Indeksit pole määratud!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksid" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3805,59 +3825,59 @@ msgstr "Indeksid" msgid "Action" msgstr "Tegevus" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Võtme nimi" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Ainulaadne" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pakitud" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Hulk" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Kommentaar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primaarvõti on kustutatud." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "%s indeks on kustutatud." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Kustuta" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3866,19 +3886,19 @@ msgstr "" "%1$s ja %2$s indeksid tunduvad olema võrdsed ja üks neist tõenäoliselt " "kustutatakse." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Leht:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Tundmatu keele kood jäeti vahele." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Keel" @@ -3903,11 +3923,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3926,14 +3946,15 @@ msgid "View" msgstr "Vaade" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3942,8 +3963,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3951,45 +3972,45 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Otsi" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Lisa" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Õigused" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Tegevused" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Jälgimine" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4005,16 +4026,16 @@ msgstr "Päästikud" msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Päring" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Funktsioonid" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4022,20 +4043,20 @@ msgstr "Funktsioonid" msgid "Events" msgstr "Sündmused" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Kujundaja" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Kesksed veerud" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Andmebaasid" @@ -4044,53 +4065,53 @@ msgid "User accounts" msgstr "Kasutajate kontod" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binaarne logi" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Paljundamine" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Muutujad" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Märgitabelid" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Mootorid" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Pluginad" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "Mõjutati %1$d rida." msgstr[1] "Mõjutati %1$d rida." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "Kustutati %1$d rida." msgstr[1] "Kustutati %1$d rida." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4138,27 +4159,27 @@ msgstr "Lemmikute tabel" msgid "Favorites" msgstr "Lemmikud" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Palun sisesta nimi sellele järjehoidja otsingule." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Otsingu järjehoidja salvestamiseks on vaja täiendavat informatsiooni." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Sellise nimega kirje on juba olemas." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Otsingu kustutamiseks on vaja täiendavat informatsiooni." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Otsingu laadimiseks on vaja täiendavat informatsiooni." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Otsingu laadimisel esines viga." @@ -4220,7 +4241,7 @@ msgstr "Näita avatud tabeleid" msgid "Show slave hosts" msgstr "Näita alluvaid hoste" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Näita ülema staatust" @@ -4274,69 +4295,69 @@ msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minutit" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Detailne staatuse teave antud varundusmootori kohta puudub." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on selle MySQL serveri vaikimisi varundusmootor." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on saadaval selles MySQL serveris." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s on keelatud selle MySQL serveri jaoks." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "See MySQL server ei toeta %s varundusmootorit." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Tabeli olek tundmatu:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähteandmebaasi `%s` ei leitud!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Sihtandmebaasi `%s` ei leitud!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Vigane andmebaas:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Vigane tabeli nimi:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Tabeli %1$s ümbernimetamine %2$s'ks ebaõnnestus!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tabeli uueks nimeks sai %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Tabeli kasutajaliidese eelistusi ei saanud salvestada!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4345,7 +4366,7 @@ msgstr "" "Tabeli UI eelistuste puhastamine ebaõnnestus (vaata $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4355,19 +4376,19 @@ msgstr "" "Ei saanud salvestada UI muudatust \"%s\". Muudatused ei säili, kui " "värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primaarvõtme nimi peab olema \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Ei saa muuta indeksi nimeks PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Indeksi osasid pole defineeritud!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Viga võõrvõtme loomisel kohas %1$s (kontrolli andmete tüüpe)" @@ -4688,7 +4709,7 @@ msgid "Date and time" msgstr "Kuupäev ja aeg" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Sõne" @@ -4703,126 +4724,126 @@ msgstr "Ruumiline" msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Staatiline analüüs:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Analüüsi käigus avastati %d viga." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL vastas: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Selgita SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Jäta SQL selgitus vahele" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analüüsi ja seleta kohal %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "PHP koodita" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Saada päring" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Loo PHP kood" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Uuenda" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profileerimine" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Muuda kohapeal" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Päike" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y kell %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Puudulik parameeter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Mine \"%s\" andmebaasi." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Sirvi oma arvutist:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Valitud üleslaadimise kataloogile ei pääse ligi." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Puuduvad failid, mida üles laadida!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tühjenda" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Teosta" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Kasutajad" @@ -4836,7 +4857,7 @@ msgstr "minutis" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "tunnis" @@ -4844,12 +4865,12 @@ msgstr "tunnis" msgid "per day" msgstr "päevas" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Otsi:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4857,7 +4878,7 @@ msgstr "Otsi:" msgid "Description" msgstr "Kirjeldus" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Kasuta seda väärtust" @@ -4897,22 +4918,22 @@ msgstr "JAH" msgid "NO" msgstr "EI" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nimi" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Pikkus/Väärtused" @@ -4921,7 +4942,7 @@ msgstr "Pikkus/Väärtused" msgid "Attribute" msgstr "Atribuut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "T_I" @@ -4938,11 +4959,11 @@ msgstr "Lisa veerg" msgid "Select a column." msgstr "Vali veerg." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Lisa uus veerg" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4950,7 +4971,7 @@ msgstr "Lisa uus veerg" msgid "Attributes" msgstr "Atribuudid" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4959,26 +4980,26 @@ msgstr "" "Oled PHP seadistuses lubanud mbstring.func_overload. See ei ühildu " "phpMyAdminiga ja võib andmeid rikkuda!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Vale serveri indeks: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vale hostinimi %1$s serverile. Palun kontrolli oma seadistust." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Seadistuses on valitud vale autentimise meetod:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4989,20 +5010,20 @@ msgstr "" "häälestuses sätet [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin kasutab hetkel andmebaasi serveri vaikimisi ajatsooni." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Peaksid uuendama %s %s või uuemale versioonile." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Viga: sobimatu sümbol" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ülekirjutamise katse" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "võimalik turvaauk" @@ -5589,7 +5610,7 @@ msgid "Compress on the fly" msgstr "Tihenda lennult" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Seadistusfail" @@ -5694,12 +5715,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Suurim teostamise aeg" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Kasuta käsku %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Salvesta failina" @@ -5709,7 +5730,7 @@ msgstr "Faili märgitabel" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formaat" @@ -5834,7 +5855,7 @@ msgid "Save on server" msgstr "Salvesta serverisse" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Kirjuta olemasolev(ad) fail(id) üle" @@ -5847,7 +5868,7 @@ msgid "Remember file name template" msgstr "Jäta meelde faili nime mall" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" @@ -5856,7 +5877,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Aseta tabeli ja veeru nimed alumise ja ülemise jutumärgi vahele" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL ühilduvuse meetod" @@ -5886,7 +5907,7 @@ msgstr "Ekspordi seotud metaandmed phpMyAdmini häälestuse salvestuskohast" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Lisa %s" @@ -6056,7 +6077,7 @@ msgid "Customize the navigation tree." msgstr "Muuda navigeerimispuud." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serverid" @@ -6946,7 +6967,7 @@ msgstr "HTTP ligipääsuala" msgid "Authentication method to use." msgstr "Kasutatav autentimise meetod." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Autentimise tüüp" @@ -7669,7 +7690,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Luba sätetes kujundaja vaheleht" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Kontrolli uusimat versiooni" @@ -7677,10 +7698,10 @@ msgstr "Kontrolli uusimat versiooni" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Lubab phpMyAdmini pealehel kontrollida viimast versiooni." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versiooni kontroll" @@ -7826,24 +7847,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument tekst" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Lemmikute nimekiri on täis!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s on tühjendatud." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Vaade %s kustutati." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabel %s kustutati." @@ -7857,12 +7878,12 @@ msgid "Position" msgstr "Asukoht" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Sündmuse tüüp" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Serveri ID" @@ -7871,7 +7892,7 @@ msgid "Original position" msgstr "Algne asukoht" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informatsioon" @@ -7885,42 +7906,42 @@ msgstr "Lühenda näidatavaid päringuid" msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Andmebaasid puuduvad" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Andmebaas %1$s on loodud." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d andmebaas kustutati edukalt." msgstr[1] "%1$d andmebaasi kustutati edukalt." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Ridu" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Kokku" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Ballast" @@ -7947,32 +7968,32 @@ msgstr "" msgid "Enable statistics" msgstr "Luba statistika" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "Puuduvad õigused serveri muutujate ja sätete kuvamiseks. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Muutuja seadmine ebaõnnestus" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Puudub SQL päring andmete hankimiseks." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Graafiku loomiseks puuduvad tabelis numbritüüpi veerud." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Puuduvad kuvatavad andmed" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabeli %1$s muutmine õnnestus." @@ -8015,7 +8036,7 @@ msgstr "Veerud on edukalt liigutatud." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Päringu viga" @@ -8032,12 +8053,12 @@ msgstr "Muuda" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8058,13 +8079,13 @@ msgstr "Täistekst" msgid "Distinct values" msgstr "Erista väärtusi" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muudetud" @@ -8086,31 +8107,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Skeemi pluginaid ei suudetud laadida, palun kontrolli oma paigaldust!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Ilma paroolita" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Parool:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Tipi uuesti:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Parooli räsimine:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8119,83 +8144,83 @@ msgstr "" "See meetod nõuab, et servieriga luuakse kas 'SSL ühendus' või " "'turvamata ühendus, mis krüpteerib salasõna RSA algorimiga'." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Andmebaaside eksportimine käesolevast serverist" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Tabelite eksportimine \"%s\" andmebaasist" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Ridade eksportimine \"%s\" tabelist" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Ekspordi mallid:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Uus mall:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Malli nimi" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Loo" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Olemasolevad mallid:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Mall:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Uuenda" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Vali mall" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Ekspordi meetod:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Kiire - näita ainult peamisi valikuid" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Kohandatud - näita kõiki võimalikke valikuid" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Andmebaasid:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabelid:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formaat:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Formaadipõhised valikud:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8203,52 +8228,52 @@ msgstr "" "Keri alla, et näha valikuid valitud formaadi jaoks ja ignoreeri teiste " "formaatide valikuid." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Kodeerimise teisendus:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Read:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Loo mõnest reast tõmmis" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Rida alustab kohast:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Loo tõmmis kõikidest ridadest" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Väljund:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Salvesta serveri %s kataloogi" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Faili nime mall:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ saab serveri nimeks" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ saab andmebaasi nimeks" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ saab tabeli nimeks" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8259,99 +8284,99 @@ msgstr "" "aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud " "tekst jääb nii nagu see on. Detailide lugemiseks vaata %4$sKKK%5$s'd." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "kasuta seda edasistel eksportimistel" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Faili märgitabel:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Tihendamine:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zipitud" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzipitud" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Vaata väljundit tekstina" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Ekspordi andmebaasid eraldi failidena" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Ekspordi tabelid eraldi failidena" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Nimeta eksporditud andmebaasid/tabelid/veerud ümber" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Salvesta väljund failisse" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Jäta vahele tabelid, mis on suuremad kui" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Vali andmebaas" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Vali tabel" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Uue andmebaasi nimi" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Uue tabeli nimi" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Vana veeru nimi" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Uue veeru nimi" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Ei saanud laadida eksportimise pluginaid, palun kontrolli oma paigaldust!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s harust %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "haru puudub" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git'i versioon:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "Lisas %2$s %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%2$s poolt loodud %1$s" @@ -8800,13 +8825,13 @@ msgstr "" "PBXT kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt" "%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faili salvestamiseks pole piisavalt ruumi." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8814,76 +8839,76 @@ msgstr "" "%s fail on juba serveris olemas, muutke faili nime või kontrollige " "ülekirjutamise valikuid." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veebiserveril pole %s faili salvestamiseks õigusi." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Tõmmis salvestati %s faili." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[Toimus tagasipööramine.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Järgnevaid struktuure on kas loodud või muudetud. Siin saad:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Vaata struktuuri sisu, klõpsates selle nimel." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Selle mistahes sätte muutmiseks klõpsa vastaval viidal \"Valikud\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Struktuuri muutmiseks klõpsa lingil \"Struktuur\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Mine andmebaasi: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Muuda %s sätteid" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Mine tabelisse: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s struktuur" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Mine vaatesse: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Simuleerida on võimalik ainult ühe tabeli uuendamise ja kustutamise " "päringuid." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8896,86 +8921,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Loo indeks  %s veergudesse" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Peida" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funktsioon" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Oma pikkuse tõttu ei pruugi
see veerg olla muudetav." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binaarne - ära muuda" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Või" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "veebiserveri üleslaadimiskataloog:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Muuda/Lisa" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Jätka %s rea lisamist" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ja siis" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Lisa uue reana ja ignoreeri vigu" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Näita lisamise päringut" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Ühelt väärtuselt teisele liikumiseks kasuta klahvi TAB; mujale liikumiseks " "kasuta CTRL + nooled." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8986,31 +9012,31 @@ msgstr "" msgid "Value" msgstr "Väärtus" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Õnnestus!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Ainult struktuur" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktuur ja andmed" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Ainult andmed" @@ -9019,14 +9045,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Lisa AUTO INCREMENT väärtus" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Lisa piiranguid" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Kohanda õiguseid" @@ -9071,8 +9097,8 @@ msgstr "Toimingud:" msgid "Views:" msgstr "Vaated:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Näita" @@ -9115,17 +9141,17 @@ msgid_plural "%s results found" msgstr[0] "%s tulemus leitud" msgstr[1] "%s tulemust leitud" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Sisesta filter; Enter otsib kõiki" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Puhasta kiire filter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Ahenda kõik" @@ -9140,7 +9166,7 @@ msgstr "Vigane klassi nimi \"%1$s\", kasutan \"Node\" vaikeväärtust" msgid "Could not load class \"%1$s\"" msgstr "Klassi \"%1$s\" laadimine nurjus" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Laienda/ahenda" @@ -9159,7 +9185,7 @@ msgstr "Uus" msgid "Database operations" msgstr "Toimingud andmebaasiga" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Kuva peidetud elemendid" @@ -9264,11 +9290,11 @@ msgstr "" "Vali veerg, mida on võimalik jagada mitmeks veeruks (valides \"Sellist " "veergu ei ole\", liigutakse järgmise sammu juurde)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Vali üks…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Sellist veergu ei ole" @@ -9542,8 +9568,8 @@ msgid "Rename database to" msgstr "Andmebaasi uus nimi" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9589,177 +9615,177 @@ msgstr "(üksikult)" msgid "Move table to (database.table)" msgstr "Teisalda tabel kohta (andmebaas.tabel)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Muuda tabeli nimeks" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabeli kommentaarid" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabeli valikud" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Varundusmootor" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Vaheta kõigi veergude sortimist" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopeeri tabel kohta (andmebaas.tabel)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Mine kopeeritud tabelisse" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabeli hooldus" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Kontrolli tabelit" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Kontrollsumma tabel" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmendi tabel" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabeli %s välismälu on tühjendatud." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Puhasta tabel (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimeeri tabelit" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Paranda tabelit" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Kustuta andmed või tabel" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Tühjenda tabel (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Kustuta tabel (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analüüsi" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Kontrolli" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimeeri" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Loo uuesti" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Paranda" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Kärbi" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Sulanda kokku" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Partitsiooni hooldus" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "%s partitsioon" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Eemalda partitsioneerimine" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Ei saa tabelit iseendasse liigutada!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Ei saa tabelit iseendasse kopeerida!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s liigutati andmebaasi %s. Õiguseid kohandati vastavalt." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s kopeeriti andmebaasi %s. Õiguseid kohandati vastavalt." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tabel liigutati %s andmebaasi." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tabel kopeeriti %s andmebaasi." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tabeli nimi on tühi!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Sellel formaadil pole valikuid" @@ -9787,18 +9813,18 @@ msgstr "Näita värvi" msgid "Only show keys" msgstr "Näita ainult võtmeid" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Ei saa ühendust: vigased sätted." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Tere tulemast %s'i" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9807,7 +9833,7 @@ msgstr "" "Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada " "%1$spaigaldaja skripti%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9819,7 +9845,7 @@ msgstr "" "veenduma, et need vastavad MySQL serveri administraatori käest saadud " "andmetega." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Proovi uuesti ühenduda" @@ -9844,15 +9870,15 @@ msgstr "Kasutajanimi:" msgid "Server Choice:" msgstr "Serveri valik:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Sisestatud tekst on vale. Proovi uuesti!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Palun sisesta korrektne tekst!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Sul ei ole lubatud sellesse MySQL serverisse meldida!" @@ -9913,7 +9939,7 @@ msgstr "Andmete tõmmise valikud" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" @@ -9922,7 +9948,7 @@ msgstr "Andmete tõmmistamine tabelile" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Sündmus" @@ -9930,8 +9956,8 @@ msgstr "Sündmus" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definitsioon" @@ -10017,7 +10043,7 @@ msgstr "Aseta veergude nimed esimesse ritta:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -10546,7 +10572,7 @@ msgstr "Sisu tabel" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Lisaks" @@ -10921,11 +10947,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "kirjeldus puudub" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -10935,7 +10961,7 @@ msgstr "" "suvalise andmebaasi kaardile 'Operatsioonid' ja määrata phpMyAdmini " "häälestuse salvestamine sinna." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -10944,40 +10970,40 @@ msgstr "" "%sLoo%s andmebaas 'phpmyadmin' ja häälesta phpMyAdmini seadistuse " "salvestamine sinna." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sLoo%s phpMyAdmini seadistuse salvestuse tabelid aktiivses andmebaasis." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sLoo%s puuduvad phpMyAdmini seadistuse salvestuse tabelid." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Ülema paljundamine" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "See server on paljundamisel seatud ülemaks." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Näita ühendatud alluvaid" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Lisa alluva paljundamise kasutaja" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Ülema seadistus" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10990,19 +11016,19 @@ msgstr "" "paljundada enamuse andmebaasidest) või ignoreerid vaikimisi kõiki andmebaase " "ja lubad paljundada ainult mõningaid andmebaase. Palun vali meetod:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Paljunda kõiki andmebaase, ignoreeri:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignoreeri kõiki andmebaase, paljunda:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Palun vali andmebaasid:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11010,7 +11036,7 @@ msgstr "" "Nüüd lisa järgnevad read oma my.cnf faili [mysqld] sektsiooni lõppu ja peale " "seda palun taaskäivita MySQL server." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11020,69 +11046,69 @@ msgstr "" "Seejärel peaksid nägema sõnumeid, mis teavitavad sind, et see server on seadistatud ülemaks." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Alluva paljundamine" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Ühendus ülemaga:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Alluva SQL lõim ei tööta!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Alluva IO lõim ei tööta!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server on seadistatud paljundamisel alluvaks. Kas soovid:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Näita alluva staatuse tabelit" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kontrolli alluvat:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Täielik käivitus" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Täielik peatamine" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Taaskäivita alluv" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Käivita ainult SQL lõim" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Peata ainult SQL lõim" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Käivita ainult IO lõim" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Peata ainult IO lõim" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Muuda või seadista ülemserver uuesti" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11091,24 +11117,24 @@ msgstr "" "See server ei ole paljundamisel seadistatud alluvaks. Kas soovid seda teha?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Vea haldus:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Vigade vahelejätmine võib rikkuda sünkroonsust ülema ja alluva vahel!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Jäta käesolev viga vahele" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Jäta järgmised %s viga vahele." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11117,11 +11143,11 @@ msgstr "" "See server ei ole paljundamisel seatud ülemaks. Kas soovid seda teha?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Alluva seadistus" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11129,53 +11155,53 @@ msgstr "" "Veendu, et sinu seadistusfailis (my.cnf) on serveril ainulaadne id. Kui " "mitte, siis palun lisa [mysqld] sektsiooni järgnev rida:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Kasutajanimi:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Kasutajanimi" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Parool" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Ülema staatus" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Alluva staatus" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Muutuja" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11183,39 +11209,39 @@ msgstr "" "Selles nimekirjas näeb ainult neid alluvaid, mis algavad --report-" "host=host_name valikuga." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Kõik hostid" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Kohalik" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "See host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Kõik kasutajad" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Kasuta tekstivälja:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Kasuta hosti tabelit" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11223,76 +11249,76 @@ msgstr "" "Kui kasutatakse hosti tabelit, siis seda välja ignoreeritakse ning selle " "asemel kasutatakse hosti tabelis olevaid väärtusi." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Tipi uuesti" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Genereeri parool:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Paljundamine algas edukalt." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Viga paljundamise alustamisel." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Paljundamine lõpetati edukalt." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Viga paljundamise lõpetamisel." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Paljundamine lähtestati edukalt." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Viga paljundamise lähtestamisel." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Edukas." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Viga." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Tundmatu viga" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Ei saa ühendada ülema %s'ga." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ei saa lugeda ülema logi asukohta. Võimalikud on probleemid ülema õigustega." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Ulemat ei saa muuta!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Ülemserveriks vahetati edukalt %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11313,7 +11339,7 @@ msgstr "%1$s sündmust on muudetud." msgid "Event %1$s has been created." msgstr "%1$s sündmus on loodud." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Sinu päringu töötlemisel esines vähemalt üks viga:" @@ -11322,75 +11348,75 @@ msgstr "Sinu päringu töötlemisel esines vähemalt üks viga:" msgid "Edit event" msgstr "Muuda sündmust" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detailid" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Sündmuse nimi" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Muuda väärtuseks %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Käivita kell" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Käivita iga" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Algus" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Lõpp" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Lõpetamisel säilita" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Määraja" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Määraja peab olema formaadis \"kasutajanimi@hostinimi\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Sa pead andma sündmuse nime!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Sa pead andma sündmusele õige intervalli väärtuse." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Sa pead andma sündmusele õige käivitamise aja." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Sa pead andma sündmusele õige tüübi." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Sa pead andma sündmuse definitsiooni." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Taotluse töötlemisel esines viga:" @@ -11411,7 +11437,7 @@ msgstr "Sündmuse ajastaja staatus" msgid "The backed up query was:" msgstr "Varundatud päring oli:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Naases" @@ -11427,72 +11453,72 @@ msgstr "" "käivitamine võib ebaõnnestuda![/strong] Probleemide vältimiseks kasuta palun " "täiustatud 'mysqli' laiendit." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Muuda funktsiooni" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Vale funktsiooni tüüp: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "%1$s funktsioon on loodud." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Vabanda, me ei suutnud kustutatud funktsiooni taastada." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Funktsiooni %1$s on muudetud. Õiguseid on vastavalt kohandatud." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "%1$s funktsiooni on muudetud." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Funktsiooni nimi" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parameetrid" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Suund" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Lisa parameeter" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Kustuta viimane parameeter" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Pöördumise tüüp" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Pöördumise pikkus/väärtused" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Pöördumise valikud" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Ette määratud" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11500,25 +11526,25 @@ msgstr "" "Sul puuduvad selle operatsiooni teostamiseks õigused. Täpsemalt vaata palun " "dokumentatsioonist" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Turvalisuse tüüp" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL andmete juurdepääs" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Sa pead andma funktsiooni nime!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Parameetrile anti vale suund \"%s\"." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11526,37 +11552,37 @@ msgstr "" "Sa pead andma ENUM, SET, VARCHAR ja VARBINARY tüüpi funktsiooni " "parameetritele pikkuse/väärtused." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Sa pead andma igale funktsiooni parameetrile nime ja tüübi." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Sa pead andma funktsioonile õige pöördumise tüübi." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Sa pead andma funktsiooni definitsiooni." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "%s funktsiooni käivitamise tulemused" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "Toimingu viimane käsk mõjutas %d rida." msgstr[1] "Toimingu viimane käsk mõjutas %d rida." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Käivita funktsioon" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Funktsiooni parameetrid" @@ -11578,32 +11604,32 @@ msgstr "Loodi päästik %1$s." msgid "Edit trigger" msgstr "Muuda päästikut" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Päästiku nimi" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Aeg" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Sa pead andma päästiku nime!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Sa pead andma päästikule õige ajastuse!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Sa pead andma päästikule õige sündmuse!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Sa pead sisestama õige tabeli nime!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Sa pead andma päästiku definitsiooni." @@ -11728,90 +11754,90 @@ msgstr "Märgitabelid ja kodeeringud" msgid "Databases statistics" msgstr "Andmebaaside statistika" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Õigused puuduvad." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Sisaldab kõiki õigusi, v.a GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Lubab lugeda andmeid." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja asendada andmeid." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Lubab muuta andmeid." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Lubab kustutada andmeid." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Lubab kustutada andmebaase ja tabeleid." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab serveri sätteid uuesti laadida ja tühjendada serveri vahemälu." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Lubab serveri välja lülitada." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Lubab kõikide kasutajate protsesside vaatamist." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmeid failidest importida ja failideks eksportida." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Muudatusi selles MySQL versioonis ei toimunud." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuuri." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaaside nimekirjale." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11821,129 +11847,102 @@ msgstr "" "on vajalik enamike administratiivsete tegevuste jaoks, nagu näiteks " "globaalsete muutujate seadmiseks või teiste kasutajate lõimude sulgemiseks." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Lubab käesoleva lõimu jaoks tabeleid lukustada." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Vajalik alluvate paljundamiseks." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida, kus alluvad / ülemad asuvad." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Lubab luua uusi vaateid." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Võimaldab luua sündmuste ajastajale sündmuseid." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Lubab luua ja kustutada päästikuid." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab teostada SHOW CREATE VIEW päringuid." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Lubab luua salvestatud funktsioone." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Lubab muuta ja kustutada salvestatud funktsioone." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab luua, kustutada ja ümber nimetada kasutajakontosid." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Lubab käivitada salvestatud funktsioone." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Puudub" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Kasutaja grupp" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Ei nõua SSL krüpteeringuga ühendusi." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Nõuab SSL krüpteeringuga ühendusi." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Nõuab kehtivat X509 sertifikaati." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Nõuab ühenduse krüpteerimist kindla meetodiga." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Nõuab, et esitataks kehtiv selle sertifitseerija väljastatud X509 " "sertifikaat." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Nõuab, et esitataks kehtiv konkreetsele isikule väljastatud sertifikaat." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ressursi piirangud" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Märkus: Nende valikute muutmisel väärtuseks 0 (null) eemaldab piirangu." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Piirab päringute hulka, mida kasutaja võib tunni aja jooksul serverile saata." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -11951,115 +11950,110 @@ msgstr "" "Piirab tabelit või andmebaasi muutvate käskude hulka, mida kasutaja võib " "tunni aja jooksul käivitada." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Piirab uute ühenduste hulka, mida kasutaja võib tunni aja jooksul avada." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Funktsioon" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Lubab muuta ja kustutada selle funktsiooni." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Lubab käivitada selle funktsiooni." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabelipõhised õigused" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Märkus: MySQL õigused on inglise keeles." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administreerimine" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globaalsed õigused" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globaalne" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Andmebaasipõhised õigused" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Lubab õiguste tabelit laadimata lisada kasutajaid ja õigusi." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "MySQLi omavahenditega autentimine" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 parooliga autentimine" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "MySQLi omavahenditega autentimine" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Sisselogimise teave" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Kasuta tekstivälja" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12067,235 +12061,221 @@ msgstr "" "Sama nimega kasutaja konto on on juba olemas, kuid ilmselt teise hosti " "nimega." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Hosti nimi:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Hosti nimi" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Ära muuda parooli" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Autentimise pistik" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Parooli räsimise algoritm" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s parool on edukalt vahetatud." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Tühistasid %s õigused." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Lisa kasutajate konto" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Andmebaas kasutaja kontole" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Loo samanimeline andmebaas ja anna kõik õigused." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Anna kõik õigused andmebaasis %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Kasutajad, kellel on ligipääs \"%s\" andmebaasile" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Kasutaja on lisatud." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Õigused (GRANT)" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Puuduvad õigused kasutajate kuvamiseks." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Kasutajat ei leitud." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Kõik" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globaalne" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "andmebaasipõhine" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "metamärk" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "tabelipõhine" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Muuda õiguseid" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Tühista" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Muuda kasutaja grupp" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… hoia eelmine alles." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… kustuta eelmine kasutajate tabelist." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Muuda sisselogimise teavet / Kopeeri kasutaja konto" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Loo uus kasutaja konto samade õigustega ja …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Funktsioonipõhised õigused" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Kustuta valitud kasutajate kontod" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Kasutaja grupp" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " -"kasutajad." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Kustuta kasutajatega samanimelised andmebaasid." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Kustutavaid kasutajaid pole valitud!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Õiguste uuesti laadimine" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on edukalt kustutatud." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Uuendasid %s õigusi." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s kustutamine" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Õigused on edukalt uuesti laetud." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s õigused" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Kasutaja" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Uus" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Muuda õiguseid:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Kasutaja konto" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Märkus: sa proovid muuta õiguseid kontol, mida kasutasid sisse logimiseks." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Kasutaja kontode ülevaade" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12305,7 +12285,7 @@ msgstr "" "olemas. See takistab teistel kasutajatel ühendumast, kui nende konto hosti " "pool lubab ühenduda suvalisest (%) masinast." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12317,7 +12297,7 @@ msgstr "" "Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " "muudetud. Sellisel juhul peaksid enne jätkamist %sõigused uuesti laadima%s." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12330,11 +12310,11 @@ msgstr "" "muudetud. Sellisel juhul peab õigused uuesti laadima, kuid hetkel puudub sul " "uuesti laadimise õigus." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Lisasid uue kasutaja." @@ -12636,12 +12616,12 @@ msgstr "Käsk" msgid "Progress" msgstr "Edenemine" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtrid" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Näita ainult aktiivseid" @@ -12662,12 +12642,12 @@ msgstr "minutis:" msgid "per second:" msgstr "sekundis:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Käsud" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12691,7 +12671,7 @@ msgstr "Näita vormindamata väärtusi" msgid "Related links:" msgstr "Seotud lingid:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12699,11 +12679,11 @@ msgstr "" "Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma " "ühendust korralikult sulgemata." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12713,17 +12693,17 @@ msgstr "" "ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude " "salvestamiseks ajutist faili." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ühenduste hulk, mis üritas (edukalt või mitte) ühendada MySQL serveriga." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12735,11 +12715,11 @@ msgstr "" "suurendada tmp_table_size väärtust, et ajutised tabelid oleksid " "mälupõhised, mitte kettapõhised." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Mysqld poolt loodud ajutiste failide hulk." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12747,7 +12727,7 @@ msgstr "" "Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt " "käskude täitmise ajal." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12755,7 +12735,7 @@ msgstr "" "INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga " "(tõenäoliselt korduv võti)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12763,23 +12743,23 @@ msgstr "" "Kasutusel olevate INSERT DELAYED töötleja lõimude hulk. Iga erinev tabel, " "mis kasutab INSERT DELAYED käsku, saab endale isikliku lõimu." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Kirjutatud INSERT DELAYED ridade hulk." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Käivitatud FLUSH käskude hulk." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude hulk." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Tabelist kustutatud ridade hulk." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12789,7 +12769,7 @@ msgstr "" "nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu " "korda on tabeleid avastatud." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12799,7 +12779,7 @@ msgstr "" "tähendada seda, et server teeb väga palju täielikke indeksite kontrolle. " "Näiteks SELECT veerg1 FROM tabel viitab, et veerg1 on indekseeritud." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12807,7 +12787,7 @@ msgstr "" "Võtmel põhineva rea lugemise taotluste hulk. Kui see on kõrge, siis on see " "hea näitaja, et sinu päringud ja tabelid on korralikult indekseeritud." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12816,7 +12796,7 @@ msgstr "" "Võtme järjekorras järgmise rea lugemise taotluste hulk. See on suurem, kui " "pärid kitsendatud indekseeritud veergu või teed indeksi kontrolli." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12824,7 +12804,7 @@ msgstr "" "Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise " "meetodit kasutatakse peamiselt ORDER BY … DESC optimeerimiseks." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12836,7 +12816,7 @@ msgstr "" "palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad " "liitmisi, mis ei kasuta võtmeid korralikult." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12848,35 +12828,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et " "need kasutaksid ära indeksid, mis sul on." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Sisemiste ROLLBACK käskude hulk." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Tabeli rea uuendamise taotluste hulk." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Tabelisse rea lisamise taotluste hulk." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Puhvertsooni lehtede hulk, mida on taotletud tühjendama." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Vabade lehtede hulk." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12886,7 +12866,7 @@ msgstr "" "loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada " "ega eemaldada." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12898,11 +12878,11 @@ msgstr "" "valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Puhvertsooni kogumaht lehtedes." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12910,7 +12890,7 @@ msgstr "" "InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui " "päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -12918,11 +12898,11 @@ msgstr "" "InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB " "teeb järjestikulist kogu tabeli kontrolli." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -12930,7 +12910,7 @@ msgstr "" "Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida " "pidi tegema ühelehelise lugemisena." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12944,51 +12924,51 @@ msgstr "" "palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis " "see väärtus peaks olema madal." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Seni tehtud fsync() operatsioonide hulk." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Hetkel järjekorras olevate lugemiste hulk." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Hetkel järjekorras olevate kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Seni loetud andmete koguhulk baitides." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Andmete lugemiste koguhulk." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Andmete kirjutamiste koguhulk." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Seni kirjutatud andmete koguhulk baitides." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Teostatud topeltkirjutamise operatsioonide hulk." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -12996,35 +12976,35 @@ msgstr "" "Ootamiste hulk, mida on põhjustanud väike logi puhver ja mille tõttu on enne " "jätkamist pidanud ootama selle tühjendamist." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Logi kirjutamise taotluste hulk." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Logi failisse füüsiliste kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Järjekorras olevad logi faili kirjutamised." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Logi faili kirjutatud baitide hulk." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Loodud lehtede hulk." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13032,51 +13012,51 @@ msgstr "" "Sisseehitatud InnoDB lehe maht (vaikimisi 16KB). Siin lehel on loendatud " "mitmeid väärtusi. Lehe maht lubab neid kergesti baitidesse teisendada." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Loetud lehtede hulk." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Kirjutatud lehtede hulk." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Hetkel ootel olevate rea lukustamiste hulk." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise keskmine aeg millisekundites." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Ootama pidanud rea lukustamised kokku." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tabelitest kustutatud ridade hulk." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tabelitesse lisatud ridade hulk." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tabelitest loetud ridade hulk." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tabelites uuendatud ridade hulk." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13084,7 +13064,7 @@ msgstr "" "Võtme puhvris võtmeplokkide hulk, mida on küll muudetud, kuid pole veel " "kettale tühjendatud. Seda kasutatakse kui Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13092,7 +13072,7 @@ msgstr "" "Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel " "oleva võtme puhvri mahu tuvastamiseks." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13102,15 +13082,15 @@ msgstr "" "näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel " "olnud." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Puhvrist võtmeploki lugemise taotluste hulk." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13120,7 +13100,7 @@ msgstr "" "tõenäoliselt on sinu key_buffer_size väärtus liiga väike. Puhvri puudujääki " "saab arvutada valemiga Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13128,22 +13108,22 @@ msgstr "" "Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise " "taotlustega (arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Füüsiliste kirjutamiste ja kirjutamise taotluste võrdlemise protsent " "(arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13153,7 +13133,7 @@ msgstr "" "on kasulik erinevate päringuplaanide kulu võrdlemisel sama päringuga. " "Vaikimisi väärtus 0 tähendab, et ühtegi päringut pole veel koostatud." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13161,12 +13141,12 @@ msgstr "" "Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri " "käivitamisest." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "INSERT DELAYED järjekordades kirjutamisvalmis olevate ootel ridade hulk." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13174,19 +13154,19 @@ msgstr "" "Avatud tabelite hulk. Kui see on liiga suur, siis sinu tabeli puhvri väärtus " "on tõenäoliselt liiga väike." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Avatud failide hulk." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Avatud tabelite hulk." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13196,19 +13176,19 @@ msgstr "" "killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu " "täitmisega." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Päringu puhvri jaoks vaba mälu hulk." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Puhvri kasutamise hulk." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Puhvrisse lisatud päringute hulk." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13220,7 +13200,7 @@ msgstr "" "puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline " "päring puhvrist kustutada." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13228,19 +13208,19 @@ msgstr "" "Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud " "query_cache_type sätte tõttu)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Puhvris registreeritud päringute hulk." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Päringu puhvris olevate plokkide koguhulk." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13248,11 +13228,11 @@ msgstr "" "Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis " "peaksid hoolikalt kontrollima oma tabelite indekseid." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Viidete tabelis piirkondlikku otsimist kasutanud liitmiste hulk." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13261,7 +13241,7 @@ msgstr "" "rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite " "indekseid.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13269,15 +13249,15 @@ msgstr "" "Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole " "kriitiline, kui see on suur.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Esimeses tabelis täielikku kontrolli teinud liitmiste hulk." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Alluva SQL lõimu poolt hetkel avatud ajutiste tabelite hulk." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13285,24 +13265,24 @@ msgstr "" "Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates " "käivitusest)." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "See on ON, kui see server on alluv, mis on ühendatud ülemaga." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Lõimude hulk, mille loomiseks kulus rohkem, kui slow_launch_time sekundit." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Päringute hulk, milleks kulus rohkem aega, kui long_query_time sekundit." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13312,23 +13292,23 @@ msgstr "" "suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse " "vähendamist." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Piirkondlike sorteerimiste hulk." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Sorteeritud ridade hulk." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Koheselt teostatud tabeli lukustamiste hulk." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13340,7 +13320,7 @@ msgstr "" "peaksid kõigepealt optimeerima oma päringuid ja seejärel kas poolita oma " "tabel või tabelid või kasuta paljundamist." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13350,11 +13330,11 @@ msgstr "" "valemiga Threads_created/Connections. Kui see väärtus on punane, siis " "peaksid vähendama oma thread_cache_size väärtust." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Hetkel avatud ühenduste hulk." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13365,11 +13345,11 @@ msgstr "" "peaksid suurendama thread_cache_size väärtust. (Tavaliselt ei anna see " "märkimisväärset jõudluse kasvu, kui sul on hea lõimu kasutus.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Lõimude hulk, mis ei ole jõude." @@ -13398,37 +13378,37 @@ msgstr "Andmebaasi tasemete sakid" msgid "Table level tabs" msgstr "Tabeli tasemete sakid" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Kuva kasutajad" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Lisa kasutajate grupp" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Muuda kasutajate gruppi: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Kasutajate grupi menüü seosed" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Grupi nimi:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Serveri tasemete sakid" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Andmebaasi tasemete sakid" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tabeli tasemete sakid" @@ -13529,7 +13509,7 @@ msgstr "Teosta SQL päring(ud) %s andmebaasis" msgid "Run SQL query/queries on table %s" msgstr "Teosta SQL päring(ud) tabelis %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Puhasta" @@ -13614,113 +13594,113 @@ msgstr "Deaktiveeri kohe" msgid "Version" msgstr "Versioon" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Loodud" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Uuendatud" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Kustuta versioon" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Jälgimise raport" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Struktuuri hetkepilt" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktiivne" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ei ole aktiivne" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Jälgimise käsud" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Kustuta raportist jälgimise andmete rida" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Andmed puuduvad" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Näita %1$s koos kuupäevadega alates %2$s kuni %3$s kasutajaks %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL tõmmis (faili allalaadimine)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL tõmmis" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "See valik asendab sinu tabeli ja selles sisalduvad andmed." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL teostus" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Ekspordi kui %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Andmete töötluse käsk" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Andmete definitsiooni käsk" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Kuupäev" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Kasutajanimi" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versiooni %s hetkepilt (SQL kood)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Puudub" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Jälgimise andmete definitsioon on edukalt kustutatud" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Jälgimise andmete töötlus on edukalt kustutatud" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13728,61 +13708,61 @@ msgstr "" "Ajutise andmebaasi loomisega ja kasutamisega saad käivitada tõmmise. Palun " "veendu, et sul on selle jaoks õigusi." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Kustuta need kaks rida, kui sa ei vaja neid." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL käsud on eksporditud. Palun kopeeri tõmmis või käivita see." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tabeli jälgimise raport" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s jälgimine aktiveeriti versioonil %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s jälgimine deaktiveeriti versioonil %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versioon %1$s kokku %2$s. versioonist kustutati." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioon %1$s on loodud, %2$s jälgimine on aktiveeritud." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Jälgimata tabelid" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Jälgi tabelit" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Jälgitud tabelid" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Viimane versioon" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Kustuta jälgimine" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versioonid" @@ -13790,7 +13770,7 @@ msgstr "Versioonid" msgid "Manage your settings" msgstr "Halda oma sätteid" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Seadistus on salvestatud." @@ -13816,7 +13796,7 @@ msgstr "Viga ZIP arhiivis:" msgid "No files found inside ZIP archive!" msgstr "ZIP arhiivist ei leitud ühtegi faili!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fataalne viga: navigeerimiseks on vajalik AJAX" @@ -13824,55 +13804,55 @@ msgstr "Fataalne viga: navigeerimiseks on vajalik AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Sätteid ei salvestatud; saadetud vorm sisaldab vigu!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmini seadistuse jupp" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Kleebi see oma config.inc.php" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Ei saanud seadistust importida" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Seadistus sisaldab mõnede väljade jaoks valet infot." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Kas tahad ülejäänud sätted importida?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Salvestatud: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Impordi failist" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Impordi veebilehitseja salvestuskohast" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Sätted imporditakse sinu veebilehitseja kohalikust salvestuskohast." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Sul ei ole salvestatud sätteid!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Sinu veebilehitseja ei toeta seda funktsionaalsust" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Lõimi käesoleva seadistusega" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13881,23 +13861,23 @@ msgstr "" "Täiendavaid sätteid saad rakendada, kui muudad faili config.inc.php. Kasuta " "näiteks %sPaigaldaja skripti%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Salvesta PHP failina" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Salvesta veebilehitseja salvestuskohta" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Sätted salvestatakse sinu veebilehitseja kohalikku salvestuskohta." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Olemasolevad sätted kirjutatakse üle!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Saad lähtestada kõik sätted ja taastada nende vaikeväärtused." @@ -13905,12 +13885,12 @@ msgstr "Saad lähtestada kõik sätted ja taastada nende vaikeväärtused." msgid "View dump (schema) of databases" msgstr "Vaata andmebaaside tõmmist (skeemi)" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Õigused puuduvad" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13918,35 +13898,35 @@ msgstr "" "Kasutaja ja hosti nimesid ei muudetud. Kui sa soovid muuta ainult salasõna, " "siis peaksid kasutama kaarti \"Salasõna vahetus\"." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Puuduvad õigused serveri oleku kuvamiseks." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Puuduvad õigused nõustaja kuvamiseks." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "%s lõim katkestati edukalt." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin ei suutnud katkestada %s lõimu. Tõenäoliselt on see juba suletud." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Puuduvad õigused päringute statistika kuvamiseks." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Puuduvad õigused olekumuutujate kuvamiseks." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Laadi alla" @@ -13955,11 +13935,11 @@ msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" "Vale vormistik, kontrolli failis setup/frames/form.inc.php masiivi $formsets!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Ei saa seadistust laadida ega salvestada" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -13970,7 +13950,7 @@ msgstr "" "[doc@setup_script]dokumentatsioonis[/doc]. Muul juhul saad seda ainult alla " "laadida või vaadata." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -13978,24 +13958,27 @@ msgstr "" "Sa ei kasuta turvalist ühendust, kõik andmed (sisaldab tõenäoliselt " "tundlikku teavet, nt paroole) edastatakse krüptimata!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Kui sinu server on seadistatud nõustuma ka HTTPS taotlustega, siis ava [a@" "%s]see link[/a], et teada saada, kuidas kasutada turvalist ühendust." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Ebaturvaline ühendus" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Seadistus on salvestatud." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14004,59 +13987,59 @@ msgstr "" "Kopeeri see ühe taseme võrra kõrgemale ning selle kasutamiseks kustuta " "'config' kataloog." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Seadistust ei salvestatud!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Ülevaade" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Näita peidetud sõnumeid (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Seadistatud serverid puuduvad" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Uus server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Vaikimisi keel" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "lase kasutajal valida" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- puudub -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Vaikimisi server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Rea lõpp" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Näita" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Lae" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmini koduleht" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Anneta" @@ -14092,7 +14075,7 @@ msgstr "Ignoreeri vigu" msgid "Show form" msgstr "Näita vormi" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14100,15 +14083,15 @@ msgstr "" "Versiooni lugemine ebaõnnestus. Võibolla oled sa ühenduseta või uuendamise " "server ei vasta." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Serverist saabus vigane versiooni sõne" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Seletamatu versiooni sõne" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14117,7 +14100,7 @@ msgstr "" "Sa kasutad Git versiooni, käivita [kbd]git pull[/kbd] :-)[br]Viimane " "stabiilne versioon on %s, välja antud %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Uut stabiilset versiooni saadaval ei ole" @@ -14130,12 +14113,12 @@ msgstr "Valed andmed" msgid "Wrong data or no validation for %s" msgstr "Valed andmed või puudub %s valideerimine" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' andmebaasi pole olemas." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s tabel on juba olemas!" @@ -14148,29 +14131,29 @@ msgstr "Vaata tabeli tõmmist (skeemi)" msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rida: %1$s, veerg: %2$s, viga: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Mitte ühtegi rida ei valitud." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s jälgimine on aktiveeritud." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Jälgimise versioonid kustutati edukalt." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Versioone ei ole valitud." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL käsud on käivitatud." @@ -14340,7 +14323,7 @@ msgid "List of available transformations and their options" msgstr "Loetelu kasutatavatest transformatsioonidest ja nende lisavalikutest" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Veebilehitseja kuva transformatsioon" @@ -14362,7 +14345,7 @@ msgstr "" "kurakaldkriips (nt '\\\\xyz' või 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Sisendi transformatsioon" @@ -14794,17 +14777,17 @@ msgid "Size" msgstr "Suurus" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Loodud" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Viimati uuendatud" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Viimane kontroll" @@ -14845,6 +14828,12 @@ msgstr "" "Sinu veebilehitsejal on selle domeeni jaoks phpMyAdmini seadistus. Kas " "soovid selle importida praeguse seansi jaoks?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Kustuta jälgimine" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Lisa õiguseid järgneva(te)s andmebaasi(de)s:" @@ -14863,10 +14852,46 @@ msgstr "Lisa õiguseid järgnevale funktsioonile:" msgid "Add privileges on the following table:" msgstr "Lisa õigusi järgnevas tabelis:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Uus" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Puudub" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Kustuta valitud kasutajate kontod" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " +"kasutajad." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Kustuta kasutajatega samanimelised andmebaasid." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Veerupõhised õigused" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ressursi piirangud" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Märkus: Nende valikute muutmisel väärtuseks 0 (null) eemaldab piirangu." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Vali binaarne logi, mida soovid vaadata" @@ -14897,7 +14922,7 @@ msgstr "Plugin" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "keelatud" @@ -15051,7 +15076,7 @@ msgstr "Parser:" msgid "Comment:" msgstr "Kommentaar:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Järjekorra muutmiseks lohista" @@ -15084,27 +15109,27 @@ msgstr "" msgid "Foreign key constraint" msgstr "Võõrvõtme piirang" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Lisa piirang" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Sisesed seosed" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Sisemine seos" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Sisemine seos on mittevajalik, kui vastav FOREIGN KEY seos on juba olemas." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Vali veerg, mida näidata:" @@ -15157,11 +15182,11 @@ msgstr "Algne tekst" msgid "Replaced string" msgstr "Asendatud tekst" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Asenda" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Täiendav otsingu kriteerium" @@ -15231,7 +15256,7 @@ msgid "at beginning of table" msgstr "tabeli alguses" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partitsioonid" @@ -15255,24 +15280,24 @@ msgstr "Andmete pikkus" msgid "Index length" msgstr "Indeksi pikkus" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Partitsioonide tabel" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Muuda partitsioneerimist" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Muuda vaadet" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Ruumi kasutus" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektiivne" @@ -15297,31 +15322,31 @@ msgstr "Parenda tabeli struktuuri" msgid "Track view" msgstr "Jälgi vaadet" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Rea statistika" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "staatiline" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dünaamiline" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partitsioneeritud" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Rea pikkus" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Rea laius" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Järgmine automaatne indeks" @@ -15334,44 +15359,44 @@ msgstr "Veerg %s on kustutatud." msgid "Click to toggle" msgstr "Muuda" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Välimus" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Hangi rohkem välimusi!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Saadavalolevad MIME-tüübid" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Saadavalolevad veebilehitseja kuva transformatsioonid" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Saadavalolevad sisendi transformatsioonid" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Kirjeldus" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Sind viiakse sihtsaidile." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sul pole siinviibimiseks piisavalt õigusi!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profiil on uuendatud." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Salasõna on liiga pikk!" @@ -15441,7 +15466,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15462,17 +15487,17 @@ msgid "Unrecognized data type." msgstr "Tundmatu andmetüüp." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Oodati aliast." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Eelnevalt leiti alias." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Ootamatu punkt." @@ -15525,24 +15550,24 @@ msgstr "Oodati eraldajale eelnevat tühemikku." msgid "Expected delimiter." msgstr "Oodati eraldajat." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Oodati lõpetavat sümbolit %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Oodati muutuja nime." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Ootamatu lause algus." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Tundmatut tüüpi lause." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Transaktsiooni ei olnud eelnevalt alustatud." @@ -15559,10 +15584,16 @@ msgstr "Ootamatud märk." msgid "This type of clause was previously parsed." msgstr "Sellist tüüpi klausel parsiti eelnevalt." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Tundmatu võtmesõna." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Ootamatu lause algus." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Oodati olemi nime." @@ -15603,7 +15634,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "otsene viga" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Vaate nimi ei saa olla tühi" @@ -16878,6 +16909,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "MySQLi omavahenditega autentimine" + #~ msgid "Try to connect without password." #~ msgstr "Ürita ühendada ilma paroolita." diff --git a/po/eu.po b/po/eu.po index 89c62256bb..685a7086f5 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributuak" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Jarraipen informea" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2093,296 +2098,296 @@ msgstr "" msgid "End of step" msgstr "Taularen amaieran" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pribilegioak gehitu taula honetan" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gorde" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL kontsulta" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Bilatu" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Zutabe izenak" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Zutabe izenak" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Edukinen taula" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Puntu" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Lerro kateak" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Barne eraztuna" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Kanpo eraztuna" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Orri zenbakia:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Taulak hautatu" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Taulak hautatu" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2390,237 +2395,237 @@ msgstr "Taulak hautatu" msgid "Open page" msgstr "Erabilpena" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Taulak hautatu" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Aldatu edo esportatu erlazio-eskema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" zutaberako balioa" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Bidali" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Zutabe izenak" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Dena erakutsi" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Lerro kateak" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Deuseztatua" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Fitxategiak inportatu" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Taulak hautatu" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Inprimatu" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Datu-baserik ez" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Zutabe izenak" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dena erakutsi" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indizeak" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sareta erakutsi" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2628,121 +2633,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "Taulak erakutsi" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ezikusi" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Kontsulta hau hemen berriz erakutsi" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Benetan nahi al duzu \"%s\" exekutatzea?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL kontsulta" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Taularen iruzkinak" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL kontsulta" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2751,36 +2756,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Datu-basea kopiatu" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Taularen aurrizkia aldatu" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Taularen aurrizkia aldatu" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Taula aurrizkiarekin kopiatu" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Aurrekoa" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2788,96 +2813,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarioa " -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2885,78 +2910,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Abe" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2964,201 +2989,201 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Batez" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "segunduko" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Testu-eremua erabili" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Datu-base bat hautatu mesedez" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Errorea" @@ -3219,20 +3244,20 @@ msgid "Charset" msgstr "Karaktere-jokoa" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Ordenamendua" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binarioa" @@ -3433,7 +3458,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "ezezaguna" @@ -3485,53 +3510,53 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Bilatu" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL kontsulta" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to set configured collation connection!" msgstr "Konfiguratutako monitore lokal bateraezina" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3639,74 +3664,74 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-kontsulta %s datu-basean:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Kontsulta bidali" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Bilatu" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Bilatu" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Bilatu" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Erakutsi laster-marka" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Bilatu" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "hitz hauetariko bat gutxienez" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "hitz guztiak" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "esaldi zehatza" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "adierazpen erregular moduan" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Bilaketaren emaitzak: \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Guztira: %s emaitza" msgstr[1] "Guztira: %s emaitza" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3715,47 +3740,42 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s emaitza %s taulan" msgstr[1] "%s emaitzak %s taulan" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Arakatu" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s taulako aukeratuak ezabatu?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Datu-basean bilatu" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Aurkitu:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Hitzak zuriune karakterrarekin berezituta daude (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Taulen barnean:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy msgid "Unselect all" msgstr "Desautatu dena" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Zutabearen barnean:" @@ -3780,16 +3800,16 @@ msgstr "Eremuak" msgid "Search this table" msgstr "Datu-basean bilatu" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Hasi" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3798,8 +3818,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Aurrekoa" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3808,8 +3828,8 @@ msgctxt "Next page" msgid "Next" msgstr "Hurrengoa" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3820,7 +3840,7 @@ msgstr "Amaiera" msgid "All" msgstr "Guztiak" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3831,8 +3851,8 @@ msgstr "Errenkada kopurua orriko" msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3854,10 +3874,10 @@ msgstr "Gakoaren arabera ordenatu" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "Eragiketak" @@ -3907,33 +3927,33 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Errenkada ezabatua izan da" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Hil" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Zure SQL-kontsula arrakastaz burutu da" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3942,76 +3962,76 @@ msgstr "" "Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" "%s erreferentzia egin." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Errenkadak erakusten" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "guztira" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Ikurdunak:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Guztiak egiaztatu" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Esteka aurkitugabea" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4019,7 +4039,7 @@ msgid "None" msgstr "Batez" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4027,102 +4047,102 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy msgid "Report" msgstr "Esportatu" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy msgid "Automatically send report next time" msgstr "Zerbitzariaren bertsioa" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy msgid "Git information missing!" msgstr "Saioa hasteko informazioa" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4133,20 +4153,20 @@ msgid "No index defined!" msgstr "Ez dago indizerik definituta!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indizeak" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4156,31 +4176,31 @@ msgstr "Indizeak" msgid "Action" msgstr "Ekintza" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Giltza-izena" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalitatea" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4188,47 +4208,47 @@ msgstr "Kardinalitatea" msgid "Comment" msgstr "Iruzkinak" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Lehen mailako gakoa ezabatu da." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "%s indizea ezabatu da." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Ezabatu" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Orri zenbakia:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4252,11 +4272,11 @@ msgstr "Zerbitzaria" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4275,14 +4295,15 @@ msgid "View" msgstr "Ikusipegia" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4291,8 +4312,8 @@ msgid "Table" msgstr "Taula" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4300,45 +4321,45 @@ msgstr "Taula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Bilatu" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Txertatu" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Pribilegioak" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Eragiketak" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4354,16 +4375,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Kontsulta" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4371,22 +4392,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Datu-baseak" @@ -4397,54 +4418,54 @@ msgid "User accounts" msgstr "Erabiltzailea" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Binarioa " #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Ihardetsi" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Aldagaiak" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4508,29 +4529,29 @@ msgstr "Aldagaiak" msgid "Favorites" msgstr "Aldagaiak" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "%s erabiltzailea badago lehendik ere!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Allows reading data." msgid "Error while loading the search." @@ -4598,7 +4619,7 @@ msgstr "Taulak erakutsi" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4654,82 +4675,82 @@ msgid_plural "%d minutes" msgstr[0] "lanean" msgstr[1] "lanean" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s da MySQL zerbitzarian lehenetsitako biltegiratzeko mota." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "Taulak erakutsi" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy msgid "Invalid database:" msgstr "Datu-baserik ez" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "Taulen barnean:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Zerbitzariaren bertsioa" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4737,19 +4758,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Lehen mailako gakoaren izenak behar du izan \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Ezinezkoa indizearen izena ¡PRIMARY! berrizendatzea" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Ez da indiziaren zatiak definitu!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5020,7 +5041,7 @@ msgid "Date and time" msgstr "Indize berri bat sortu" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Linestring" msgctxt "string types" @@ -5039,70 +5060,70 @@ msgstr "Gutira" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Koderik gabe" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kontsulta bidali" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP kodea sortu" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5110,64 +5131,64 @@ msgid "Edit inline" msgstr "Inprimatzeko ikuspegia" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Iga" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s egun, %s ordu, %s minutu eta %s segundu" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" datu-basera joan." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Hutsik" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5183,7 +5204,7 @@ msgstr "minutuko" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "orduko" @@ -5191,14 +5212,14 @@ msgstr "orduko" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Bilatu" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5206,7 +5227,7 @@ msgstr "Bilatu" msgid "Description" msgstr "Deskribapena" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Erabili balio hau" @@ -5247,22 +5268,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Izena" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Luzera/Balioak*" @@ -5273,7 +5294,7 @@ msgstr "Luzera/Balioak*" msgid "Attribute" msgstr "Atributuak" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5296,13 +5317,13 @@ msgstr "Gehitu %s zutabe" msgid "Select a column." msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "Gehitu %s zutabe" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5310,34 +5331,34 @@ msgstr "Gehitu %s zutabe" msgid "Attributes" msgstr "Atributuak" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Zerbitzaria" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5345,20 +5366,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5916,7 +5937,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6028,13 +6049,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Sententziak" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Bidali" @@ -6045,7 +6066,7 @@ msgstr "Fitxategiaren karaktereen kodeketa:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formatoa" @@ -6192,7 +6213,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Gainean idatzi aurretik badiren fitxategiak" @@ -6208,7 +6229,7 @@ msgid "Remember file name template" msgstr "Txantiloi-fitxategiaren izena" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" @@ -6219,7 +6240,7 @@ msgid "Enclose table and column names with backquotes" msgstr "\"Backquotes\" erabili taula eta eremuen izenekin " #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6251,7 +6272,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s gehitu" @@ -6432,7 +6453,7 @@ msgid "Customize the navigation tree." msgstr "Datu-basea esportatzeko aukerak" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 #, fuzzy msgid "Servers" msgstr "Zerbitzaria" @@ -7339,7 +7360,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8027,7 +8048,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8035,10 +8056,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8184,25 +8205,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentazioa" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s taula hustu egin da." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "%s Ikuspegia ezabatua izan da" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8217,13 +8238,13 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 #, fuzzy msgid "Event type" msgstr "Esportazio mota" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 #, fuzzy msgid "Server ID" msgstr "Zerbitzaria" @@ -8233,7 +8254,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 #, fuzzy msgid "Information" msgstr "Saioa hasteko informazioa" @@ -8248,16 +8269,16 @@ msgstr "Erakutsitako kontultak moztu" msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Datu-baserik ez" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s datu-basea sortua izan da." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8265,26 +8286,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s datu-base arrakastaz ezabatu dira." msgstr[1] "%s datu-base arrakastaz ezabatu dira." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Errenkadak" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Gutira" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Arazteko hondakina" @@ -8314,35 +8335,35 @@ msgstr "" msgid "Enable statistics" msgstr "Estatistikak gaitu" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Zerbitzariaren aldagai eta ezarpenak" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Datu-baserik ez" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." @@ -8397,7 +8418,7 @@ msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8416,12 +8437,12 @@ msgstr "Aldatu" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indizea" @@ -8444,13 +8465,13 @@ msgstr "Testu osoa" msgid "Distinct values" msgstr "Saioaren balioa" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Aldaketarik ez" @@ -8470,201 +8491,205 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Pasahitzik ez" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Pasahitza:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Berridatzi" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "Pasahitza:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Taula berri bat sortu %s datu-basean" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Taula berri bat sortu %s datu-basean" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Esportazio mota" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "User name" msgid "Template name" msgstr "Erabiltzaile-izena" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Sortu" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s taula(k)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Eguneratua" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Taulak hautatu" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Esportazio mota" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Datu-baseak" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Taulak" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Formatoa" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Eraldaketen hobespenak" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Errenkadak" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Zerbitzariren %s direktorioan gorde" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8672,124 +8697,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Trinkotzea" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zipatuta\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzip-ez trinkotuta\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Bidali" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Taula berri bat sortu %s datu-basean" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horizontal (goiburukoak biratuta)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Bidali" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Taulak hautatu" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Taulak hautatu" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "Datu-basea" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Taularik ez" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Zutabe izenak" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Zutabe izenak" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Zerbitzariaren bertsioa" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Zerbitzariaren bertsioa" @@ -9196,13 +9221,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9210,75 +9235,75 @@ msgstr "" "%s fitxategia aurretik bazegoen zerbitzarian, izena aldatu edo aukeratu " "gainean idazteko hobespena." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Egitura soilik" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9290,90 +9315,91 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Indize bat sortu  %s  zutabetan" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funtzioak" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Bere luzeragatik,
eremu hau ez da editagarria " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binarioa - ez editatu" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Edo" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Txertatu" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "eta orduan" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9384,31 +9410,31 @@ msgstr "" msgid "Value" msgstr "balioa" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Egitura soilik" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Egitura eta datuak" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Datuak soilik" @@ -9419,14 +9445,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Murrizketak gehitu" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9484,8 +9510,8 @@ msgstr "Prozesuak" msgid "Views:" msgstr "Ikusipegia" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Erakutsi" @@ -9530,19 +9556,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Bidali" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9558,7 +9584,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Gehitu %s zutabe" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9581,7 +9607,7 @@ msgstr "" msgid "Database operations" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9685,13 +9711,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9943,8 +9969,8 @@ msgid "Rename database to" msgstr "Datu-basea berrizendatu izen honetara" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9992,83 +10018,83 @@ msgstr "(soilik)" msgid "Move table to (database.table)" msgstr "Taula hona mugitu (datu-basea.taula)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Taula berrizendatu izen honetara" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Taularen iruzkinak" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Taularen hobespenak" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Taula hona kopiatu: (datu-base.taula)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Kopiatutako taulara aldatu" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Taularen mantenua" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Taula aztertu" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Taula egiaztatu" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Taula egiaztatu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "%s taularen cachea hustu egin da." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Taularen cachea hustu (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Taula optimizatu" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Taula konpondu" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10076,107 +10102,107 @@ msgstr "Taula konpondu" msgid "Delete data or table" msgstr "Taula honen datuak irauli" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Datu-baserik ez" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Aztertu" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "Txekiera" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Taula konpondu" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Itxi" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Taularen mantenua" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Ezin taula berberara mugitu!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Ezinezkoa da taula berberera kopiatzea!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s taula hona mugitu da: %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s taula hona kopiatua izan da: %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s taula hona mugitu da: %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s taula hona kopiatua izan da: %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Taularen izena hutsik dago!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10205,25 +10231,25 @@ msgstr "Kolorea erakutsi" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Ongietorriak %s(e)ra" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10235,7 +10261,7 @@ msgstr "" "eta pasahitza berpasatu beharko dituzu eta MySQL zerbitzariaren " "administratzaileak emaniko informazioarekin bat egiten dutela ziurtatu." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10262,15 +10288,15 @@ msgstr "Erabiltzaile-izena:" msgid "Server Choice:" msgstr "Zerbitzariaren hautaketa" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10346,7 +10372,7 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" @@ -10355,7 +10381,7 @@ msgstr "Taula honen datuak irauli" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "Bidalita" @@ -10364,8 +10390,8 @@ msgstr "Bidalita" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10468,7 +10494,7 @@ msgstr "Eremuen izenak lehenengo errenkadan jarri" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11035,7 +11061,7 @@ msgstr "Edukinen taula" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11438,57 +11464,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Deskribapenik ez" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11497,317 +11523,317 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Datu-base bat hautatu mesedez" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "Konexioak" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Testu osoa" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Egitura soilik" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Egitura soilik" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Erabiltzaile-izena" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Erabiltzaile-izena" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Pasahitza" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Ordenatu" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Aldagaia" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Zerbitzaria" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Host hau" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Edozein erabiltzaile" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Testu-eremua erabili" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Berridatzi" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Change password" msgid "Generate password:" msgstr "Pasahitza aldatu" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Errorea" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Pribilegioak arrakastaz berkargatu dira." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11829,7 +11855,7 @@ msgstr "%s taula ezabatu egin da" msgid "Event %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11839,84 +11865,84 @@ msgstr "" msgid "Edit event" msgstr "Bidalita" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy msgid "Event name" msgstr "Esportazio mota" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Aldatu" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Exekutatu aurretik aukeratutako kontsulta" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Egoera" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Amaiera" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "\"Insert\"ak osatu" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -11939,7 +11965,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -11953,145 +11979,145 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Zutabe izenak" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Sortzea" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy msgid "Remove last parameter" msgstr "Taula berrizendatu izen honetara: " -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Luzera/Balioak*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taularen hobespenak" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Kontsulta mota" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12115,36 +12141,36 @@ msgstr "%s taula ezabatu egin da" msgid "Edit trigger" msgstr "Erabiltzaile berria gehitu" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Erabiltzaile-izena" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Denbora" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12279,94 +12305,94 @@ msgstr "Karaktere-multzoak eta ordenamenduak" msgid "Databases statistics" msgstr "Datu-baseen estatistikak" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Pribilegiorik ez." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " "du." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12376,138 +12402,110 @@ msgstr "" "Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko " "bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Batez" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "Konexioak" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "Konexioak" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Baliabideen mugak" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " "mugatzen du." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12515,287 +12513,280 @@ msgstr "" "Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen " "komando kopurua mugatzen du." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add %s field(s)" msgid "Routine" msgstr "Gehitu %s zutabe" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy msgid "Allows executing this routine." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Kudeaketa" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "orokorra" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " "berkargatu gabe." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentazioa" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Pasahitza aldatu" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Dokumentazioa" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Erabiltzaile-izena" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Constraints for table" msgid "Host name" msgstr "Taularentzako murrizketak" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentazioa" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Pasahitza:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Gehitu erabiltzailea" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "\"%s\" datu-basearen pribilegioak egiaztatu." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"-(e)ra sarbidea duten erabiltzaileak" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy msgid "User has been added." msgstr "%s eremua ezabatu da" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Baimendu" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Edozein" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "orokorra" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "komodina" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Ezeztatu" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editatu hurrengo lerroa" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… mantendu aurrekoa." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… zaharra ezabatu erabiltzaileen tauletatik." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12803,122 +12794,107 @@ msgstr "" "… zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Hautatutako erabiltzaileak baztertu" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pribilegioak" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Erabiltzailea" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Erabiltzailea" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Erabiltzailearen info orokorra" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12932,7 +12908,7 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12952,11 +12928,11 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." @@ -13252,12 +13228,12 @@ msgstr "Komandoa" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "Taulak erakutsi" @@ -13285,12 +13261,12 @@ msgstr "minutuko" msgid "per second:" msgstr "segunduko" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Sententziak" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13320,35 +13296,35 @@ msgstr "Taulak erakutsi" msgid "Related links:" msgstr "Erlazioak" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13356,78 +13332,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13435,7 +13411,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13443,42 +13419,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13486,33 +13462,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13521,243 +13497,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13765,99 +13741,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13865,18 +13841,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13884,12 +13860,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Kontsulta mota" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13926,48 +13902,48 @@ msgstr "Datu-baseak" msgid "Table level tabs" msgstr "Taularen iruzkinak" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "Gehitu erabiltzailea" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Gehitu erabiltzailea" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Pribilegiorik ez." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Zutabe izenak" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Zerbitzariaren bertsioa" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Datu-baseak" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14081,7 +14057,7 @@ msgstr "SQL kontsulta(k) exekutatu %s datu-basean" msgid "Run SQL query/queries on table %s" msgstr "SQL kontsulta(k) exekutatu %s datu-basean" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -14173,105 +14149,105 @@ msgstr "" msgid "Version" msgstr "PHP Bertsioa" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Sortua" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Eguneratua" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Zerbitzariaren bertsioa" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Jarraipen informea" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Egitura kaptura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktibo" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ez aktibo" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Datu-baserik ez" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Datuak" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14279,79 +14255,79 @@ msgctxt "None for default" msgid "None" msgstr "Batez" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Zerbitzariaren bertsioa" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Jarraipen gabeko taulak" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Taularen jarraipena egin" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Taulak jarraipenarekin" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Azken bertsioa" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Jarraipen datuak ezabatzen" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Bertsioak" @@ -14361,7 +14337,7 @@ msgstr "Bertsioak" msgid "Manage your settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14387,7 +14363,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14395,84 +14371,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin dokumentazioa" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Fitxategiak inportatu" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Bidali" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14480,31 +14456,31 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Pribilegiorik gabe" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "%s haria arrakastaz ezabatu da." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14512,15 +14488,15 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14528,103 +14504,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Aldaketak gorde dira" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Aldaketak gorde dira" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Lokal" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin dokumentazioa" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14662,28 +14637,28 @@ msgstr "" msgid "Show form" msgstr "Kolorea erakutsi" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14698,12 +14673,12 @@ msgstr "Datu-baserik ez" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" @@ -14716,36 +14691,36 @@ msgstr "Ikusi taularen iraulketa (eskema)" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No databases selected." msgid "No row selected." msgstr "Ez dago datu-baserik aukeratuta." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "Jarraipena aktibatuta dago." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No databases selected." msgid "No versions selected." msgstr "Ez dago datu-baserik aukeratuta." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14967,7 +14942,7 @@ msgid "List of available transformations and their options" msgstr "Eraldaketa erabilgarriak" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14993,7 +14968,7 @@ msgstr "" "alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15527,17 +15502,17 @@ msgid "Size" msgstr "Tamaina" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Sortzea" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Azken eguneraketa" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Azken egiaztapena" @@ -15572,6 +15547,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Jarraipen datuak ezabatzen" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15594,10 +15575,48 @@ msgstr "Pribilegioak gehitu taula honetan" msgid "Add privileges on the following table:" msgstr "Pribilegioak gehitu taula honetan" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Batez" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Hautatutako erabiltzaileak baztertu" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Baliabideen mugak" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15633,7 +15652,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15823,7 +15842,7 @@ msgstr "Erabiltzailea" msgid "Comment:" msgstr "Iruzkinak" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15859,30 +15878,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Murrizketak gehitu" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Barne-erlazioak" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Barne-erlazioak" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15948,12 +15967,12 @@ msgstr "Lerro kateak" msgid "Replaced string" msgstr "Erlazioak" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "Erlazioak" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL kontsulta" @@ -16039,7 +16058,7 @@ msgid "at beginning of table" msgstr "Taularen hasieran" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16071,30 +16090,30 @@ msgstr "Errenkadaren luzera" msgid "Index length" msgstr "Errenkadaren luzera" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Relations" msgid "Partition table" msgstr "Erlazioak" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Print view" msgid "Edit partitioning" msgstr "Inprimatzeko ikuspegia" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Inprimatzeko ikuspegia" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Erabilitako lekua" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Eraginkorra" @@ -16125,33 +16144,33 @@ msgstr "Taularen egituraren proposamena" msgid "Track view" msgstr "Taularen jarraipena egin" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Errenkadaren estatistikak" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamikoa" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Errenkadaren luzera" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Errenkadaren tamaina" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16165,52 +16184,52 @@ msgstr "%s taula ezabatu egin da" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "MIME-mota erabilgarriak" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Eraldaketa erabilgarriak" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Eraldaketa erabilgarriak" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Deskribapena" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Jarraipen informea" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profila eguneratua izan da." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -16283,7 +16302,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16307,19 +16326,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Ez dago datu-baserik aukeratuta." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16375,27 +16394,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "%s taula ezabatu egin da" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Txantiloi-fitxategiaren izena" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taularen hasieran" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16412,10 +16431,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Taularen hasieran" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16459,7 +16484,7 @@ msgstr "" msgid "strict error" msgstr "Kontsulta mota" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17590,6 +17615,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Dokumentazioa" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/fa.po b/po/fa.po index a3045bec02..38e02dc451 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-11-21 11:45+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "همکاری" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "يك كليد اصلي در %s اضافه شد" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "گزارشات دنبال شده" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2055,269 +2060,269 @@ msgstr "" msgid "End of step" msgstr "در انتهاي جدول" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "انجام شد" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "ذخيره" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "جستجو" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "نام ستونها" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "نام ستونها" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "هر نقطه نشان دهنده یک سطر داده ها." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "برچسب ن برفزار یک نقطه نشان داده خواهد شد." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "برای بزرگنمایی,یک بخش را با موس انتخاب نمایید." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "با کیک بر روی داده ها ان ها را بینید و احتمالا ردیف داده ها راویرایش کنید." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "تغییر اندازه طرح با کشیدن آن در امتداد گوشه پایین سمت راس میتواند انجام " "گیرد." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "انتخاب دو ستون" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "انتخاب دو ستون متفاوت" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "محتوای داده ها" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "در نظر نگرفتن" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "کپی" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "درجه" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "رشته خطی" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "چند گوشه" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "هندسه" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "حلقه داخلی" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "حلقه بیرونی:" -#: js/messages.php:522 +#: js/messages.php:523 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "آیا میخواهید تنظیمات باقی مانده را وارد کنید؟" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "انتخاب کلید اشاره" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "انتخاب کلید خارجی" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "لطفا کلید اولیه و یا یک کلید منحصر به فرد را انتخاب کنید" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2325,97 +2330,97 @@ msgstr "" "تغییر در طرح شما ذخیره نشده است. آنها از دست خواهد رفت اگر شما آنها را ذخیره " "نکنید. ایا شما میخواهید ادامه دهید؟" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "شماره صفحه:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Select Tables" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Select Tables" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "صفحه های ازاد" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Select Tables" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "واحد" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "اضافه کردن تنظیمات برای ستون " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "ارسال" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "دکمه ی escape را برای صرفنظر کردن از ویرایش" -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2423,49 +2428,49 @@ msgstr "" "شما مقداری داده ویرایش کردید و ان ها ذخیره نشده اند.ایا شما برای ترک این " "صفحه بدون ذخیره کردن داده ها اطمینان دارید؟" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "برای دوباره مرتب کردن drag کنید" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "برای علامتگذاری / برداشتن علامت اینجا را کلبک کن" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "نام ستونها" -#: js/messages.php:588 +#: js/messages.php:589 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "با کلیک بر روی منوی کشویی
فلش به ضامن دید ستون" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "نمايش همه" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2473,60 +2478,60 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "موقعیت اصلی" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "لغو کردن" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "وارد کردن فایل ها" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "چاپ" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2534,7 +2539,7 @@ msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2542,70 +2547,70 @@ msgid "You can also edit most values
by clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "به لینک بروید" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "نام ستونها" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "توليد‌ کن" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "بیشتر" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "نمايش همه" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "مخفی کردن فهرست ها" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show hint" msgid "Show hidden navigation tree items." msgstr "Show grid" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize text input fields" msgid "Link with main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize text input fields" msgid "Unlink from main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2615,123 +2620,123 @@ msgstr "" "نسخه %s و در %s بیرون آمده است." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "نسخه قبلی:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "به روز" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "پورت سرور" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "پورت سرور" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير تنظیمات" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "نمايش جدولها" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "در نظر نگرفتن" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "نمايش دوباره اين پرس و جو در اينجا" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "توضيحات جدول" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2740,34 +2745,54 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "کپی کردن پابگاه داده به" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "جایگزینی پیشوند جدول" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "جایگزینی پیشوند جدول" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "کپی کردن جدول با پیشوند" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "قبل" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2775,352 +2800,352 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "امروز" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "ژانویه" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "فوریه" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "مارس" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "آوريل" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "مي" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "ژوئن" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "جولاي" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "آگوست" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "سپتامبر" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "اكتبر" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "نوامبر" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "دسامبر" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "جمعه" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "هفته" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "تقویم-ماه-سال" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "ساعت" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "ثانیه" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "فیلد های متنی" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "خطا" @@ -3181,20 +3206,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "مقایسه" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "دودويي" @@ -3394,7 +3419,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "ناشناس" @@ -3443,56 +3468,56 @@ msgstr "" msgid "Font size" msgstr "اندازه فونت" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "حذف رابطه" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "جعبه پرس و جوي SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "در خواندن فایل تنظیمات ناموفق بود" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "پارامتر یافت نشد:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3600,122 +3625,117 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "پرس و جوي SQL از پايگاه داده %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "ثبت کوئری" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "جستجو" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "حذف رابطه" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "حذف رابطه" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "نمایش تاریخچه" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "حذف رابطه" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "حداقل يكي از كلمات" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "تمامي كلمات" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "عبارت كامل" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "بعنوان مبين منظم(as regular expression)" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتيجه ي جستجو \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "مجموع: %s مطابقت" msgstr[1] "مجموع: %s مطابقتها" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s همتا در %2$s" msgstr[1] "%1$s همتا در %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "فهرست" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "داده های همتا در جدول %s حذف شوند؟" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "جستجو در پايگاه‌ داده" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "یافتن :" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "كلمات با علامت فاصله (\" \") جدا مي‌شوند." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "درجدول های:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "عدم انتخاب همه" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "در ستونها:" @@ -3741,30 +3761,30 @@ msgstr "فیلتر" msgid "Search this table" msgstr "جستجو در پايگاه‌ داده" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "قبلی" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "بعدی" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "انتها" @@ -3773,7 +3793,7 @@ msgstr "انتها" msgid "All" msgstr "همه" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3784,8 +3804,8 @@ msgstr "تعداد سطرها در هر صفحه" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3807,10 +3827,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "عمليات" @@ -3857,33 +3877,33 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "سطر حذف گرديد" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "از کار انداختن" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "اجرای فرایند شما با موفقيت اجرا گرديد" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3892,74 +3912,74 @@ msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد . لطفا به %sنوشتار%s " "مراجعه کنید ." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "جمع كل" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "موارد انتخاب‌ شده :" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "انتخاب همه" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "پيوند پيدا نشد" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -3967,7 +3987,7 @@ msgid "None" msgstr "خير" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3975,75 +3995,75 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "خطای زیاد،برخی نمایش داده نشدند." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "صدور" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatically create versions" msgid "Automatically send report next time" msgstr "به صورت خودکار نسخه ایجاد شود" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "فایل آپلود شده نبود." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "فایل آپلود شده بیش از upload_max_size قرار دستور در فایل php.ini اجرا." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "فایل آپلود شده کاملا آپلود نشده." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "از دست دادن یک پوشه موقت." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "برای نوشتن فایل بر روی دیسک شکست خورده." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "خطای ناشناخته در آپلود فایل." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "امکان خواندن فایل وجود ندارد!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "خطا در موقع جابجا کردن فایل آپلود شده." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "File was not an uploaded file." msgid "Cannot read uploaded file." msgstr "فایل آپلود شده نبود." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4052,30 +4072,30 @@ msgstr "" "فایلی که می خواهید بارگذاری کنید با فرمت (%s) فشرده سازی شده است که پشتیبانی " "نشده یا در تنظیمات برنامه، غیر فعال شده است." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "اطلاعات نسخه" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "نماي چاپ" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4086,20 +4106,20 @@ msgid "No index defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "فهرست‌ها" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4109,78 +4129,78 @@ msgstr "فهرست‌ها" msgid "Action" msgstr "عمل" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "نام کلید" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "يكتا" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "توضيحات" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "كليد اصلي حذف گرديد." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "فهرست %s حذف گرديد." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "حذف" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "شماره صفحه:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4204,11 +4224,11 @@ msgstr "سرور" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4227,14 +4247,15 @@ msgid "View" msgstr "نمایه" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4243,8 +4264,8 @@ msgid "Table" msgstr "جدول" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4252,45 +4273,45 @@ msgstr "جدول" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "جستجو" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "درج" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "امتيازات" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4306,16 +4327,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "پرس و جو" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4323,22 +4344,22 @@ msgstr "" msgid "Events" msgstr "رویدادها" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "طرّاح" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "اضافه يا حذف ستونها" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "پايگاههاي داده" @@ -4349,20 +4370,20 @@ msgid "User accounts" msgstr "كاربر" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "دودويي" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "تکرار" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 @@ -4370,34 +4391,34 @@ msgstr "تکرار" msgid "Variables" msgstr "متغییر" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "موتور" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4459,29 +4480,29 @@ msgstr "متغییر" msgid "Favorites" msgstr "متغییر" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "Error: relation already exists." msgid "An entry with this name already exists." msgstr "خطا : رابطه قبلا ایجاد شده است." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4547,7 +4568,7 @@ msgstr "نمايش جدولها" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4601,78 +4622,78 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "دقیقه" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "در این پایگاه داده(mysql) موتور پیش فرض ذخیره سازی %s میباشد ." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr ":وضعیت جدول ناشناس " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "پایگاه داده نامعتبر" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid database" msgid "Invalid table name:" msgstr "پایگاه داده نامعتبر" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "نسخه سرور" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "جدول %s به %s تغيير نام داده‌شد" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "تنظیمات UI جدول قابل ذخیره سازی نیست" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4681,7 +4702,7 @@ msgstr "" "پاک سازی تنظیمات UI جداول موفقیت آمیز نبود(به $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s مراجعه کنید)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4691,20 +4712,20 @@ msgstr "" "مقدار UI \"%s\" را نمی توان ذخیره کرد.تغییرات انجام شد اما با رفرش صفحه از " "بین می روند.لطفا ساختار جدول خود را برای تغییرات چک کنید." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "نام كليد اصلي بايد PRIMARY باشد !" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "بازناميدن فهرست به PRIMARY مقدور نمي‌باشد!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 #, fuzzy msgid "No index parts defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4976,7 +4997,7 @@ msgid "Date and time" msgstr "ساخت فهرست جديد" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -4995,72 +5016,72 @@ msgstr "جمع كل" msgid "Max: %s%s" msgstr "حداکثر: %s %s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "اطلاعات ثابت" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "پيغام MySQL : " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "رد شدن از توضیحات SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بدون كد PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ثبت کوئری" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "ساخت كد PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "بارگیری مجدد" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "استفاده از پروفایل" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5068,67 +5089,67 @@ msgid "Edit inline" msgstr "نماي چاپ" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "يكشنبه" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s روز ، %s ساعت ، %s دقیقه و %s ثانیه" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "پارامتر یافت نشد:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "پرش به پایگاه داده \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "قابلیت %s به خاطر یک باگ شناخته شده تحت تاثیر قرار گرفته ایست، برای اطلاعات " "بیشتر به %s مراجعه کنید" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "رایانه خود را مشاهده نمایید:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "فایلی برای آپلود موجود نیست" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "خالي" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "اجرا" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5144,7 +5165,7 @@ msgstr "در دقیقه" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "در ساعت" @@ -5152,14 +5173,14 @@ msgstr "در ساعت" msgid "per day" msgstr "هر روز" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "جستجو" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5167,7 +5188,7 @@ msgstr "جستجو" msgid "Description" msgstr "توضیحات" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "این مقدار را استفاده کنید" @@ -5208,22 +5229,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "اسم" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "طول/مقادير*" @@ -5234,7 +5255,7 @@ msgstr "طول/مقادير*" msgid "Attribute" msgstr "ويژگيها" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5256,12 +5277,12 @@ msgstr "افزودن ستون جديد" msgid "Select a column." msgstr "انتخاب دو ستون" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy msgid "Add new column" msgstr "افزودن ستون جديد" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5269,7 +5290,7 @@ msgstr "افزودن ستون جديد" msgid "Attributes" msgstr "ويژگيها" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5279,28 +5300,28 @@ msgstr "" "این خاصیت با ویرایشگر اصلی پی اچ پی سازگاری ندارد و ممکن است باعث از بین " "رفتن برخی از اطلاعات گردد!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "ایندکس غلط در سرور : %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "نام هاست برای سرور %1$s اشتباه است. لطفا تنظیمات خود را بازبینی نمایید." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سرور" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "روش احراز هویت در تنظیمات صحیح نمی باشد:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5308,20 +5329,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "شما باید به %s %s یا جدیدتر به روز شوید." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "احتمال وجود exploit" @@ -5893,7 +5914,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6003,13 +6024,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "شرج" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "ذخيره به صورت پرونده" @@ -6019,7 +6040,7 @@ msgstr "مجموعه كاراكترهاي پرونده" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "قالب" @@ -6152,7 +6173,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -6167,7 +6188,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" @@ -6176,7 +6197,7 @@ msgid "Enclose table and column names with backquotes" msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6208,7 +6229,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "افزودن %s" @@ -6390,7 +6411,7 @@ msgid "Customize the navigation tree." msgstr "سفارشی کردن فیلدهای ورودی متن" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "سرور" @@ -7313,7 +7334,7 @@ msgstr "" msgid "Authentication method to use." msgstr "ورود" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7971,7 +7992,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7979,10 +8000,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8135,25 +8156,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "مستندات باز" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "جدول %s خالی شد." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "نمای %s حذف شد" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8168,12 +8189,12 @@ msgid "Position" msgstr "موقعیت" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 #, fuzzy msgid "Server ID" msgstr "سرور" @@ -8183,7 +8204,7 @@ msgid "Original position" msgstr "موقعیت اصلی" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "اطلاعات" @@ -8197,42 +8218,42 @@ msgstr "پاک کردن کوئری های نمایش داده شده" msgid "Show Full Queries" msgstr "نمایش کامل کوئری" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "پایگاه داده %1$s ایجاد شد." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "پايگاه داده %s حذف گرديد." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "سطرها" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "جمع كل" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "بار بیش از حد" @@ -8261,34 +8282,34 @@ msgstr "" msgid "Enable statistics" msgstr "فعال سازی آمارها" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "اطلاعاتی یافت نشد" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8343,7 +8364,7 @@ msgstr "پايگاه داده %s حذف گرديد." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query" msgid "Query error" @@ -8363,12 +8384,12 @@ msgstr "تغيير" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "فهرست" @@ -8391,13 +8412,13 @@ msgstr "كاملا متن" msgid "Distinct values" msgstr "این مقدار را استفاده کنید" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8419,192 +8440,196 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "خطا در بارگزاری افزونه ها, لطفا مراحل نصب را چک کنید" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "بدون کلمه ی عبور" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "اسم رمز:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "دوباره نوشتن" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "رمزگذاری پسورد" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "نوع صدور" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "New name" msgid "New template:" msgstr "نام جدید" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "New page name: " msgid "Template name" msgstr "نام صفحه جدید : " -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "ساختن" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s جدول" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "به روز شده" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Select Tables" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "روش صدور" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "پايگاههاي داده" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "جدولها" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "قالب" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "سطرها" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8612,124 +8637,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "فشرده‌سازي" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "ذخيره به صورت پرونده" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export" msgid "Export tables as separate files" msgstr "صدور" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "ذخيره به صورت پرونده" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Select Tables" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Select Tables" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "نام پايگاه داده" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "No tables" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "نام ستونها" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "نام ستونها" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "نسخه سرور" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "نسخه سرور" @@ -9134,13 +9159,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "فضای کافی برای ذخیره فایل %s موجود نیست." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9148,75 +9173,75 @@ msgstr "" "فایل %s در حال حاضر در سرور وجود دارد، نام فایل را تغییر دهید و یا تنظیمات " "بازنویسی را بررسی کنید ." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "وب سرور مجوز ذخیره فایل %s را ندارد ." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "اطلاعات دریافت شده در فایل %s ذخیره شد‬." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "No databases" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "No databases" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "فقط ساختار" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9228,88 +9253,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "ساخت يك فهرست در %s ستون" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "پنهان کردن" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "تابع" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "يا" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "Select from the web server upload directory %s:" msgid "web server upload directory:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "درج" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "و سپس" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9320,31 +9346,31 @@ msgstr "" msgid "Value" msgstr "مقدار" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "فقط ساختار" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "ساختار و داده‌ها" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "فقط داده‌ها" @@ -9355,14 +9381,14 @@ msgid "Add AUTO INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "اعمال محدودیت ها" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9422,8 +9448,8 @@ msgstr "پروسه ها" msgid "Views:" msgstr "نمایش" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "نمايش" @@ -9470,19 +9496,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "ذخيره به صورت پرونده" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9498,7 +9524,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "افزودن ستونها" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9523,7 +9549,7 @@ msgstr "جدید" msgid "Database operations" msgstr "آمار پايگاههاي داده" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9645,13 +9671,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "انتخاب دو ستون" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9903,8 +9929,8 @@ msgid "Rename database to" msgstr "تغییر نام پایگاه داده به" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9950,83 +9976,83 @@ msgstr "(تنها)" msgid "Move table to (database.table)" msgstr "انتقال جدول به (پايگاه داده.جدول)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "بازناميدن جدول به" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "توضيحات جدول" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "كپي كردن جدول به (پايگاه داده.جدول)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "نگهداشت جدول" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "انالیز جدول" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "بررسي جدول" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "بررسي جدول" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, fuzzy, php-format msgid "Table %s has been flushed." msgstr "جدول %s حذف گرديد" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "بازسازی جدول" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10034,105 +10060,105 @@ msgstr "بازسازی جدول" msgid "Delete data or table" msgstr "حذف داده‌هاي جدول" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "No databases" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "تعمیر" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "بستن" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "نگهداشت جدول" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "جدول %s به %s انتقال داده‌شد." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "جدول %s به %s كپي شد." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "جدول %s به %s انتقال داده‌شد." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "جدول %s به %s كپي شد." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10160,18 +10186,18 @@ msgstr "نمايش رنگ" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "خطا در اتصال : تنظیمات اشتباه می باشد." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "به %s خوش‌آمديد" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10180,7 +10206,7 @@ msgstr "" "احتمالا فایل تنظیمات ایجاد نکرده اید.می توانید از %1$ssetup script%2$s برای " "ایجاد آن استفاده نمایید." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10191,7 +10217,7 @@ msgstr "" "host,username و password را در تنظیمات خود چک کنید و مطمئن شوید اطلاعات آن " "با اطلاعاتی که مدیر MYSQL SERVER داده است تفاوتی نداشته باشد." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10220,15 +10246,15 @@ msgstr "نام كاربر:" msgid "Server Choice:" msgstr "انتخاب سرور" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10300,7 +10326,7 @@ msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" @@ -10309,7 +10335,7 @@ msgstr "حذف داده‌هاي جدول" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "رویداد" @@ -10317,8 +10343,8 @@ msgstr "رویداد" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10417,7 +10443,7 @@ msgstr "قراردادن نام ستونها در اولين سطر" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -10976,7 +11002,7 @@ msgstr "توضيحات جدول" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "اضافي" @@ -11328,57 +11354,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "no Description" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11387,309 +11413,309 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy msgid "Master connection:" msgstr "توضيحات جدول" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "كاملا متن" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "فقط ساختار" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "فقط ساختار" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "نام كاربر" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "نام كاربر" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "اسم رمز" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "ترتيب" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "متغییر" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "ميزبان" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "محلی" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "همه كاربران" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "فیلد های متنی" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "دوباره نوشتن" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "تغيير اسم رمز" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "خطا" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11711,7 +11737,7 @@ msgstr "جدول %s حذف گرديد" msgid "Event %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11721,84 +11747,84 @@ msgstr "" msgid "Edit event" msgstr "افزودن يك كاربر جديد" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "User name" msgid "Event name" msgstr "نام كاربر" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "تغيير" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "شنبه" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "انتها" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "تمام وروديها" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in Processing Request" @@ -11821,7 +11847,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy msgid "Returns" msgstr "آمار پايگاههاي داده" @@ -11834,141 +11860,141 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "تغییر ستون" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "نام ستونها" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "پارامترها" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "ایجاد" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "ایجاد پارامتر" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "حذف آخرین پارامتر" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "نوع برگشتی" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "طول/مقادير*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy msgid "Return options" msgstr "آمار پايگاههاي داده" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "حالت امنیتی" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11992,34 +12018,34 @@ msgstr "جدول %s حذف گرديد" msgid "Edit trigger" msgstr "افزودن يك كاربر جديد" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "نام كاربر" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12145,621 +12171,570 @@ msgstr "" msgid "Databases statistics" msgstr "آمار پايگاههاي داده" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "وارد کردن تمام دسترسی ها به غیر از GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "دادن مجوز برای حذف اطلاعات." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "دادن مجوز برای ساخت پایگاه داده و جدول جدید." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "دادن مجوز برای حذف پایگاه داده و جدول ها." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "دادن اجازه برای وارد و خارج کردن اطلاعات از فایل ها." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "دادن مجوز برای تغییر ساختار جدول های ایجاد شده ." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "دادن مجوز برای ایجاد جدول موقت." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "دادن مجوز برای ایجاد نمایه جدید." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "دادن مجوز برای قرار دهی رویداد برای لیست رویدادهای زمانی" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows creating and dropping triggers." msgstr "دادن مجوز برای تغییر یا حذف روال های ذخیره شده." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "دادن مجوز برای ایجاد روال ." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "دادن مجوز برای تغییر یا حذف روال های ذخیره شده." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "دادن مجوز برای ایجاد , حذف و تغییر نام کاربران." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "خير" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy msgid "Does not require SSL-encrypted connections." msgstr "توضيحات جدول" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy msgid "Requires SSL-encrypted connections." msgstr "توضيحات جدول" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" msgstr "افزودن ستون جديد" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "دادن مجوز برای تغییر یا حذف روال های ذخیره شده." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows creating stored routines." msgid "Allows executing this routine." msgstr "دادن مجوز برای ایجاد روال ." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "مدیریت" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "دادن مجوز برای ایجاد جدول جدید." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "دادن اجازه برای ایجاد کاربران و اعطای امتیازات بدون بارگذاری اطلاعات جداول." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "ورود" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "تغيير کلمه ی عبور" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authentication" -msgid "Native MySQL Authentication" -msgstr "ورود" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "اطلاعات ورود" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "نام كاربر" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "نام سابقه" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "ورود" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "رمزگذاری پسورد" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "شما امتيازات %s را ابطال كرديد." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "افزودن کاربر" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "آمار پايگاههاي داده" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "تنظیمات دسترسی به پایگاه داده \"%s\" را بررسی کنید." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "نمای %s حذف گرديد." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 #, fuzzy msgid "Grant" msgstr "چاپ" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "همه" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "ابطال" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "چک سطح دسترسی" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Removing Selected Users" -msgid "Remove selected user accounts" -msgstr "حذف کاربران انتخاب شده" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "امتيازات" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "كاربر" -#: libraries/server_privileges.lib.php:4620 -#, fuzzy -#| msgid "New" -msgctxt "Create new user" -msgid "New" -msgstr "جدید" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "كاربر" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12768,7 +12743,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12777,11 +12752,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." @@ -13073,12 +13048,12 @@ msgstr "دستور" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "نمايش جدولها" @@ -13106,12 +13081,12 @@ msgstr "در دقیقه" msgid "per second:" msgstr "در ثانیه" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "شرج" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13140,33 +13115,33 @@ msgstr "نمايش جدولها" msgid "Related links:" msgstr "عمليات" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13174,78 +13149,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13253,7 +13228,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13261,42 +13236,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13304,33 +13279,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13339,243 +13314,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13583,99 +13558,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13683,18 +13658,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13702,13 +13677,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "پیگردی فعال نمی باشد." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13745,48 +13720,48 @@ msgstr "سرور پایگاه داده" msgid "Table level tabs" msgstr "توضيحات جدول" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "نمایش" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "افزودن کاربر" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy msgid "User group menu assignments" msgstr "امتيازات" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "نام ستونها" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "نسخه سرور" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "سرور پایگاه داده" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13911,7 +13886,7 @@ msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" msgid "Run SQL query/queries on table %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14000,102 +13975,102 @@ msgstr "" msgid "Version" msgstr "نسخه" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "ایجاد شده" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "به روز شده" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "نسخه سرور" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "گزارشات دنبال شده" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "تصویر لحظه ای ساختار" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "فعال" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "غیر فعال" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "No databases" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "داده" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "نام كاربر" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14103,79 +14078,79 @@ msgctxt "None for default" msgid "None" msgstr "خير" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "پیگردی فعال می باشد." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "پیگردی فعال می باشد." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "نسخه سرور" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "جدول های پیگیری نشده" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "پیگیری جدول" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "جدول های پیگیری شده" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "آخرین نسخه" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "در حال حذف اطلاعات پیگیری" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "نسخه ها" @@ -14183,7 +14158,7 @@ msgstr "نسخه ها" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14209,7 +14184,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14219,57 +14194,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "امکان ذخیره تنظیمات وجود ندارد, فرم ارسال شده شامل خطا میباشد" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "مستندات phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "امکان وارد کردن اطلاعات پیکربندی وجود ندارد" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "اطلاعات پیکربندی شامل اطلاعات اشتباهی از بعضی فیلدهاست." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "آیا میخواهید تنظیمات باقی مانده را وارد کنید؟" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "ذخیره شده در: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "وارد کردن اطلاعات از طریق فایل" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "وارد کردن اطلاعات از طریق حافظه مرورگر" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "تنظیمات از طریق حافظه مرورگر وارد خواهد شد ." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "شما تنظیمات ذخیره شده ای ندارید!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "این قابلیت توسط مرورگر وب شما پشتیبانی نمی شود" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "ادغام با پیکربندی فعلی" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14278,25 +14253,25 @@ msgstr "" "شما میتوانید تنظیمات بیشتری را از طریق config.inc.php , به طور مثال. با " "استفاده از %sSetup script%s ثبت کنید." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "ذخيره به صورت پرونده" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "ذخیره کردن در حافظه مرورگر" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "تنظیمات در حافظه مرورگر ذخیره خواهد شد." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "تنظیمات قبلی بازنویسی شدند!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "شما میتوانید تنظیمات خود را به حالت پیش فرض بازگردانید." @@ -14304,45 +14279,45 @@ msgstr "شما میتوانید تنظیمات خود را به حالت پیش msgid "View dump (schema) of databases" msgstr "نمايش الگوي(طرح) پايگاه داده" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "امتيازات" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14350,103 +14325,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "اصلاحات ذخيره گرديد" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "اصلاحات ذخيره گرديد" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "محلی" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "مستندات phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14484,28 +14458,28 @@ msgstr "" msgid "Show form" msgstr "نمايش رنگ" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14520,12 +14494,12 @@ msgstr "No databases" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14538,36 +14512,36 @@ msgstr "نمايش الگوي جدول" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "هیچ سطری انتخاب نشده است" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "پیگردی فعال می باشد." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "پايگاه داده %s حذف گرديد." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "هیچ سطری انتخاب نشده است" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14794,7 +14768,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy msgid "Browser display transformation" msgstr "اطلاعات ورود" @@ -14820,7 +14794,7 @@ msgstr "" "يا 'a\\'b')" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Information" msgid "Input transformation" @@ -15340,17 +15314,17 @@ msgid "Size" msgstr "اندازه" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "ایجاد" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "آخرین به روز رسانی" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "آخرین بازدید" @@ -15385,6 +15359,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "در حال حذف اطلاعات پیگیری" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Check privileges for database \"%s\"." @@ -15405,10 +15385,49 @@ msgstr "تنظیمات دسترسی به پایگاه داده \"%s\" را بر msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +#, fuzzy +#| msgid "New" +msgctxt "Create new user" +msgid "New" +msgstr "جدید" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "خير" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Removing Selected Users" +msgid "Remove selected user accounts" +msgstr "حذف کاربران انتخاب شده" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "سابقه بانری را برای مشاهده انتخاب کنید" @@ -15441,7 +15460,7 @@ msgstr "افزونه" msgid "Author" msgstr "نویسنده" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "غيرفعال" @@ -15629,7 +15648,7 @@ msgstr "كاربر:" msgid "Comment:" msgstr "توضيحات" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15669,30 +15688,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "اعمال محدودیت ها" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy msgid "Internal relations" msgstr "اروپای غربی" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy msgid "Internal relation" msgstr "اروپای غربی" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15756,13 +15775,13 @@ msgstr "موقعیت اصلی" msgid "Replaced string" msgstr "عمليات" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "تکراری" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "پرس و جوي SQL" @@ -15848,7 +15867,7 @@ msgid "at beginning of table" msgstr "در ابتداي جدول" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -15880,30 +15899,30 @@ msgstr "طول سطر" msgid "Index length" msgstr "طول سطر" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "موقعیت" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Print view" msgid "Edit partitioning" msgstr "نماي چاپ" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "نماي چاپ" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "فضاي استفاده‌شده" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "موثر" @@ -15933,33 +15952,33 @@ msgstr "پيشنهاد ساختار جدول" msgid "Track view" msgstr "پیگیری جدول" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "آمار سطرها" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "پويا" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "طول سطر" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "اندازه سطر" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15973,50 +15992,50 @@ msgstr "جدول %s حذف گرديد" msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "تم" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy msgid "Available browser display transformations" msgstr "اطلاعات ورود" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy msgid "Available input transformations" msgstr "اطلاعات ورود" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "توضیحات" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "گزارشات دنبال شده" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "تنظيمات به هنگام گرديد." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16088,7 +16107,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16113,19 +16132,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16181,26 +16200,26 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "جدول %s حذف گرديد" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "در ابتداي جدول" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16217,10 +16236,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "در ابتداي جدول" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16265,7 +16290,7 @@ msgstr "" msgid "strict error" msgstr "پرس و جو" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17407,6 +17432,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "مقدار concurrent_insert صفر شده است" +#, fuzzy +#~| msgid "Authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "ورود" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/fi.po b/po/fi.po index 852e646932..c12d332265 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-08-04 19:13+0000\n" "Last-Translator: Juha \n" "Language-Team: Finnish Are you sure you " "want to continue?" @@ -1919,51 +1924,51 @@ msgstr "" "Tämä toiminto saattaa muuttaa joidenkin sarakkeiden määritelmiä.
Oletko " "varma että haluat jatkaa?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Jatka" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Lisää pääavain" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Pääavain lisätty." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Viedään sinut seuraavaan vaiheeseen…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Ensimmäinen askel taulun '%s' normalisoinnille on valmis." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Vaiheen loppu" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Normalisaation toinen askel (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Valmis" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Vahvista todeksi osittaiset riippuvuudet" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Osittaiset riippuvuudet ovat seuraavat:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1971,20 +1976,20 @@ msgstr "" "Huomio: a, b -> d, f merkitsee että sarakkeiden a ja b arvot yhdistettynä " "voivat määrittää sarakkeiden d ja f arvot." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Osittaisia riippuvuuksia ei ole valittu!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Näytä minulle mahdolliset osittaiset riippuvuudet perustuen taulun tietoihin" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Piilota osittaisten riippuvuuksien lista" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1993,178 +1998,178 @@ msgstr "" "viedä sekunnin tai kaksi riippuen tietojen koosta ja taulun sarakkeiden " "määrästä." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Askel" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Seuraavat toiminnot tullaan suorittamaan:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP sarakkeet %s taulusta %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Luo seuraava taulu" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Normalisaation kolmas askel (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Vahvista todeksi transitiiviset riippuvuudet" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Valitut riippuvuudet ovat seuraavat:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Yhtään riippuvuutta ei ole valittu!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Tallenna" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Piilota hakukriteerit" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Näytä hakukriteerit" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Aluehaku" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Sarakkeiden enimmäismäärä:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Sarakkeiden vähimmäismäärä:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Vähimmäisarvo:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Enimmäisarvo:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Piilota etsi ja korvaa kriteerit" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Näytä etsi ja korvaa kriteerit" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Kukin piste kuvaa tietoriviä." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Pisteen nimi näkyy, kun osoitin viedään sen ylle." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Lähennä, valitse kohta hiirellä." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Palaa alkuperäiseen tilaan napsauttamalla nollaa zoomaus painikeeta." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Näytä ja tarvittaessa muokkaa tietoriviä napsauttamalla tietopistettä." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Kaavion kokoa voi muuttaa raahaamalla sen oikeata alakulmaa." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Valitse kaksi saraketta" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Valitse kaksi eri saraketta" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Tietopisteen sisältö" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopioi" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Piste" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Rivimerkkijono" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Monikulmio" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Sisäkehä" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Ulkokehä" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Haluatko kopioida salausavaimen?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Salausavain" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2172,24 +2177,24 @@ msgstr "" "Olet tehnyt muutoksia tähän sivuun; sinua pyydetään vahvistamaan ennen kuin " "hylkäät muutokset" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Valitse pää- tai uniikkiavain!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Valitse näytettävä sarake" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2197,76 +2202,76 @@ msgstr "" "Asettelumuutoksia ei ole tallennettu. Tallentamattomat muutokset menetetään. " "Haluatko silti jatkaa?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Sivun nimi" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Tallenna sivu" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Tallenna sivu nimellä" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Avaa sivu" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Poista sivu" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetön" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Valitse sivu jatkaaksesi" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Haluatko tallentaa nykyisen sivun muutokset?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Sivu poistettu onnistuneesti" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Vie relaatioskeema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisää valinta sarakkeelle ”%s”." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objekti(a) luotu." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Lähetä" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Peruuta muokkaaminen painamalla Esc-näppäintä." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2274,15 +2279,15 @@ msgstr "" "Olet muuttanut joitakin tietoja ja niitä ei ole tallennettu. Haluatko " "varmasti poistua tältä sivulta ennen tietojen tallentamista?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Muuta järjestystä vetämällä." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Järjestä tämän sarakkeen tulokset napsauttamalla." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2292,26 +2297,26 @@ msgstr "" "laittaaksesi ASC/DESC - ehdon päälle.
- Ctrl+Click tai Alt+Click (Mac: " "Shift+Option+Click) poistaaksesi sarakkeen ORDER BY - klausuulista" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Merkitse tai poista merkintä napsauttamalla." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Kopioi kentän nimi kaksoisnapsauttamalla." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Muuta sarakkeen näkyvyyttä
napsauttamalla pudotusvalikon nuolta." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Näytä kaikki" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2320,13 +2325,13 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Ole hyvä ja anna pätevä heksadesimaalinen merkkijono. Pätevät merkit ovat " "0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2334,104 +2339,104 @@ msgstr "" "Oletko varma että haluat nähdä kaikki rivit? Suuret taulut voivat kaataa " "selaimesi." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Alkuperäinen pituus" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "peruuta" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Keskeytetty" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Onnistui" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Tuo tila" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Vedä tiedostot tähän" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Valitse ensin tietokanta" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Tulosta" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Useimpia sarakkeita voi myös muokata
\n" "painamalla suoraan niiden sisältöä." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Useimpia sarakkeita voi myös muokata
painamalla suoraan niiden sisältöä." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Siirry linkkiin:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopioi kentän nimi." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Napsauta hiiren kakkospainikeella sarakkeen nimeä kopioidaksesi sen " "leikepöydälle." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Keksi" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Lisää" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Näytä paneeli" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Piilota paneeli" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Näytä piilotetut navigointipuun kohteet." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Linkitä pääpaneelin kanssa" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Poista pääpaneelin linkki" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Pyydettyä sivua ei löytynyt historiasta, se voi olla vanhentunut." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2441,48 +2446,48 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", viimeisin vakaa versio:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "ajan tasalla" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Luo näkymä" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Lähetä virheraportti" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Lähetä virheraportti" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Tapahtui vakava JavaScript-virhe. Haluatko lähettää virheraportin?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Muuta raportin asetuksia" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Näytä raportin tarkemmat tiedot" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Vientisi on vaillinainen, koska PHP-tasolla on alhainen suoritusaikaraja!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2492,60 +2497,60 @@ msgstr "" "lomake jotkut kentät voidaan jättää huomiotta, PHP:n max_input_vars " "konfiguraation vuoksi." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Palvelimella on havaittu joitakin virheitä!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Ole hyvä ja katso tämän ikkunan alalaitaan." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Sivuuta kaikki" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Asetuksiesi mukaisesti niitä ollaan lähettämässä para-aikaa, ole hyvä ja ole " "kärsivällinen." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Suoritetaanko tämä kysely uudelleen?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Haluatko varmasti poistaa tämän kirjanmerkin?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "SQL-virheenkorjauksen tietoja haettaessa tapahtui virhe." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s SQL-kyselyä suoritettu %s kertaa %s sekunnissa." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argumenttia syötetty" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Näytä argumentit" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Piilota argumentit" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Aikaa kului:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2560,349 +2565,369 @@ msgstr "" "tyhjennys voi auttaa. Safari-selaimella tällaisen ongelman aiheuttaa yleensä " "\"yksityisen tilan selaus\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Kopioi taulut tietokantaan" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Lisää tauluun etuliite" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Korvaa taulu etuliiteellä" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopioi taulun etuliite" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Edellinen kuukausi" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Seuraava kuukausi" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Tänään" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Tammikuu" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Helmikuu" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Maaliskuu" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Huhtikuu" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Toukokuu" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Kesäkuu" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Heinäkuu" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Elokuu" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Syyskuu" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Lokakuu" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Marraskuu" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Joulu" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Sunnuntai" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Maanantai" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Tiistai" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Keskiviikko" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Torstai" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Perjantai" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Lauantai" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Vko" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalenteri-kuukausi-vuosi" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Tunti" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekunti" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Kenttä on pakollinen" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Ole hyvä ja korjaa tämä kenttä" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Ole hyvä ja anna pätevä sähköpostiosoite" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Ole hyvä ja anna pätevä URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Ole hyvä ja anna pätevä päivämäärä" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Ole hyvä ja anna pätevä päivämäärä (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Ole hyvä ja anna pätevä numero" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Ole hyvä ja anna pätevä luottokortin numero" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Ole hyvä ja kirjoita vain numeroita" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Ole hyvä ja annat saman arvon uudelleen" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Ole hyvä ja kirjoita maksimissaan {0} merkkiä" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Ole hyvä ja kirjoita vähintään {0} merkkiä" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ole hyvä ja anna arvo joka on pituudeltaan {0} ja {1} merkin välillä" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Ole hyvä ja kirjoita arvo väliltä {0} ja {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Ole hyvä ja anna arvo joka on enintään {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Ole hyvä ja kirjoita arvo joka on vähintään {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Ole hyvä ja anna pätevä päivämäärä tai aika" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Ole hyvä ja anna pätevä heksadesimaalinen arvo" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Virhe" @@ -2967,20 +2992,20 @@ msgid "Charset" msgstr "Merkistökoodaus" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Aakkosjärjestys" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binääritietoa" @@ -3175,7 +3200,7 @@ msgid "Czech-Slovak" msgstr "Tsekkoslovakialainen" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "tuntematon" @@ -3223,26 +3248,26 @@ msgstr "" msgid "Font size" msgstr "Fonttikoko" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Näytetään %1$d kirjanmerkki (sekä yksityinen että jaettu)" msgstr[1] "Näytetään %1$d kirjanmerkkiä (sekä yksityiset että jaetut)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Ei kirjanmerkkejä" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL-kyselykonsoli" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Konfiguroidun lajitteluyhteyden asettaminen epäonnistui!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3250,25 +3275,25 @@ msgstr "" "Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty " "oikein)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Palvelin ei vastaa." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Tarkista käyttöoikeudet hakemisto sisältää tietokannan." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Lisätiedot…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Puuttuva parametri:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui." @@ -3363,110 +3388,105 @@ msgstr "Ins:" msgid "Del:" msgstr "Poista:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Suorita SQL-kysely tietokannassa %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Suorita kysely" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Tallennettu ja kirjanmerkitty haku:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Uusi kirjanmerkki" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Luo kirjanmerkki" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Päivitä kirjanmerkki" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Poista kirjanmerkki" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "vähintään yksi sanoista" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "kaikki sanat" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "koko lause" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "regexp-haku" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Tulokset hakusanalla \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Yhteensä: %s hakutulosta" msgstr[1] "Yhteensä: %s hakutulosta" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s hakutulosta taulussa %2$s" msgstr[1] "%1$s hakutulosta taulussa %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Selaa" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Poista taulusta %s löytyneet tulokset?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Hae tietokannasta" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Haettavat sanat tai arvot (jokerimerkki: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Hae:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Sanat erotetaan välilyönnein." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Tauluissa:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Poista valinta kaikista" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Sarakkeen sisällä:" @@ -3486,30 +3506,30 @@ msgstr "Suodata rivejä" msgid "Search this table" msgstr "Hae tästä taulusta" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Aloitus" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Edellinen sivu" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Seuraava sivu" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Viimeinen sivu" @@ -3518,7 +3538,7 @@ msgstr "Viimeinen sivu" msgid "All" msgstr "Kaikki" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Rivien määrä:" @@ -3527,8 +3547,8 @@ msgstr "Rivien määrä:" msgid "Sort by key" msgstr "Lajittele avaimen mukaan" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3550,10 +3570,10 @@ msgstr "Lajittele avaimen mukaan" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Valinnat" @@ -3593,29 +3613,29 @@ msgstr "Hyvin tunnettu teksti" msgid "Well Known Binary" msgstr "Hyvin tunnettu ohjelmakoodi" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Rivi on nyt poistettu." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Lopeta" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Saattaa olla likimääräinen. Katso [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "SQL-kyselysi on suoritettu onnistuneesti." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3624,73 +3644,73 @@ msgstr "" "Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " "%sohjeista%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Näytetään rivit %1s–%2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d kokonaisuudessaan, %2$d hakulauseessa" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d tulos" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Kysely kesti %01.4f sekuntia." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Valitut:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Valitse kaikki" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopioi leikepöydälle" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Näytä kaavio" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualisoi paikkatieto" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Linkkiä ei löydy!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Ei mitään" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Käännä Kana-merkeiksi" @@ -3698,25 +3718,25 @@ msgstr "Käännä Kana-merkeiksi" msgid "Too many error messages, some are not displayed." msgstr "Liikaa virhesanomia, joitakin ei näytetä." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Raportoi" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Lähetä raportti seuraavalla kerralla automaattisesti" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Kyseessä ei ollut ladattu tiedosto." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-" "asetuksen arvon." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3724,48 +3744,48 @@ msgstr "" "Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-" "asetuksen arvon." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Tiedosto lähetettiin vain osittain." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Tilapäiskansio puuttuu." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Tiedoston kirjoitus levylle epäonnistui." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Laajennus keskeytti tiedoston lähetyksen." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Tiedostoa ei voi lukea!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Virhe siirrettäessä ladattua tiedostoa, katso [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Virhe siirrettäessä ladattua tiedostoa." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Ladattua tiedostoa ei voi lukea." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3775,28 +3795,28 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Tällä hetkellä käynnissä Git-painos %1$s %2$s-haarasta." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git-tiedot puuttuvat!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Avaa uusi phpMyAdmin-ikkuna" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Tulostusversio" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Palkin klikkaus vierittää sivun ylös" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "JavaScriptin on oltava päällä tämän jälkeen!" @@ -3805,20 +3825,20 @@ msgid "No index defined!" msgstr "Indeksiä ei ole määritelty!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksit" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3828,59 +3848,59 @@ msgstr "Indeksit" msgid "Action" msgstr "Toiminnot" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Avaimen nimi" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinaliteetti" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Kommentti" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Perusavain on poistettu." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeksi %s on poistettu." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Tuhoa" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3889,19 +3909,19 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sivunumero:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Tukematon kielikoodi ohitettiin." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Kieli" @@ -3927,11 +3947,11 @@ msgstr "Palvelin" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3950,14 +3970,15 @@ msgid "View" msgstr "Näkymä" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3966,8 +3987,8 @@ msgid "Table" msgstr "Taulu" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3975,45 +3996,45 @@ msgstr "Taulu" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Etsi" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Lisää rivi" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Käyttöoikeudet" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Toiminnot" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Seuranta" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4029,16 +4050,16 @@ msgstr "Herättimet" msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Haku" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutiinit" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4046,20 +4067,20 @@ msgstr "Rutiinit" msgid "Events" msgstr "Tapahtumat" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Suunnittelija" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Keskisarakkeet" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Tietokannat" @@ -4068,53 +4089,53 @@ msgid "User accounts" msgstr "Käyttäjätilit" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binääriloki" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Kahdennus" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Muuttujat" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Merkistöt" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Moottorit" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Liitännäiset" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d rivi(ä) muutettu." msgstr[1] "%1$d rivi(ä) muutettu." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d rivi(ä) poistettu." msgstr[1] "%1$d rivi(ä) poistettu." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4162,27 +4183,27 @@ msgstr "Suosikkitaulut" msgid "Favorites" msgstr "Suosikit" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Tarjoa tämän kirjanmerkiksi tallennetun haun nimi." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Puutteelliset tiedot kirjanmerkityn haun tallentamiseksi." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Tämänniminen merkintä on jo olemassa." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Puutteelliset tiedot haun poistamiseksi." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Puutteelliset tiedot haun lataamiseksi." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Virhe ladattaessa hakua." @@ -4244,7 +4265,7 @@ msgstr "Näytä avoimet taulut" msgid "Show slave hosts" msgstr "Näytä alipalvelimet" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" @@ -4298,70 +4319,70 @@ msgid_plural "%d minutes" msgstr[0] "%d minuutti" msgstr[1] "%d minuuttia" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on käytettävissä tällä MySQL-palvelimella." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Tuntematon taulun tila:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähdetietokanta '%s' ei löytynyt!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Kohde tietokantaa '%s' ei löydy!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Virheellinen tietokanta:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Virheellinen taulukon nimi:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Virhe nimettäessä uudelleen taulua %1$s muotoon %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Taulu %1$s on nimeltään %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Taulukon käyttöliittymäasetuksia ei voida tallentaa!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4370,7 +4391,7 @@ msgstr "" "Taulun käyttöliittymäasetuksia ei voitu siivota (katso $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4381,19 +4402,19 @@ msgstr "" "eivät säily sivun päivittämisen jälkeen. Tarkista onko taulukon rakenne " "muuttunut." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Perusavaimen nimen on oltava PRIMARY!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Indeksiä ei voi muuttaa PRIMARY-nimiseksi!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Indeksin osia ei ole määritelty!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" @@ -4713,7 +4734,7 @@ msgid "Date and time" msgstr "Päiväys ja aika" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Merkkijono" @@ -4728,126 +4749,126 @@ msgstr "Geometrinen" msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Staattinen analyysi:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d virhettä havaittu analyysin aikana." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analyysin selostus %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Ilman PHP-koodia" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Suorita kysely" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Luo PHP-koodi" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Päivitä" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilointi" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Muokkaa inline-koodia" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Su" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Puuttuva parametri:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Siirry tietokantaan \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Palvelimelle ladattavia tiedostoja ei ole!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tyhjennä" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Suorita" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Käyttäjät" @@ -4861,7 +4882,7 @@ msgstr "minuutissa" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "tunnissa" @@ -4869,12 +4890,12 @@ msgstr "tunnissa" msgid "per day" msgstr "päivässä" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Haku:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4882,7 +4903,7 @@ msgstr "Haku:" msgid "Description" msgstr "Kuvaus" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Käytä tätä arvoa" @@ -4922,22 +4943,22 @@ msgstr "KYLLÄ" msgid "NO" msgstr "EI" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nimi" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Pituus/Arvot*" @@ -4946,7 +4967,7 @@ msgstr "Pituus/Arvot*" msgid "Attribute" msgstr "Attribuutti" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4963,11 +4984,11 @@ msgstr "Lisää sarake" msgid "Select a column." msgstr "Valitse sarake." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Lisää uusi sarake" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4975,7 +4996,7 @@ msgstr "Lisää uusi sarake" msgid "Attributes" msgstr "Attribuutit" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4985,26 +5006,26 @@ msgstr "" "valinta ei sovi yhteen phpMyAdminin kanssa ja saattaa johtaa tietojen " "katoamiseen!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Virheellinen palvelimen indeksi: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Palvelin %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5015,20 +5036,20 @@ msgstr "" "konfiguraation asetukset [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin käyttää tällä hetkellä tietokantapalvelimen oletusaikavyöhykettä." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Virhe: Tunnus ei täsmää" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ylikirjoitus yritys" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "mahdollinen turva-aukko" @@ -5627,7 +5648,7 @@ msgid "Compress on the fly" msgstr "Pakkaa lennossa" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Asetustiedosto" @@ -5735,12 +5756,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Suorituksen enimmäiskesto" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Käytä %s lauseketta" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Tallenna tiedostoon" @@ -5750,7 +5771,7 @@ msgstr "Tiedoston merkistö" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Muoto" @@ -5875,7 +5896,7 @@ msgid "Save on server" msgstr "Tallenna palvelimelle" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" @@ -5888,7 +5909,7 @@ msgid "Remember file name template" msgstr "Muista tiedostonimen pohja" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" @@ -5897,7 +5918,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" @@ -5927,7 +5948,7 @@ msgstr "Vie yhteenkuuluvat metatiedot phpMyAdminin konfiguraatiomuistista" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Lisää %s" @@ -6098,7 +6119,7 @@ msgid "Customize the navigation tree." msgstr "Mukauta navigointipuuta." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Palvelimet" @@ -6990,7 +7011,7 @@ msgstr "HTTP alue" msgid "Authentication method to use." msgstr "Käytettävä todennustyyppi." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Todennustyyppi" @@ -7726,7 +7747,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Aktivoi kehittäjä-välilehti asetuksissa" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Tarkista uusin versio" @@ -7734,10 +7755,10 @@ msgstr "Tarkista uusin versio" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Aktivoi uusimman version tarkistuksen phpMyAdmin-pääsivulla." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Version tarkistus" @@ -7884,24 +7905,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument teksti" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Suosikkilista on täynnä!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Taulu %s on tyhjennetty." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Näkymä %s on poistettu." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Taulu %s on poistettu." @@ -7915,12 +7936,12 @@ msgid "Position" msgstr "Sijainti" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tapahtuman tyyppi" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Palvelimen tunnus" @@ -7929,7 +7950,7 @@ msgid "Original position" msgstr "Alkuperäinen sijainti" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Tiedot" @@ -7943,42 +7964,42 @@ msgstr "Lyhennä näytettävät kyselyt" msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Ei tietokantoja" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d tietokanta poistettiin onnistuneesti." msgstr[1] "%1$d tietokantaa poistettiin onnistuneesti." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Kpl rivejä" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Yhteensä" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Ylijäämä" @@ -8005,34 +8026,34 @@ msgstr "" msgid "Enable statistics" msgstr "Aktivoi tilastot" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Sinulla ei ole tarpeeksi käyttöoikeuksia palvelimen muuttujien ja asetusten " "katselemiseksi. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Muuttujan asettaminen epäonnistui" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "SQL-hakukyselyä tietojen hakemiseksi ei olla asetettu." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Ei numeerisia sarakkeita taulussa josta luodaan kaaviota." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Ei näytettäviä tietoja" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Taulun %1$s muuttaminen onnistui." @@ -8087,7 +8108,7 @@ msgstr "Valitsemiesi käyttäjien poisto onnistui." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -8107,12 +8128,12 @@ msgstr "Muokkaa" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeksi" @@ -8135,13 +8156,13 @@ msgstr "Koko teksti" msgid "Distinct values" msgstr "Selaa erilaisia arvoja" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muutoksia" @@ -8163,186 +8184,190 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Ei salasanaa" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Salasana:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Kirjoita uudelleen:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Salasanan salaus:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Tuo tietokantoja nykyiseltä palvelimelta" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Vie tauluja tietokannasta \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Tuo rivejä taulusta %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Viennin tyyppi" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Tiedostonimen pohja:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Taulun nimi" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Luo" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Tiedostonimen pohja:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s taulu" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Päivitetty" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "Valitse taulu" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Vientimetodi" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Nopea - näytä vain vähän vaihtoehtoja" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Mukautettu - näytä kaikki mahdolliset vaihtoehdot" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Tietokannat" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Taulut" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Muoto:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Muotoiluvaihtoehdot:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Merkistön uudelleenkoodaus:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rivit:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Vedosta rivi/rivejä" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Vedosta kaikki rivit" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Tallenna palvelimelle hakemistoon %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Tiedostonimen pohja:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8353,114 +8378,114 @@ msgstr "" "ajanmuodostostusmerkkijonoja. Lisäksi tapahtuu seuraavat muutokset: %3$s. " "Muu teksti pysyy alkuperäisenä. Katso lisätietoja %4$sFAQ%5$s." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Tiedoston merkistö:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Pakkaus:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "ZIP-pakattu" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "GZIP-pakattu" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Näytä tulos tekstinä" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Vie näkymiä tauluina" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Vie taulun otsikot" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Tallenna tulos tiedostoon" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Valitse taulut" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Valitse taulut" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "tietokannan nimi" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "Uuden sivun nimi: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "Kopioi kenttän nimi" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Kopioi kenttän nimi" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "Lisännyt %2$s %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "kirjoittanut %1$s by %2$s" @@ -8920,13 +8945,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liian vähän tilaa tiedoston %s tallentamiseen." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8934,38 +8959,38 @@ msgstr "" "Tiedosto %s on jo olemassa palvelimella, vaihda tiedostonimeä tai tarkista " "korvausasetuksen tila." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Tarkastele rakenteen sisältöä napsauttamalla sen nimeä" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -8974,42 +8999,42 @@ msgid "" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Muokkaa rakennetta seuraamalla \"Rakenne\" linkkiä" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Siirry tietokantaan: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Muokkaa asetuksia: %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Siirry taulukkoon: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Rakenne %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Siirry näkymään: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9020,84 +9045,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Luo  %s sarakkeen indeksi" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Kätke" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funktio" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Koska sen pituus,
Tätä saraketta ei ehkä voi muokata" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Tai" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "palvelimen lähetyshakemisto" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Muokkaa/lisää" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Aloita lisäys alusta %s rivillä" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ja sen jälkeen" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9107,8 +9133,8 @@ msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9119,31 +9145,31 @@ msgstr "" msgid "Value" msgstr "Arvo" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Vain rakenne" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Rakenne ja tiedot" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Vain tiedot" @@ -9154,14 +9180,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Lisää rajoitteet" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9224,8 +9250,8 @@ msgstr "Proseduurit" msgid "Views:" msgstr "Näkymät" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Näytä" @@ -9272,19 +9298,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Tallenna tiedostoon" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9300,7 +9326,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Sarakkeita ei voida lisätä!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9321,7 +9347,7 @@ msgstr "" msgid "Database operations" msgstr "Tietokannan tulostusvalinnat" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9424,13 +9450,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Valitse kaksi saraketta" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -9687,8 +9713,8 @@ msgid "Rename database to" msgstr "Muuta tietokannan nimeksi" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9736,83 +9762,83 @@ msgstr "(yksitellen)" msgid "Move table to (database.table)" msgstr "Siirrä taulu toiseen tauluun (tietokanta.taulu)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Nimeä taulu uudelleen" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Taulun kommentit" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Taulun valinnat" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Tallennusmoottori" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Siirry kopioituun tauluun" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Taulun ylläpito" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analysoi taulu" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Tarkista taulu" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Tarkista taulu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Eheytä taulu" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Taulun %s välimuisti on tyhjennetty." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimoi taulu" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Korjaa taulu" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -9820,105 +9846,105 @@ msgstr "Korjaa taulu" msgid "Delete data or table" msgstr "Poista tämän taulun seurantatiedot" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Tyhjennä taulu (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Siirry tietokantaan" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analysoi" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Tarkasta" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimoi" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Rakenna uudestaan" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Korjaa" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Paina kokoon" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Osituksen ylläpito" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Ositus %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Poista ositus" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Taulua ei voi siirtää itseensä!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Taulua ei voi kopioida itseensä!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Taulu %s on siirretty %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Taulu %s on siirretty %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Taulun nimi puuttuu!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -9951,18 +9977,18 @@ msgstr "Näytä värit" msgid "Only show keys" msgstr "Näytä vain avaimet" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Tervetuloa, toivottaa %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9971,7 +9997,7 @@ msgstr "" "Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " "%1$sasetusskriptillä%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9983,7 +10009,7 @@ msgstr "" "php-tiedostosta ja varmista, että ne vastaavat MySQL-palvelimen " "järjestelmänvalvojan antamia tietoja." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10011,15 +10037,15 @@ msgstr "Käyttäjätunnus:" msgid "Server Choice:" msgstr "Valitse palvelin" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10086,7 +10112,7 @@ msgstr "Tiedon vedostusasetukset" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Vedos taulusta" @@ -10095,7 +10121,7 @@ msgstr "Vedos taulusta" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Tapahtuma" @@ -10103,8 +10129,8 @@ msgstr "Tapahtuma" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Määritys" @@ -10198,7 +10224,7 @@ msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -10765,7 +10791,7 @@ msgstr "Sisällysluettelo" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Lisätiedot" @@ -11207,18 +11233,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "ei kuvausta" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -11229,13 +11255,13 @@ msgstr "" "Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä phpMyAdmin configuration " "storage-kantaa" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -11244,28 +11270,28 @@ msgstr "" "Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä phpMyAdmin configuration " "storage-kantaa" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Isäntäpalvelimen kahdennus" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Näytä alipalvelimet, joihin on muodostettu yhteys" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Lisää alikahdennuksen käyttäjä" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Isäntäpalvelimen asetukset" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11286,19 +11312,19 @@ msgstr "" "Voit myös oletusarvoisesti sivuuttaa kaikki tietokannat ja sallia vain " "tiettyjen tietokantojen kahdennuksen. Valitse tila:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Kahdenna kaikki tietokannat; Sivuuta:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Sivuuta kaikki tietokannat; Kahdenna:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Valitse tietokannat:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11306,7 +11332,7 @@ msgstr "" "Lisää nyt seuraavat rivit my.cnf-tiedostoosi ja käynnistä sitten MySQL-" "palvelin alusta." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11316,81 +11342,81 @@ msgstr "" "jälkeen esiin pitäisi tulla sanoman, joka kertoo, että palvelin on " "asetettu isäntäpalvelimeksi." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Alipalvelimen kahdennus" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Salaamaton yhteys" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Palvelin on määritetty kahdennustoiminnon alipalvelimeksi. Valitse " "suoritettava toiminto:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Näytä alipalvelimen tilan taulu" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Ohjaa alipalvelinta:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Kokonäkymän alku" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Kokonäkymän loppu" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Nollaa alipalvelin" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "SQL-säie %s vain" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "SQL-säie %s vain" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "IO-säie %s vain" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "IO-säie %s vain" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11399,11 +11425,11 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Virheiden hallinta:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 #, fuzzy #| msgid "pping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -11411,17 +11437,17 @@ msgstr "" "Isäntä- ja alipalvelin saattavat jäädä yhtenäistämättömiksi, mikäli virheet " "ohitetaan!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Ohita nykyinen virhe" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Ohita nykyinen virhe" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11430,11 +11456,11 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon isäntäpalvelimeksi. " "Haluatko määrittää sen asetukset?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Alipalvelimen asetusten määrittely" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11442,57 +11468,57 @@ msgstr "" "Varmista, että my.cnf-asetustiedostossa on yksikäsitteinen palvelintunnus. " "Jos ei ole, lisää seuraava rivi [mysqld]-osaan:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Käyttäjänimi" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Käyttäjänimi" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Salasana" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Port" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Isännän tila" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Alipalvelimen tila" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Muuttuja" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Palvelin" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11500,41 +11526,41 @@ msgstr "" "Luettelossa on näkyvillä vain ne alipalvelimet, joilla on valinta --report-" "host=host_name." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Paikallinen" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Kuka tahansa käyttäjä" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Käytä tekstikenttää" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11542,96 +11568,96 @@ msgstr "" "Kun Host-taulua käytetään, tätä kenttää ei huomioida, vaan sen sijaan " "käytetään Host-taulussa olevia tietoja." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Kirjoita uudelleen" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Keksi salasana" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Kahdennuksen tila" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Isäntäpalvelimen kahdennus" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Isäntäpalvelimen kahdennus" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Kahdennuksen tila" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Isäntäpalvelimen kahdennus" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Virhe" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Tuntematon virhe" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Isäntäpalvelimeen %s ei voida muodostaa yhteyttä." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Isäntäpalvelimen lokin sijaintia ei voida lukea. Isäntäpalvelimen " "käyttöoikeusongelmat mahdollisia." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Pääpalvelinta ei voitu vaihtaa" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "%s on onnistuneesti vaihdettu isäntäpalvelimeksi" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, fuzzy, php-format @@ -11655,7 +11681,7 @@ msgstr "Taulu %s on poistettu" msgid "Event %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11666,90 +11692,90 @@ msgstr "" msgid "Edit event" msgstr "Muokkaa palvelinta" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Lisätiedot…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Tapahtuman tyyppi" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Muokkaa" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Suorita kysely kirjanmerkeistä" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Käynnistys" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Loppu" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "Kokonaiset lisäyslauseet" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Virheellinen taulun nimi" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in Processing Request" @@ -11772,7 +11798,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -11786,155 +11812,155 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Muokkaustila" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Virheellinen palvelimen indeksi: %s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Taulu %s on poistettu" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Taulu %s on poistettu" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiinit" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Suorat linkit" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Käytä indeksiä/indeksejä" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tuhoa tietokanta" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Paluutyyppi" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Pituus/Arvot*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taulun valinnat" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Turvallisuus" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Virheellinen taulun nimi" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Sallii talletettujen rutiinien suorittamisen." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -11962,44 +11988,44 @@ msgstr "Taulu %1$s on luotu." msgid "Edit trigger" msgstr "Lisää uusi palvelin" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Herättimet" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Aika" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Virheellinen taulun nimi" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Virheellinen taulun nimi" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Virheellinen taulun nimi" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Virheellinen taulun nimi" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12147,94 +12173,94 @@ msgstr "Merkistökoodaukset ja aakkosjärjestykset" msgid "Databases statistics" msgstr "Tietokantatilastot" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12244,135 +12270,107 @@ msgstr "" "saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Ei mitään" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Jatkuvat yhteydet" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Jatkuvat yhteydet" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Resurssirajoitukset" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12380,291 +12378,284 @@ msgstr "" "Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai " "tietokantoihin muutoksia tekeviä komentoja tunnin aikana." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutiinit" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Sallii talletettujen rutiinien suorittamisen." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Hallinta" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "globaali" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " "käyttöoikeustauluja uudestaan." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Eväste tunnistautuminen" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Sisäänkirjatumistunnitautuminen" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Eväste tunnistautuminen" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Kirjautumistiedot" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Käyttäjänimi" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Lokin nimi" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Todennus" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Salasanan salaus:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on poistettu." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Lisää käyttäjä" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Tietokanta käyttäjälle" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Anna tietokannalle \"%s\" kaikki oikeudet." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Näkymä %s on poistettu" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Mikä tahansa" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globaali" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "korvausmerkki" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Muokkaa palvelinta" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… säilytä vanha käyttäjä." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… poista vanha käyttäjä käyttäjätauluista." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12672,122 +12663,107 @@ msgstr "" "… poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " "käyttöoikeudet." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Poista valitut käyttäjät" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Käyttöoikeudet" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Käyttäjä" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Käyttäjät" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Käyttäjien yleiskatsaus" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12800,7 +12776,7 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12819,11 +12795,11 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." @@ -13137,13 +13113,13 @@ msgstr "Komento" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Suodatin" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13173,12 +13149,12 @@ msgstr "minuutissa" msgid "per second:" msgstr "sekunnissa" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Tieto" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13210,19 +13186,19 @@ msgstr "Näytä avoimet taulut" msgid "Related links:" msgstr "Relaatiot" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13233,16 +13209,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13254,11 +13230,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13266,7 +13242,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13274,7 +13250,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13282,23 +13258,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13308,7 +13284,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13319,7 +13295,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13327,7 +13303,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13337,7 +13313,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13346,7 +13322,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY … DESC -" "kyselyllä optimoimiseen." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13359,7 +13335,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13371,35 +13347,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13409,7 +13385,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13421,11 +13397,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13433,7 +13409,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13441,11 +13417,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13453,7 +13429,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13467,55 +13443,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13523,35 +13499,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13560,52 +13536,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13614,7 +13590,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13623,26 +13599,26 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Tuotavan tiedoston muoto" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13653,27 +13629,27 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13684,18 +13660,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13703,39 +13679,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13748,7 +13724,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13757,19 +13733,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13777,11 +13753,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13790,7 +13766,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13798,17 +13774,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13816,13 +13792,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13830,14 +13806,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13846,25 +13822,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13876,7 +13852,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13886,11 +13862,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13902,13 +13878,13 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Seuranta ei ole käytössä." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." @@ -13945,49 +13921,49 @@ msgstr "Tietokantapalvelin" msgid "Table level tabs" msgstr "Taulun kommentit" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Näkymät" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Lisää käyttäjä" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Ei käyttöoikeuksia." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Sarakkeiden nimet" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Palvelimen versio" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Tietokantapalvelin" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14115,7 +14091,7 @@ msgstr "Suorita SQL-kyselyjä tietokannassa %s" msgid "Run SQL query/queries on table %s" msgstr "Suorita SQL-kyselyjä tietokannassa %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Tyhjennä" @@ -14208,105 +14184,105 @@ msgstr "Poista käytöstä nyt" msgid "Version" msgstr "Versio" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Luotu" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Päivitetty" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Luo versio" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Seurantaraportti" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "käytössä" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ei käytössä" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Seurantalauseet" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Poista tämän taulun seurantatiedot" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ei tietokantoja" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL-vedos (tiedoston lataus)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL-vedos" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL-suoritus" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Vie kohteena %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Tiedon käsittelyn lause" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Tiedon määritelmän lause" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Päiväys" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Käyttäjänimi" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s kuvaus (SQL-koodi)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14314,19 +14290,19 @@ msgctxt "None for default" msgid "None" msgstr "Ei mitään" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14334,65 +14310,65 @@ msgstr "" "Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, " "että sinulla on oikeudet toiminnon suorittamiseen." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Taulun `%s` seurantaraportti" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Luo versio %s kohteesta %s.%s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Seuraa taulua" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Seurattavat taulut" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Viimeinen versio" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Poista seurantatiedot" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versiot" @@ -14402,7 +14378,7 @@ msgstr "Versiot" msgid "Manage your settings" msgstr "Muut ydinasetukset" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14430,7 +14406,7 @@ msgstr "Virhe ZIP-paketissa:" msgid "No files found inside ZIP archive!" msgstr "ZIP-paketista ei löytynyt yhtään tiedostoa!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14441,90 +14417,90 @@ msgid "Cannot save settings, submitted form contains errors!" msgstr "" "Asetuksia ei voitu tallentaa, sillä lähetetyssä lomakkeessa on virheitä" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Puuttuvat phpMyAdmin konfiguraatiomuistin taulut" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Tuo tiedostoja" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Muut ydinasetukset" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Palvelimen määrittely" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Tallenna tiedostoon" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14532,45 +14508,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Säikeen %s lopetus onnistui." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Lataa koneelle" @@ -14578,11 +14554,11 @@ msgstr "Lataa koneelle" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Asetuksia ei voi ladata tai tallentaa" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 #, fuzzy #| msgid "" #| " create web server writable folder [em]config[/em] in phpMyAdmin level " @@ -14597,7 +14573,7 @@ msgstr "" "a] mukaisesti [em]config[/em]-niminen kansio, johon verkkopalvelin voi " "kirjoittaa. Muutoin asetuksia voi vain ladata ja tarkastella." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14605,84 +14581,87 @@ msgstr "" "Käytössäsi ei ole salattua yhteyttä; kaikki tiedot (mukaan lukien " "mahdollisesti arkaa tietoa kuten salasanoja) siirretään salaamattomana!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Jos palvelimen asetukset on määritetty hyväksymään HTTPS-pyynnöt, [a@%s]ota " "käyttöön[/a] salattu yhteys." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Salaamaton yhteys" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Asetukset tallennettu." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Asetukset tallennettu." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Yleiskatsaus" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Näytä piilotetut sanomat (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Palvelimia ei ole määritelty" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Uusi palvelin" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Oletuskieli" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "anna käyttäjän valita" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ei mitään -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Oletuspalvelin" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Rivin loppu" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Näytä" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Lataa asetukset" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdminin verkkosivut" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Lahjoita" @@ -14718,7 +14697,7 @@ msgstr "Älä välitä virheistä" msgid "Show form" msgstr "Näytä lomake" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14726,15 +14705,15 @@ msgstr "" "Version luku epäonnistui. Verkko on ehkä yhteydettömässä tilassa, tai " "päivityspalvelin ei vastaa." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Palvelimelta saatiin virheellinen versiomerkkijono" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Jäsentämättömissä oleva versiomerkkijono" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, fuzzy, php-format #| msgid "" #| "e using subversion version, run [kbd]svn update[/kbd] :-)[br]The est ble " @@ -14746,7 +14725,7 @@ msgstr "" "Käytössä on subversion-versio, suorita [kbd]svn update[/kbd] :-)[br]Uusin " "vakaa versio on %s, joka julkaistiin %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Saatavilla ei ole uudempaa vakaata versiota" @@ -14761,12 +14740,12 @@ msgstr "Ei tietokantoja" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Tietokantaa '%s' ei ole olemassa." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Taulu %s on jo olemassa!" @@ -14779,36 +14758,36 @@ msgstr "Tee vedos taulusta" msgid "Invalid table name" msgstr "Virheellinen taulun nimi" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Ei yhtään riviä valittu" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "Kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Ei yhtään riviä valittu" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL-lauseet suoritettu." @@ -15038,7 +15017,7 @@ msgid "List of available transformations and their options" msgstr "Mahdolliset muunnokset" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15063,7 +15042,7 @@ msgstr "" "(\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15558,17 +15537,17 @@ msgid "Size" msgstr "Koko" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Luotu" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Viimeksi päivitetty" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Viimeksi tarkistettu" @@ -15603,6 +15582,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Poista seurantatiedot" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15627,10 +15612,48 @@ msgstr "Lisää käyttöoikeudet seuraavaan tauluun" msgid "Add privileges on the following table:" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Ei mitään" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Poista valitut käyttäjät" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Resurssirajoitukset" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" @@ -15661,7 +15684,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15856,7 +15879,7 @@ msgstr "Käyttäjä:" msgid "Comment:" msgstr "Kommentti:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15898,24 +15921,24 @@ msgstr "" msgid "Foreign key constraint" msgstr "Viiteavaimen rajoitus" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Lisää rajoitteet" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Sisäiset relaatiot" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Sisäiset relaatiot" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15923,7 +15946,7 @@ msgstr "" "Sisäistä relaatiota ei tarvita, kun vastaava FOREIGN KEY -relaatio on " "olemassa." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15983,11 +16006,11 @@ msgstr "Alkuperäinen merkkijono" msgid "Replaced string" msgstr "Korvattu merkkijono" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Korvaa" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Tarkempi haku" @@ -16064,7 +16087,7 @@ msgid "at beginning of table" msgstr "Taulun alkuun" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16100,30 +16123,30 @@ msgstr "Rivin pituus" msgid "Index length" msgstr "Rivin pituus" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "ositettu" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Poista ositus" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Tulostusversio" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Levytilan käyttö" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Pätevä" @@ -16154,33 +16177,33 @@ msgstr "Esitä taulun rakenne" msgid "Track view" msgstr "Seuraa taulua" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Rivitilastot" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "staattinen" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynaaminen" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "ositettu" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Rivin pituus" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Rivin koko" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16194,52 +16217,52 @@ msgstr "Taulu %s on poistettu" msgid "Click to toggle" msgstr "Vaihda painamalla" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Teema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Hae teemoja lisää!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Mahdolliset MIME-tyypit" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Mahdolliset muunnokset" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Mahdolliset muunnokset" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Kuvaus" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Viedään sinut seuraavaan vaiheeseen…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sinulla ei ole riittäviä oikeuksia!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profiili on päivitetty." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16317,7 +16340,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16342,19 +16365,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Yhtään taulua ei ole valittu." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16417,29 +16440,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Taulu %1$s on luotu." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Taulunimen pohja" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taulun alkuun" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16458,10 +16481,16 @@ msgstr "Odottamattomia merkkejä rivillä %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Taulun alkuun" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16508,7 +16537,7 @@ msgstr "" msgid "strict error" msgstr "Kerää virheet" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17732,6 +17761,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert on asetettu arvoon 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Eväste tunnistautuminen" + #~ msgid "Try to connect without password." #~ msgstr "Yritä yhdistää ilman salasanaa." diff --git a/po/fil.po b/po/fil.po index a7de224452..01c5b6d51d 100644 --- a/po/fil.po +++ b/po/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-04-26 14:56+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Filipino 1;\n" "X-Generator: Weblate 2.6-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " "information." msgstr "" -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -62,13 +62,13 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -79,9 +79,9 @@ msgstr "" msgid "Column" msgstr "" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -92,12 +92,12 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -109,9 +109,9 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -122,15 +122,15 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -141,14 +141,14 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -158,7 +158,7 @@ msgstr "" msgid "Links to" msgstr "" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -172,19 +172,19 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -192,13 +192,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -206,17 +206,17 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -225,13 +225,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -243,15 +243,15 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "" #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -260,8 +260,8 @@ msgid "Tables" msgstr "" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -269,10 +269,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -285,27 +285,27 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "" -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "" @@ -316,37 +316,37 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "" -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "" @@ -382,200 +382,200 @@ msgstr "" msgid "Bad parameters!" msgstr "" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "" -#: import.php:195 +#: import.php:196 #, 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 "" -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "" -#: import.php:489 +#: import.php:486 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 "" -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "" -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "" msgstr[1] "" -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: import.php:632 +#: import.php:629 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 "" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -583,17 +583,17 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -601,120 +601,120 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 "" -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -722,21 +722,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -744,26 +744,26 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -913,7 +913,7 @@ msgid "Save & close" msgstr "" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "" @@ -945,7 +945,7 @@ msgstr "" msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -970,10 +970,10 @@ msgstr "" msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -985,7 +985,7 @@ msgstr "" msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "" @@ -1002,13 +1002,13 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "" @@ -1016,8 +1016,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "" @@ -1039,19 +1039,19 @@ msgstr "" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "" @@ -1153,40 +1153,40 @@ msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "" @@ -1204,7 +1204,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" @@ -1218,16 +1218,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "" @@ -1408,20 +1408,20 @@ msgstr "" msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "" @@ -1503,10 +1503,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "" @@ -1579,7 +1579,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "" @@ -1619,8 +1619,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "" @@ -1686,71 +1686,76 @@ msgstr "" msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1758,559 +1763,559 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2318,105 +2323,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2425,349 +2430,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2828,20 +2853,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3036,7 +3061,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3080,48 +3105,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3215,110 +3240,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3338,30 +3358,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3370,7 +3390,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3379,8 +3399,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3402,10 +3422,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3445,102 +3465,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3548,97 +3568,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3647,20 +3667,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3670,78 +3690,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3765,11 +3785,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3788,14 +3808,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3804,8 +3825,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3813,45 +3834,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3867,16 +3888,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3884,20 +3905,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3906,53 +3927,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4000,27 +4021,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4082,7 +4103,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4136,76 +4157,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4213,19 +4234,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4492,7 +4513,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4507,126 +4528,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4640,7 +4661,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4648,12 +4669,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4661,7 +4682,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4698,22 +4719,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4722,7 +4743,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4739,11 +4760,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4751,33 +4772,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4785,20 +4806,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5323,7 +5344,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5423,12 +5444,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5438,7 +5459,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5563,7 +5584,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5576,7 +5597,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5585,7 +5606,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5615,7 +5636,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5781,7 +5802,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6612,7 +6633,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7247,7 +7268,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7255,10 +7276,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7393,24 +7414,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7424,12 +7445,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7438,7 +7459,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7452,42 +7473,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7512,32 +7533,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7580,7 +7601,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7597,12 +7618,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7623,13 +7644,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7649,165 +7670,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7815,98 +7840,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8303,86 +8328,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8393,84 +8418,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8481,31 +8507,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8514,14 +8540,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8566,8 +8592,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8608,17 +8634,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8633,7 +8659,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8652,7 +8678,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8751,11 +8777,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -8989,8 +9015,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9034,177 +9060,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9231,25 +9257,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9257,7 +9283,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9282,15 +9308,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9351,7 +9377,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9360,7 +9386,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9368,8 +9394,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9455,7 +9481,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9949,7 +9975,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10269,57 +10295,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10328,293 +10354,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10635,7 +10661,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10644,75 +10670,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10733,7 +10759,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10745,132 +10771,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10892,32 +10918,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11033,565 +11059,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11600,7 +11583,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11609,11 +11592,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11880,12 +11863,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11906,12 +11889,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -11935,33 +11918,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11969,78 +11952,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12048,7 +12031,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12056,42 +12039,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12099,33 +12082,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12134,242 +12117,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12377,99 +12360,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12477,18 +12460,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12496,11 +12479,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12529,37 +12512,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12654,7 +12637,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12739,172 +12722,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12912,7 +12895,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12936,7 +12919,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12944,78 +12927,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13023,45 +13006,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13069,97 +13052,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13195,28 +13177,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13229,12 +13211,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13247,29 +13229,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13433,7 +13415,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13451,7 +13433,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13879,17 +13861,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13924,6 +13906,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13940,10 +13926,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13974,7 +13993,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14128,7 +14147,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14160,26 +14179,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14232,11 +14251,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14305,7 +14324,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14329,24 +14348,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14371,31 +14390,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14408,44 +14427,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14513,7 +14532,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14534,17 +14553,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14596,24 +14615,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14630,10 +14649,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14670,7 +14693,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/fr.po b/po/fr.po index ffe2b04f73..83d6936397 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-12-01 15:37+0000\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French " -"\n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,32 +24,32 @@ msgstr "" "Le fichier %s n'est pas disponible sur ce serveur, veuillez visiter %s pour " "plus d'informations." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" "La liste centrale de colonnes pour la base de données actuelle est vide." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Cliquer pour trier." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Affichage des lignes %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Commentaire sur la base de données" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Commentaires sur la table : " -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -61,13 +61,13 @@ msgstr "Commentaires sur la table : " #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -78,9 +78,9 @@ msgstr "Commentaires sur la table : " msgid "Column" msgstr "Colonne" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -91,12 +91,12 @@ msgstr "Colonne" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,9 +108,9 @@ msgstr "Colonne" msgid "Type" msgstr "Type" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -121,15 +121,15 @@ msgstr "Type" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -140,14 +140,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Valeur par défaut" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -157,7 +157,7 @@ msgstr "Valeur par défaut" msgid "Links to" msgstr "Relié à" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -171,19 +171,19 @@ msgstr "Relié à" msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primaire" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -191,13 +191,13 @@ msgstr "Primaire" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -205,17 +205,17 @@ msgstr "Primaire" msgid "No" msgstr "Non" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -224,13 +224,13 @@ msgstr "Non" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -242,15 +242,15 @@ msgstr "Oui" msgid "View dump (schema) of database" msgstr "Voir une exportation (schéma) de la base de données" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base de données." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -259,8 +259,8 @@ msgid "Tables" msgstr "Tables" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -268,10 +268,10 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -284,27 +284,27 @@ msgstr "Structure" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Données" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Tout sélectionner" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Le nom de la base de données est vide !" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "La base de données %1$s a été renommée en %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "La base de données %1$s a été copiée sur %2$s." @@ -317,27 +317,27 @@ msgstr "" "Le stockage de configurations phpMyAdmin a été désactivé. %sVoir l'analyse " "du problème%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Vous devez choisir au moins une colonne à afficher !" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passer au %smode visuel%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Accès refusé !" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Les données de suivi ont été correctement effacées." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -345,11 +345,11 @@ msgstr "" "La version %1$s a été créée pour les tables sélectionnées, le suivi est " "activé pour celles-ci." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Aucune table n'a été sélectionnée." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Journal de la base de données" @@ -391,131 +391,131 @@ msgstr "Type incorrect !" msgid "Bad parameters!" msgstr "Paramètres incorrects !" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Valeur pour la colonne «%s»" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utiliser OpenStreetMaps comme couche de base" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID : " -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Géométrie %d : " -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Point : " -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Point %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Ajouter un point" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Ligne %d : " -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Anneau extérieur : " -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Anneau intérieur %d : " -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Ajouter une ligne" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Ajouter un anneau intérieur" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polygone %d : " -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Ajouter un polygone" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Ajouter géométrie" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Exécuter" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Résultat" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -523,19 +523,19 @@ msgstr "" "Choisissez «GeomFromText» depuis la colonne «Fonction» et collez la chaîne " "ci dessous dans le champ «Valeur»." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Succès" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Échec" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Paramètres incomplets" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -545,15 +545,15 @@ msgstr "" "Veuillez vous référer à la %sdocumentation%s pour trouver le moyen de " "contourner cette limite." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:489 +#: import.php:486 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 " @@ -563,25 +563,25 @@ msgstr "" "n'a été fourni, ou encore la taille du fichier a dépassé la limite permise " "par votre configuration de PHP. Voir [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Signet %s créé." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "L'importation a réussi, %d requête exécutée." msgstr[1] "L'importation a réussi, %d requêtes exécutées." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -590,7 +590,7 @@ msgstr "" "La limite de temps a été atteinte; si vous voulez terminer l'importation, " "%ssoumettez à nouveau%s le même fichier et l'importation continuera." -#: import.php:632 +#: import.php:629 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." @@ -599,7 +599,7 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." @@ -607,17 +607,17 @@ msgstr "La commande «DROP DATABASE» est désactivée." msgid "Could not load the progress of the import." msgstr "Impossible de charger l'état d'avancement de l'importation." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Retour" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Serveur de démonstration phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -628,107 +628,107 @@ msgstr "" "voulez, mais s'il vous plaît, ne changez pas les utilisateurs root, debian-" "sys-maint et pma. Plus d'informations sont disponibles à %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Paramètres généraux" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Modifier le mot de passe" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Interclassement pour la connexion au serveur" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Paramètres d'affichage" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Plus de paramètres" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Serveur de base de données" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Serveur : " -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Type de serveur : " -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Version du serveur : " -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Version du protocole : " -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Utilisateur : " -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Jeu de caractères du serveur : " -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Serveur web" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Version du client de base de données : " -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Extension PHP : " -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Version de PHP :" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Version : " -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentation" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Site officiel" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Contribuer" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Obtenir de l'aide" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Liste des changements" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licence" -#: index.php:443 +#: index.php:444 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 " @@ -739,7 +739,7 @@ msgstr "" "phpMyAdmin est incapable de gérer correctement les caractères et il peut en " "résulter des problèmes." -#: index.php:458 +#: index.php:459 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." @@ -748,7 +748,7 @@ msgstr "" "cause de cela, des fonctionnalités telles que le rapport d'erreur ou la " "vérification de version sont désactivées." -#: index.php:473 +#: index.php:474 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 " @@ -760,7 +760,7 @@ msgstr "" "a] est plus petite que la durée du cookie configurée dans phpMyAdmin; donc, " "votre session de travail pourrait expirer plus tôt." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -769,18 +769,18 @@ msgstr "" "LoginCookieValidity; donc, votre session de travail expirera plus tôt que la " "valeur configurée dans phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Vous devez ajouter dans le fichier de configuration une phrase de passe " "secrète (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "La phrase secrète de la configuration (blowfish_secret) est trop courte." -#: index.php:528 +#: index.php:529 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 " @@ -793,7 +793,7 @@ msgstr "" "serveur peut être compromise par le téléchargement de votre configuration " "par des personnes non autorisées." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -803,14 +803,14 @@ msgstr "" "certaines fonctionnalités ont été désactivées. %sVoir l'analyse du problème" "%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ou encore allez sur l'onglet «Opérations», de n'importe quelle base de " "données pour l'y placer à cet endroit." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -819,7 +819,7 @@ msgstr "" "La version de votre bibliothèque MySQL (%s) de PHP diffère de la version de " "votre serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -993,7 +993,7 @@ msgid "Save & close" msgstr "Sauvegarder et fermer" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Réinitialiser" @@ -1025,7 +1025,7 @@ msgstr "Ajouter un index" msgid "Edit index" msgstr "Modifier un index" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Ajouter %s colonne(s) à l'index" @@ -1050,10 +1050,10 @@ msgstr "Veuillez sélectionner les colonnes de l'index." msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Aperçu SQL" @@ -1065,7 +1065,7 @@ msgstr "Simuler la requête" msgid "Matched rows:" msgstr "Lignes correspondantes :" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Requête SQL : " @@ -1082,13 +1082,13 @@ msgstr "Le nom de serveur est vide !" msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" @@ -1096,8 +1096,8 @@ msgstr "Les mots de passe doivent être identiques !" msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Fermer" @@ -1119,19 +1119,19 @@ msgstr "Le modèle a été supprimé." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Autres" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1237,40 +1237,40 @@ msgid "Processes" msgstr "Processus" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "o" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "Eio" @@ -1288,7 +1288,7 @@ msgstr "Questions" msgid "Traffic" msgstr "Trafic" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Paramètres" @@ -1302,16 +1302,16 @@ msgid "Please add at least one variable to the series!" msgstr "Veuillez ajouter au moins une variable à la série !" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Aucune" @@ -1509,20 +1509,20 @@ msgstr "Analyse en cours…" msgid "Explain output" msgstr "Expliquer les résultats" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "État" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Moment" @@ -1610,10 +1610,10 @@ msgstr "" "Réinitialisation à la configuration par défaut…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Import" @@ -1686,7 +1686,7 @@ msgstr "Paramètres manquants !" msgid "Cancel" msgstr "Annuler" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Paramètres liés à la page" @@ -1726,8 +1726,8 @@ msgid "Error text: %s" msgstr "Texte de l'erreur : %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." @@ -1765,7 +1765,7 @@ msgstr "Copie de la base de données" msgid "Changing charset" msgstr "Changement du jeu de caractères" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Activer la vérification des clés étrangères" @@ -1793,73 +1793,78 @@ msgstr "Affichage en cours" msgid "Deleting" msgstr "Destruction en cours" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Supprimer de la table %s les occurences ?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Export" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Aucune routine n’est exportable. Des privilèges requis manquent sans-doute." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Éditeur ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Valeurs pour la colonne %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Valeurs pour une nouvelle colonne" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Saisir chaque valeur dans un champ séparé." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Ajouter %d valeur(s)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Note : si le fichier contient plusieurs tables, elles seront combinées." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Cacher zone SQL" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1867,53 +1872,53 @@ msgstr "Montrer zone SQL" msgid "Edit" msgstr "Modifier" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Effacer" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Aucune requête sauvegardée automatiquement" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variable %d :" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Choisir" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Sélecteur de colonne" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Chercher dans cette liste" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1923,15 +1928,15 @@ msgstr "" "centrales pour la base de données %s comporte des colonnes qui ne sont pas " "présentes dans la table actuelle." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Plus" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Êtes-vous certain ?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1939,51 +1944,51 @@ msgstr "" "Cette action peut changer certaines définitions de colonnes.
Êtes-vous " "sûr de vouloir continuer ?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continuer" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Ajouter une clé primaire" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Une clé primaire a été ajoutée." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Vous êtes redirigé vers l'étape suivante…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "La première étape de la normalisation est terminée pour la table «%s»." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fin d'étape" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Deuxième étape de la normalisation (2FN)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Fermer" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirmer les dépendances partielles" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Les dépendances partielles sélectionnées sont les suivantes :" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1991,21 +1996,21 @@ msgstr "" "Remarque: a, b -> d, f implique que les valeurs des colonnes a et b " "combinées peuvent déterminer les valeurs des colonnes d et f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Pas de dépendances partielles sélectionnées !" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Montrez-moi les dépendances partielles possibles en se basant sur les " "données de la table" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Masquer la liste des dépendances partielles" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2013,169 +2018,169 @@ msgstr "" "Soyez patient ! Cela peut prendre quelques secondes selon la taille des " "données et le nombre de colonnes de la table." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Étape" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Les actions suivantes seront effectuées :" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Supprimer les colonnes %s de la table %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Créer la table suivante :" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Troisième étape de la normalisation (3FN)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Confirmer les dépendances transitives" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Les dépendances sélectionnées sont les suivantes :" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Aucune dépendance sélectionnée !" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sauvegarder" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Cacher les critères de recherche" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Recherche en intervalle" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Maximum pour la colonne :" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Valeur minimum pour la colonne :" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valeur minimum :" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valeur maximum :" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Cacher les critères de recherche et remplacement" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Afficher les critères de recherche et remplacement" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Chaque point représente une ligne de données." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Survoler un point montrera sa description." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pour zoomer, sélectionnez une section avec la souris." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Cliquez le lien «Réinitialiser zoom» pour revenir à l'état original." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Cliquez sur un point pour visualiser et possiblement éditer la ligne de " "données." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "L'image peut être redimensionnée en faisant glisser le coin inférieur droit." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Sélectionnez deux colonnes" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Sélectionnez deux colonnes différentes" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copier" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Point" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Ligne" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygone" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Géométrie" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Anneau intérieur" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Anneau extérieur" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Voulez-vous copier la clé de cryptage ?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Clé de cryptage" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2183,7 +2188,7 @@ msgstr "" "MySQL accepte des valeurs non sélectionnables via le menu; entrez " "directement ces valeurs si besoin" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" @@ -2191,7 +2196,7 @@ msgstr "" "MySQL accepte des valeurs non sélectionnables via le sélecteur de date; " "entrez directement ces valeurs si besoin" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2199,24 +2204,24 @@ msgstr "" "Indique que vous avez fait des modifications à cette page; on vous demandera " "confirmation avant d'abandonner les modifications" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Veuillez choisir la clé primaire ou un index unique !" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Colonne descriptive" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2224,76 +2229,76 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer ?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nom de la page" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sauvegarder la page" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Sauvegarder la page en tant que" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ouvrir la page" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Supprimer la page" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sans titre" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Veuillez sélectionner une page pour continuer" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Veuillez saisir un nom de page valide" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Voulez-vous enregistrer les modifications dans la page en cours ?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "La page a été correctement supprimée" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exporter un schéma relationnel" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ajouter une option pour la colonne «%s»." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objet(s) créé(s)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Exécuter" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Appuyez sur la touche d'échappement pour annuler l'édition." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2301,15 +2306,15 @@ msgstr "" "Vous avez modifier des données non encore sauvegardées, êtes vous sûr de " "vouloir quitter cette page avant de sauvegarder ?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Faire glisser pour réordonner." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Cliquer pour trier les résultats sur cette colonne." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2319,26 +2324,26 @@ msgstr "" "ASC/DESC.
- Ctrl + clic ou Alt + clic (sur Mac : Maj + Option + Clic) " "pour enlever la colonne de la clause ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Cliquer pour marquer/enlever les marques." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Double-cliquez pour copier le nom de la colonne." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Tout afficher" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2347,13 +2352,13 @@ msgstr "" "cases à cocher ainsi que les liens Edition, Copie et Supprimer pourrait ne " "plus fonctionner après prise en compte de la modification." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Veuillez saisir une chaîne en hexadécimal valide. Les caractères possibles " "sont 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2361,106 +2366,106 @@ msgstr "" "Voulez-vous vraiment voir toutes les lignes ? Pour une grande table, cela " "pourrait faire planter le navigateur." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Longueur originale" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "annuler" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Arrêts prématurés" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Succès" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "État de l'importation" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Déposez des fichiers ici" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Choisissez d'abord une base de données" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimer" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Vous pouvez aussi modifier la plupart des valeurs
en double-cliquant " "directement sur celles-ci." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Vous pouvez aussi modifier la plupart des valeurs
en cliquant " "directement sur celles-ci." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Suivre le lien :" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copier le nom de la colonne." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Faites un clic-droit sur le nom de la colonne pour le copier vers le presse-" "papier." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Générer" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "plus" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Montrer le panneau" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Cacher le panneau" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Montrer les éléments de navigation cachés." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Relier au panneau principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Supprimer la liaison au panneau principal" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La page demandée n'existe pas dans l'historique, elle peut avoir expiré." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2470,27 +2475,27 @@ msgstr "" "une mise à niveau. La version la plus récente est %s, publiée le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", dernière version stable : " -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "à jour" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Créer une vue" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Envoyer le rapport d'erreurs" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Soumettre un rapport d'erreurs" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2498,15 +2503,15 @@ msgstr "" "Une erreur JavaScript fatale s'est produite. Désirez-vous envoyer un rapport " "d'erreur ?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Changer les paramètres du rapport" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Montrer les détails du rapport" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2514,7 +2519,7 @@ msgstr "" "Votre exportation est incomplète en raison d'une limite de temps d'exécution " "trop basse au niveau PHP !" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2524,61 +2529,61 @@ msgstr "" "l'envoi, certains des champs pourraient être ignorés, en raison de la " "configuration max_input_vars de PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Des erreurs ont été détectées sur le serveur !" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Veuillez regarder au bas de cette fenêtre." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorer tout" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Selon vos paramètres, ils sont actuellement soumis, veuillez patienter." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Exécuter cette requête à nouveau ?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Voulez-vous vraiment supprimer ce signet ?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" "Une erreur s'est produite lors de l'obtention des informations de débogage " "SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s requêtes exécutées %s fois en %s secondes." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s arguments passés" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Montrer les arguments" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Cacher les arguments" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Temps nécessaire :" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2594,349 +2599,369 @@ msgstr "" "Dans Safari, ce problème est habituellement causé par l'utilisation de la « " "Navigation en mode privé »." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Copier les tables vers" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Ajouter un préfixe de table" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Remplacer la table ayant le préfixe" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Précédent" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Janvier" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Février" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Mars" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Avril" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Juin" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Juillet" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Août" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Septembre" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Octobre" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembre" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Décembre" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Lundi" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Heure" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minute" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Seconde" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Ce champ est obligatoire" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Corrigez ce champ" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Veuillez saisir une adresse courriel valide" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Veuillez saisir une URL valide" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Veuillez saisir une date valide" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Veuillez saisir une date valide (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Veuillez saisir un nombre valide" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Veuillez saisir un numéro de carte de crédit valide" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Veuillez saisir uniquement des chiffres" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Veuillez saisir la même valeur à nouveau" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Veuillez saisir au maximum {0} caractères" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Veuillez saisir au moins {0} caractères" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Veuillez saisir une valeur d'une longueur entre {0} et {1} caractères" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Veuillez saisir une valeur entre {0} et {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Veuillez saisir une valeur inférieure ou égale à {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Veuillez saisir une valeur supérieure ou égale à {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Veuillez saisir une date ou une heure valide" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Veuillez saisir une valeur hexadécimale valide" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Erreur" @@ -3003,20 +3028,20 @@ msgid "Charset" msgstr "Jeu de caractères" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Interclassement" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binaire" @@ -3211,7 +3236,7 @@ msgid "Czech-Slovak" msgstr "Tchèque-slovaque" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "inconnu" @@ -3259,26 +3284,26 @@ msgstr "" msgid "Font size" msgstr "Taille du texte" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Affichage d'%1$d favori (privés et partagés compris)" msgstr[1] "Affichage de %1$d favoris (privés et partagés compris)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Aucun signet" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Console de requête SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Impossible de modifier l'interclassement configuré pour la connexion !" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3286,24 +3311,24 @@ msgstr "" "Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL " "local n'est pas correctement configurée)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Le serveur ne répond pas." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Veuillez vérifier les privilèges du répertoire contenant la base de données." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Détails…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Paramètres de connexion manquants !" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexion au controluser tel que défini dans votre configuration a échoué." @@ -3398,110 +3423,105 @@ msgstr "Insérer : " msgid "Del:" msgstr "Supprimer : " -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Requête SQL sur la base %s : " -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Exécuter la requête" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Signets de recherches sauvegardés :" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nouveau signet" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Créer un signet" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Mettre à jour le signet" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Effacer le signet" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "au moins un mot" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "tous les mots" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "phrase exacte" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "expression réguliére" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Résultats de la recherche de «%s» %s : " -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total : %s occurence" msgstr[1] "Total : %s occurences" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s correspondance dans %2$s" msgstr[1] "%1$s correspondances dans %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Afficher" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Supprimer de la table %s les occurences ?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Effectuer une nouvelle recherche dans la base de données" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Mots ou valeurs à rechercher (passe-partout: «%») : " -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Type de recherche : " -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Séparer les mots par un espace (« »)." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Dans les tables : " -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Tout désélectionner" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Dans la colonne : " @@ -3521,30 +3541,30 @@ msgstr "Filtrer les lignes" msgid "Search this table" msgstr "Chercher dans cette table" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Début" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Précédent" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Suivant" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -3553,7 +3573,7 @@ msgstr "Fin" msgid "All" msgstr "Tout" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Nombre de lignes : " @@ -3562,8 +3582,8 @@ msgstr "Nombre de lignes : " msgid "Sort by key" msgstr "Trier sur l'index" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3585,10 +3605,10 @@ msgstr "Trier sur l'index" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Options" @@ -3628,29 +3648,29 @@ msgstr "Well Known Text" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "La ligne a été effacée." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Supprimer" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Votre requête SQL a été exécutée avec succès." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3659,73 +3679,73 @@ msgstr "" "Cette vue contient au moins ce nombre de lignes. Veuillez référer à " "%sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Affichage des lignes %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d au total, %2$d dans la requête" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "total de %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Traitement en %01.4f secondes." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Pour la sélection : " -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Tout cocher" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Lien absent !" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Aucune" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Conversion en kana" @@ -3734,25 +3754,25 @@ msgid "Too many error messages, some are not displayed." msgstr "" "Les messages d'erreur sont trop nombreux, certains ne sont pas affichés." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Rapporter" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "La prochaine fois, envoyer automatiquement le rapport" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Le fichier n'était pas un fichier téléversé." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "La taille du fichier téléchargé dépasse la limite permise par la directive " "upload_max_filesize de php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3760,49 +3780,49 @@ msgstr "" "La taille du fichier téléchargé dépasse la limite permise par la directive " "MAX_FILE_SIZE présente dans le formulaire HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier n'a été que partiellement téléchargé." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Répertoire temporaire manquant." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Erreur lors de l'écriture du fichier sur disque." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Téléchargement arrêté par l'extension." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Erreur inconnue durant le téléchargement." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Le fichier est un lien symbolique" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Le fichier n'a pu être lu !" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Erreur lors du déplacement du fichier téléchargé, voir [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Erreur lors du déplacement du fichier téléversé." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Impossible de lire le fichier téléversé." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3811,28 +3831,28 @@ msgstr "" "Vous avez tenté d'importer un fichier dont le mode de compression (%s) n'est " "pas supporté par votre configuration PHP ou est désactivé dans celle-ci." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "La révision Git %1$s de la branche %2$s est en cours d'exécution." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Information Git manquante !" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Version imprimable" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Cliquez sur la barre pour faire défiler en haut de page" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript doit être activé !" @@ -3841,20 +3861,20 @@ msgid "No index defined!" msgstr "Aucun index n'est défini !" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Index" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3864,59 +3884,59 @@ msgstr "Index" msgid "Action" msgstr "Action" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nom de l'index" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unique" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Compressé" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalité" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Commentaire" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "La clé primaire a été effacée." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "L'index %s a été effacé." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Supprimer" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3925,19 +3945,19 @@ msgstr "" "Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " "supprimé." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Page n° : " -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ce code de langue non pris en charge est ignoré." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Langue" @@ -3963,11 +3983,11 @@ msgstr "Serveur" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3986,14 +4006,15 @@ msgid "View" msgstr "Vue" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4002,8 +4023,8 @@ msgid "Table" msgstr "Table" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4011,45 +4032,45 @@ msgstr "Table" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Rechercher" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Insérer" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilèges" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Opérations" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Suivi" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4065,16 +4086,16 @@ msgstr "Déclencheurs" msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Requête" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Procédures stockées" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4082,20 +4103,20 @@ msgstr "Procédures stockées" msgid "Events" msgstr "Événements" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Concepteur" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colonnes centrales" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Bases de données" @@ -4104,53 +4125,53 @@ msgid "User accounts" msgstr "Comptes d'utilisateurs" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log binaire" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Réplication" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Moteurs" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Greffons" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d ligne affectée." msgstr[1] "%1$d lignes affectées." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d ligne supprimée." msgstr[1] "%1$d lignes supprimées." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4198,27 +4219,27 @@ msgstr "Tables préférées" msgid "Favorites" msgstr "Préférées" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Veuillez fournir un nom pour ce signet de recherche." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Informations manquantes pour sauvegarder le signet de recherche." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Une entrée existe déjà sous ce nom." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Informations manquantes pour effacer la recherche." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Informations manquantes pour charger la recherche." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Erreur lors du chargement de la recherche." @@ -4280,7 +4301,7 @@ msgstr "Montrer les tables ouvertes" msgid "Show slave hosts" msgstr "Montrer les serveurs esclaves" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Montrer l'état du maître" @@ -4334,71 +4355,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Aucune information détaillée sur l'état n'est disponible pour ce moteur de " "stockage." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s est disponible sur ce serveur MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s a été désactivé sur ce serveur MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "État de la table inconnu :" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "La base de données source `%s` n'existe pas !" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "La base de données cible `%s` n'existe pas !" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Nom de base de données invalide : " -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Nom de table invalide : " -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Erreur lors du renommage de %1$s en %2$s !" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La table %1$s se nomme maintenant %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Impossible de sauvegarder les préférences d'interface de tables !" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4407,7 +4428,7 @@ msgstr "" "Echec lors de la tentative de vidage de la table UI Préférences (voir " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4418,19 +4439,19 @@ msgstr "" "sera pas persistant après actualisation de cette page. Merci de vérifier si " "la structure de la table a changé." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Le nom d'une clé primaire doit être «PRIMARY» !" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "La clé ne peut être renommée PRIMARY !" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Aucune colonne n'a été définie pour cet index !" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4764,7 +4785,7 @@ msgid "Date and time" msgstr "Contient la date et l'heure" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Chaîne de caractères" @@ -4779,127 +4800,127 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Taille maximum: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Analyse statique :" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d erreurs trouvées lors de l'analyse." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analyser les explications au %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Sans source PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Exécuter la requête" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Créer code source PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Actualiser" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilage" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Éditer en ligne" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Dim" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jours, %s heures, %s minutes et %s secondes" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Paramètre manquant : " -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Aller à la base de données \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Parcourir : " -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Choisissez depuis le répertoire de téléchargement du serveur web %s : " -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Le répertoire de transfert est inaccessible." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Aucun fichier n'est disponible pour le transfert !" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vider" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Exécuter" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Utilisateurs" @@ -4913,7 +4934,7 @@ msgstr "par minute" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "par heure" @@ -4921,12 +4942,12 @@ msgstr "par heure" msgid "per day" msgstr "par jour" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Rechercher : " -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4934,7 +4955,7 @@ msgstr "Rechercher : " msgid "Description" msgstr "Description" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Utiliser cette valeur" @@ -4975,22 +4996,22 @@ msgstr "OUI" msgid "NO" msgstr "NON" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nom" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Taille/Valeurs*" @@ -4999,7 +5020,7 @@ msgstr "Taille/Valeurs*" msgid "Attribute" msgstr "Attribut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "Incrémentation automatique" @@ -5016,11 +5037,11 @@ msgstr "Ajouter une colonne" msgid "Select a column." msgstr "Sélectionnez une colonne." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Ajouter une colonne" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5028,7 +5049,7 @@ msgstr "Ajouter une colonne" msgid "Attributes" msgstr "Attributs" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5038,29 +5059,29 @@ msgstr "" "option est incompatible avec phpMyAdmin et peut nuire au traitement des " "données !" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Serveur %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide : " -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5072,20 +5093,20 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin utilise actuellement le fuseau horaire " "par défaut du serveur de base de données." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Erreur: disparité du jeton" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Tentative d'écrasement de GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "vulnérabilité possible" @@ -5682,7 +5703,7 @@ msgid "Compress on the fly" msgstr "Compression à la volée" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Fichier de configuration" @@ -5795,12 +5816,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Durée maximum d'exécution" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Utiliser l'énoncé %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Transmettre" @@ -5810,7 +5831,7 @@ msgstr "Jeu de caractères du fichier" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -5935,7 +5956,7 @@ msgid "Save on server" msgstr "Sauvegarder sur le serveur" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Écraser les fichiers existants" @@ -5948,7 +5969,7 @@ msgid "Remember file name template" msgstr "Se souvenir du modèle de nom de fichier" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" @@ -5957,7 +5978,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Entourer les noms de tables et colonnes de guillemets obliques" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" @@ -5989,7 +6010,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Ajouter %s" @@ -6165,7 +6186,7 @@ msgid "Customize the navigation tree." msgstr "Personnaliser l'arborescence de navigation." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serveurs" @@ -7079,7 +7100,7 @@ msgstr "Domaine de protection HTTP" msgid "Authentication method to use." msgstr "Type d'authentification." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Type d'authentification" @@ -7830,7 +7851,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Active le menu Développeur dans les paramètres" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Vérifier la présence d'une nouvelle version" @@ -7838,10 +7859,10 @@ msgstr "Vérifier la présence d'une nouvelle version" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Active la vérification de version sur la page principale." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Vérification de version" @@ -7992,24 +8013,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texte OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "La liste des tables favorites est pleine !" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "La table %s a été vidée." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "La vue %s a été supprimée." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "La table %s a été effacée." @@ -8023,12 +8044,12 @@ msgid "Position" msgstr "Position" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Type d'évènement" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID du serveur" @@ -8037,7 +8058,7 @@ msgid "Original position" msgstr "Position d'origine" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Information" @@ -8051,42 +8072,42 @@ msgstr "Afficher les requêtes tronquées" msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Aucune base de données" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d bases de données a été supprimée." msgstr[1] "%1$d bases de données ont été supprimées." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Lignes" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Perte" @@ -8113,34 +8134,34 @@ msgstr "" msgid "Enable statistics" msgstr "Activer les statistiques" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Privilèges insuffisants pour visualiser les variables d'état et les " "paramètres. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Échec de mise à jour de la variable" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Requête SQL manquante." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Aucune colonne numérique n'existe dans la table." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Rien à afficher" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "La table %1$s a été modifiée avec succès." @@ -8183,7 +8204,7 @@ msgstr "Les colonnes ont été déplacées avec succès." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Erreur de requête" @@ -8201,12 +8222,12 @@ msgstr "Modifier" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8227,13 +8248,13 @@ msgstr "Texte entier" msgid "Distinct values" msgstr "Valeurs distinctes" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Pas de modifications" @@ -8257,31 +8278,35 @@ msgstr "" "installation !" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Aucun mot de passe" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Mot de passe : " -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Saisir à nouveau :" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hachage du mot de passe : " -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8291,83 +8316,83 @@ msgstr "" "connexion non chiffrée qui crypte le mot de passe à l'aide de RSA " "lors de la connexion au serveur." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportation des bases de données depuis le serveur courant" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportation des tables depuis la base de données «%s»" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportation des lignes de la table «%s»" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Modèles d'exportation :" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nouveau modèle :" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Nom du modèle" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Créer" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Modèles existants :" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Modèle :" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Mettre à jour" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Choisissez un modèle" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Méthode d'exportation :" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rapide - n'afficher qu'un minimum d'options" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Personnalisée - afficher toutes les options possibles" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Bases de données :" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tables : " -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format : " -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Options spécifiques au format : " -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8375,52 +8400,52 @@ msgstr "" "Faites défiler la page pour compléter les options du format choisi et " "ignorez les options des autres formats." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Conversion de l'encodage : " -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Lignes : " -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Exporter quelques lignes" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Ligne de début : " -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Exporter toutes les lignes" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Sortie : " -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Sauvegarder sur le serveur dans le répertoire %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Modèle de nom de fichier : " -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ sera remplacé par le nom du serveur" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ sera remplacé par le nom de la base de données" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ sera remplacé par le nom de la table" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8432,100 +8457,100 @@ msgstr "" "vont se produire: %3$s. Tout autre texte sera conservé tel quel. Se référer " "au %4$sFAQ%5$s pour les détails." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "utiliser ceci pour les futures exportations" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Jeu de caractères du fichier : " -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compression : " -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "«zippé »" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "«gzippé»" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Afficher les résultats" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exporter les bases de données en fichiers séparés" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exporter les tables en fichiers séparés" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Renommer les bases de données / tables / colonnes exportées" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Diriger la sortie vers un fichier" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Ignorer les tables de taille plus grande que" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Choisissez une base de données" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Choisissez une table" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nouveau nom pour la base de données" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nouveau nom de table" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Ancien nom de colonne" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nouveau nom de colonne" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Erreur lors du chargement des greffons d'exportation, veuillez vérifier " "votre installation !" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s sous la branche %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "aucune branche" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Révision Git : " -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "enregistrée le %1$s par %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "l'auteur était %2$s en date du %1$s" @@ -8991,13 +9016,13 @@ msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espace-disque insuffisant pour enregistrer le fichier %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9005,80 +9030,80 @@ msgstr "" "Le fichier %s existe déjà sur le serveur, veuillez changer le nom, ou cocher " "l'option d'écrasement des fichiers existants." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" "Le serveur web n'a pas les permissions nécessaires pour enregistrer le " "fichier %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[Un ROLLBACK a eu lieu]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Les structures suivantes ont été créées ou modifiées. Ici vous pouvez :" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Consulter le contenu d'une structure en cliquant sur son nom." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Modifiez l'un des paramètres en cliquant le lien «Options» correspondant." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifier sa structure via le lien «Structure»." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Aller à la base de données : %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Paramètres de modification pour %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Aller à la table : %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Structure de %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Aller à la vue : %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Seulement les requêtes UPDATE et DELETE portant sur une seule table peuvent " "être simulées." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9091,88 +9116,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Créer un index sur  %s colonnes" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Cacher" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Fonction" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" "Il est possible que cette colonne
ne soit pas éditable en raison de sa " "longueur." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ou" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "répertoire de transfert du serveur web : " -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifier/Insérer" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "et ensuite" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9183,31 +9209,31 @@ msgstr "" msgid "Value" msgstr "Valeur" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Succès !" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Structure seule" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Structure et données" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Données seulement" @@ -9216,14 +9242,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ajuster les privilèges" @@ -9268,8 +9294,8 @@ msgstr "Procédures : " msgid "Views:" msgstr "Vues : " -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Afficher" @@ -9313,17 +9339,17 @@ msgid_plural "%s results found" msgstr[0] "%s résultat trouvé" msgstr[1] "%s résultats trouvés" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Tapez pour filtrer ceci, Entrée pour chercher partout" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Effacer le filtrage" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Tout réduire" @@ -9338,7 +9364,7 @@ msgstr "Nom de classe \"%1$s\" invalide, \"Node\" sera utilisé" msgid "Could not load class \"%1$s\"" msgstr "N'a pas pu charger la classe « %1$s »" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Développer/réduire" @@ -9357,7 +9383,7 @@ msgstr "Nouvelle colonne" msgid "Database operations" msgstr "Opérations sur base de données" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Montrer les éléments cachés" @@ -9462,11 +9488,11 @@ msgstr "" "Sélectionnez une colonne qui peut être subdivisée (en choisissant « aucune " "colonne », vous irez à l'étape suivante)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Choisir…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Aucune colonne" @@ -9748,8 +9774,8 @@ msgid "Rename database to" msgstr "Renommer la base de données comme suit" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9795,177 +9821,177 @@ msgstr "(à refaire après insertions/destructions)" msgid "Move table to (database.table)" msgstr "Déplacer la table vers (base.table)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Changer le nom de la table pour" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Commentaires sur la table" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Options pour cette table" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Moteur de stockage" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Changer le classement de toutes les colonnes" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copier la table vers (base.table)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Aller à la table copiée" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Maintenance de la table" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analyser la table" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Vérifier la table" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Somme de contrôle de la table" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Défragmenter la table" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "La table %s a été rechargée." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Recharger la table (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimiser la table" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Réparer la table" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Supprimer les données ou la table" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Vider la table (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Supprimer la table (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analyser" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Vérifier" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimiser" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Reconstruire" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Réparer" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Tronquer" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Unifier" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Gestion des partitions" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Supprimer le partitionnement" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle : " -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "On ne peut déplacer la table sur elle-même !" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "On ne peut copier la table sur elle-même !" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "La table %s a été déplacée vers %s. Les privilèges ont été ajustés." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La table %s a été copiée vers %s. Les privilèges ont été ajustés." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "La table %s a été déplacée vers %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "La table %s a été copiée vers %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Le nom de la table est vide !" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Ce format ne comporte pas d'options" @@ -9994,18 +10020,18 @@ msgstr "Couleurs" msgid "Only show keys" msgstr "Ne montrer que les clés" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Connexion impossible: paramètres incorrects." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Bienvenue dans %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10014,7 +10040,7 @@ msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10026,7 +10052,7 @@ msgstr "" "dans votre configuration et vous assurer qu'elles correspondent aux " "informations fournies par l'administrateur du serveur MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Réessayer de se connecter" @@ -10053,15 +10079,15 @@ msgstr "Utilisateur : " msgid "Server Choice:" msgstr "Choix du serveur : " -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Erreur, essayez à nouveau !" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Veuillez saisir le captcha correct !" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Vous n'êtes pas autorisé à vous connecter à ce serveur MySQL !" @@ -10122,7 +10148,7 @@ msgstr "Options d'exportation" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Contenu de la table" @@ -10131,7 +10157,7 @@ msgstr "Contenu de la table" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Événement" @@ -10139,8 +10165,8 @@ msgstr "Événement" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Définition" @@ -10226,7 +10252,7 @@ msgstr "Afficher les noms de colonnes en première ligne : " #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Client : " @@ -10762,7 +10788,7 @@ msgstr "Table des matières" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11149,11 +11175,11 @@ msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "pas de description" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11164,7 +11190,7 @@ msgstr "" "base de données pour y mettre en place la configuration de stockage " "phpMyAdmin." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11173,7 +11199,7 @@ msgstr "" "%sCréer%s une base de données nommée « phpmyadmin » et la configuration du " "stockage de phpMyAdmin dans cette base." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11181,35 +11207,35 @@ msgstr "" "%sCréer%s le stockage de configurations phpMyAdmin dans la base de données " "active." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" "%sCréer%s les tables manquantes pour le stockage de configurations " "phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Réplication maître" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Montrer les esclaves connectés" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Ajouter un utilisateur pour la réplication vers l'esclave" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Configuration du maître" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11223,19 +11249,19 @@ msgstr "" "répliquées) soit ignorer toutes les bases en demandant que certaines d'entre " "elles soient répliquées. Veuillez choisir le mode :" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Répliquer toutes les bases de données; Ignorer : " -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignorer toutes les bases de données; Répliquer : " -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Sélectionnez les bases de données : " -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11243,7 +11269,7 @@ msgstr "" "Maintenant, ajoutez les lignes suivantes à la fin de votre fichier my.cnf " "puis redémarrez le serveur MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11253,71 +11279,71 @@ msgstr "" "suite, vous devriez voir un message vous informant que ce serveur est " "configuré comme maître." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Réplication esclave" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Connexion maître :" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Le fil d'exécution SQL ne tourne pas sur le serveur esclave !" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Le fil d'exécution IO ne tourne pas sur le serveur esclave !" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Le serveur est configuré comme esclave dans un processus de réplication. " "Voudriez-vous : " -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Montrer l'état de l'esclave" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Contrôler le serveur esclave : " -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Démarrer complètement" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Arrêter complètement" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Réinitialiser l'esclave" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Démarrer seulement le fil d'exécution SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Arrêter seulement le fil d'exécution SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Démarrer seulement le fil d'exécution des entrées-sorties" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Arrêter seulement le fil d'exécution des entrées-sorties" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Changer ou reconfigurer le serveur maître" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11326,26 +11352,26 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer ?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Gestion des erreurs : " -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Ignorer les erreurs peut mener à une désynchronisation entre les serveurs " "maître et esclave !" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Ignorer l'erreur courante" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Ignorer les %s erreurs suivantes." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11354,11 +11380,11 @@ msgstr "" "Ce serveur n'est pas configuré comme maître dans un processus de " "réplication. Désirez-vous le configurer ?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Configuration de l'esclave" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11367,53 +11393,53 @@ msgstr "" "(my.cnf). Sinon, veuillez ajouter la ligne suivante dans la section " "[mysqld] : " -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nom d'utilisateur : " -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nom d'utilisateur" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Mot de passe" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port : " -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "État du maître" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "État de l'esclave" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Client" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11421,39 +11447,39 @@ msgstr "" "Seuls les esclaves démarrés avec l'option --report-host=host_name sont " "visibles sur cette liste." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Tout client" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ce serveur" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Tout utilisateur" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Entrez une valeur : " -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11461,77 +11487,77 @@ msgstr "" "Quand la table Host est utilisée, ce champ est ignoré et les valeurs de la " "table Host sont utilisées à la place." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Saisir à nouveau" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Générer un mot de passe :" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "La réplication a démarré avec succès." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Erreur lors du démarrage de la réplication." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "La réplication s'est correctement arrêtée." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "La réplication n'a pu être arrêtée." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "La réplication a été réinitialisée avec succès." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "La réplication n'a pu être réinitialisée." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Succès." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Erreur." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Erreur inconnue" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Connexion impossible sur le maître %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Impossible de lire la position du journal sur le maître. Possible problème " "de privilège sur le maître." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Impossible de changer le maître !" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Le serveur maître est maintenant %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11552,7 +11578,7 @@ msgstr "L'événement %1$s a été modifié." msgid "Event %1$s has been created." msgstr "L'événement %1$s a été créé." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Au moins une erreur s'est produite lors du traitement de la requête :" @@ -11561,75 +11587,75 @@ msgstr "Au moins une erreur s'est produite lors du traitement de la requête :" msgid "Edit event" msgstr "Modifier l'événement" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Détails" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nom de l'événement" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Changer pour %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Exécuter à" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Exécuter chaque" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Départ" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Suite à l'exécution, conserver" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Créateur" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Le définisseur doit suivre le format «utilisateur@machine» !" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Vous devez fournir un nom pour l'événement !" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Vous devez fournir un intervalle valable pour l'événement." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Vous devez fournir un moment d'exécution valable pour l'événement." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Vous devez fournir un type valable pour l'événement." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Vous devez fournir une définition pour l'événement." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Erreur dans le traitement de la requête : " @@ -11650,7 +11676,7 @@ msgstr "État du planificateur d'événements" msgid "The backed up query was:" msgstr "La requête conservée est : " -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Retourne" @@ -11666,72 +11692,72 @@ msgstr "" "peut échouer ! [/strong] Veuillez utiliser l'extension «mysqli» pour éviter " "ces problèmes." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Modifier une procédure" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Type de procédure invalide : «%s»" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "La procédure %1$s a été créée." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Désolé, il a été impossible de restaurer la procédure." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "La procédure %1$s a été modifiée. Les privilèges ont été ajustés." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "La procédure %1$s a été modifiée." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nom de la procédure" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Paramètres" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Ajouter un paramètre" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Supprimer le dernier paramètre" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Type retourné" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Taille/Valeurs à retourner" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Options de retour" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Est déterministe" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11739,25 +11765,25 @@ msgstr "" "Vous n'avez pas de privilèges suffisants pour effectuer cette opération; " "veuillez vous reporter à la documentation pour plus de détails" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Type de sécurité" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Accès aux données SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Vous devez fournir un nom pour la procédure !" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "La direction «%s» fournie pour le paramètre est invalide." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11765,37 +11791,37 @@ msgstr "" "Vous devez fournir une longueur ou une valeur pour les paramètres de type " "ENUM, SET, VARCHAR et VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Vous devez fournir un nom et un type pour chacun des paramètres." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Vous devez fournir un type de retour valable pour la procédure." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Vous devez fournir une définition pour la procédure." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Résultats de l'exécution de la procédure %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 ligne a été affectée par le dernier énoncé de la procédure." msgstr[1] "%d lignes ont été affectées par le dernier énoncé de la procédure." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Exécuter la procédure" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Paramètres de procédure" @@ -11817,32 +11843,32 @@ msgstr "Le déclencheur %1$s a été créé." msgid "Edit trigger" msgstr "Modifier le déclencheur" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nom du déclencheur" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Moment" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Vous devez fournir un nom valable pour le déclencheur !" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Vous devez fournir une temporisation valable pour le déclencheur !" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Vous devez fournir un événement valable pour le déclencheur !" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Vous devez fournir un nom de table valable !" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Vous devez fournir une définition pour le déclencheur." @@ -11940,7 +11966,8 @@ msgstr "Vous n'avez pas les privilèges nécessaires pour créer un événement. #: libraries/rte/rte_words.lib.php:70 #, php-format msgid "No event with name %1$s found in database %2$s." -msgstr "Aucun événement nommé %1$s n'a été trouvé dans la base de données %2$s." +msgstr "" +"Aucun événement nommé %1$s n'a été trouvé dans la base de données %2$s." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -11966,94 +11993,94 @@ msgstr "Jeux de caractères et interclassement" msgid "Databases statistics" msgstr "Statistiques sur les bases de données" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Pas de privilèges." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Tous les privilèges sauf GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permission de lire des données." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permission de changer des données." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permission de détruire des données." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les paramètres du serveur, et de vidanger la mémoire " "cache." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Permission de voir les processus de tous les utilisateurs." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " "fichiers." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12064,136 +12091,110 @@ msgstr "" "administratif, par exemple les changements de variables globales ou la " "destruction de processus." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " "d'exécution)." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " "duplication)." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Permission de créer des vues." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Permission de créer et de supprimer des déclencheurs." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Aucun" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Groupe d'utilisateurs" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Ne nécessite pas de connexions SSL chiffrées." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Nécessite des connexions SSL chiffrées." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Nécessite un certificat X509 valide." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" "Requiert que la méthode de chiffrement spécifique soit utilisée pour une " "connexion." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Nécessite qu'un certificat X509 valide émis par cette autorité de " "certification soit présenté." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Exige qu'un certificat X509 valide avec ce sujet soit présenté." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Limites de ressources" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Note: Une valeur de 0 (zero) enlève la limite." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " "heure." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12201,28 +12202,26 @@ msgstr "" "Limite du nombre de commandes changeant une table ou base de données, qu'un " "utilisateur peut exécuter, par heure." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " "par heure." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Procédure stockée" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." @@ -12231,62 +12230,62 @@ msgstr "" "d’autres utilisateurs des privilèges que l’utilisateur possède sur cette " "routine." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Permission de modifier et de supprimer cette procédure stockée." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Permission d'exécuter cette procédure." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administration" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilèges globaux" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permission de créer des tables." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " "recharger les privilèges." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." @@ -12294,31 +12293,28 @@ msgstr "" "Autoriser l'utilisateur à donner ou retirer aux autres utilisateurs les " "privilèges qu'il possède lui-même." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Authentification MySQL native" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Authentification par mot de passe SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Authentification MySQL native" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Information pour la connexion" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12326,227 +12322,214 @@ msgstr "" "Un compte existe déjà avec le même nom d'utilisateur, mais éventuellement un " "nom d'hôte différent." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Nom d'hôte :" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Nom d'hôte" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Greffon d'authentification" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Hachage du mot de passe" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vous avez révoqué les privilèges pour %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Ajouter un compte d'utilisateur" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Base de données pour ce compte d'utilisateur" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Donner les privilèges passepartout (utilisateur\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Donner tous les privilèges sur la base de données %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilisateurs ayant accès à \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "La vue %s a été supprimée." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "«Grant»" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Privilèges insuffisants pour visualiser les utilisateurs." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "N'importe quel" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "spécifique à cette base de données" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "passepartout" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "spécifique à cette table" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Changer les privilèges" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Révoquer" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Modifier un groupe d'utilisateurs" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… conserver intact l'ancien utilisateur." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… supprimer l'ancien utilisateur." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… supprimer l'ancien utilisateur, puis recharger les privilèges au serveur." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" "Changement des informations de connexion / Copie de compte d'utilisateur" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Créer un nouveau compte d'utilisateur avec les mêmes privilèges et …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilèges spécifiques à la procédure stockée" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Effacer les comptes d'utilisateurs sélectionnés" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Groupe d'utilisateurs" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Supprimer les bases de données portant le même nom que les utilisateurs." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilèges pour %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Utilisateur" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nouvel utilisateur" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Changer les privilèges :" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Compte d'utilisateur" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12554,11 +12537,11 @@ msgstr "" "Remarque : Vous tentez de modifier les privilèges de l'utilisateur avec " "lequel vous êtes actuellement connecté." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Aperçu des comptes d'utilisateur" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12569,7 +12552,7 @@ msgstr "" "connecter si la partie hôte de leur compte permet une connexion de n'importe " "quel hôte (%)." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12582,7 +12565,7 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12595,11 +12578,11 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, les " "privilèges doivent être rechargés mais il vous manque le privilège RELOAD." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." @@ -12908,12 +12891,12 @@ msgstr "Commande" msgid "Progress" msgstr "Progression" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtres" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "N'afficher que les valeurs actives" @@ -12934,12 +12917,12 @@ msgstr "par minute : " msgid "per second:" msgstr "par seconde : " -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Information" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12963,7 +12946,7 @@ msgstr "Afficher les valeurs non formattées" msgid "Related links:" msgstr "Liens connexes : " -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12971,11 +12954,11 @@ msgstr "" "Le nombre de connexions avortées en raison d'une interruption du client sans " "fermeture adéquate de la connexion." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12985,18 +12968,18 @@ msgstr "" "mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " "temporaire pour stocker les énoncés de la transaction." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13009,11 +12992,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13021,7 +13004,7 @@ msgstr "" "Le nombre de tables temporaires en mémoire créées automatiquement par le " "serveur lors de l'exécution d'énoncés." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13029,7 +13012,7 @@ msgstr "" "Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " "survenue (probablement un doublon sur la clé)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13037,23 +13020,23 @@ msgstr "" "Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " "utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13063,7 +13046,7 @@ msgstr "" "une table portant un certain nom. Ceci est appelé \"découverte\". Ce " "paramètre indique le nombre de fois que des tables ont été découvertes." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13074,7 +13057,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13082,7 +13065,7 @@ msgstr "" "Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " "bonne indication que vos tables sont correctement indexées." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13092,7 +13075,7 @@ msgstr "" "Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " "fourchette ou si vous parcourez l'index." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13100,7 +13083,7 @@ msgstr "" "Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " "Utilisé surtout pour optimiser ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13113,7 +13096,7 @@ msgstr "" "demandent à MySQL de parcourir des tables en entier, ou vous avez des " "jointures qui n'utilisent pas correctement les clés." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13125,35 +13108,35 @@ msgstr "" "tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Le nombre de requêtes d'insertion de lignes dans une table." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13163,7 +13146,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13175,11 +13158,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13188,7 +13171,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13196,11 +13179,11 @@ msgstr "" "Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " "quand InnoDB fait un parcours séquentiel intégral de la table." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13208,7 +13191,7 @@ msgstr "" "Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " "à une lecture directe d'une page." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13222,51 +13205,51 @@ msgstr "" "Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " "taille de la réserve est adéquate, cette valeur devrait être petite." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13274,35 +13257,35 @@ msgstr "" "Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " "fallait attendre qu'il se libère avant de continuer." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Le nombre d'écritures fsync() sur le fichier témoin." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13311,51 +13294,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13364,7 +13347,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13373,7 +13356,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13383,15 +13366,15 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Pourcentage de la cache de clés qui est utilisé (valeur calculée)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13402,7 +13385,7 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13410,22 +13393,22 @@ msgstr "" "Échecs dans la cache de clés, en calculant le taux de lectures physiques " "comparé aux requêtes de lecture (valeur calculée)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Pourcentage d'écritures physiques versus les requêtes d'écriture (valeur " "calculée)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13436,18 +13419,18 @@ msgstr "" "pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " "été compilée." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" "Le nombre maximum de connexions simultanées depuis le démarrage du serveur." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13455,19 +13438,19 @@ msgstr "" "Le nombre de tables qui ont été ouvertes. Si trop élevé, votre cache de " "table est probablement trop petite." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Le nombre de flux de données qui sont ouverts." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13477,19 +13460,19 @@ msgstr "" "peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " "commande FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "La quantité de mémoire libre dans la cache de requêtes." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13501,7 +13484,7 @@ msgstr "" "afin de peaufiner la taille de la cache. La stratégie utilisée pour " "déterminer quelles requêtes seront retirées est LRU (least recently used)." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13509,19 +13492,19 @@ msgstr "" "Le nombre de requêtes non en cache (impossible à placer en cache, ou non " "cachée en raison du paramètre query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Le nombre total de blocs dans la cache de requêtes." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'état de la réplication sans échec (pas encore implantée)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13529,13 +13512,13 @@ msgstr "" "Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " "supérieure à 0, vérifiez soigneusement les indexes de vos tables." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Le nombre de jointures qui ont utilisé une recherche par plage sur une table " "de référence." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13544,7 +13527,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13552,19 +13535,19 @@ msgstr "" "Le nombre de jointures qui ont utilisé des plages sur la première table. " "(Normalement non critique même si cette valeur est élevée.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" "Le nombre de jointures qui ont nécessité le parcours complet de la première " "table." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " "SQL de l'esclave." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13572,11 +13555,11 @@ msgstr "" "Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " "a envoyé à nouveau des transactions." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13584,14 +13567,14 @@ msgstr "" "Le nombre de fils d'exécution dont le temps de création a excédé " "slow_launch_time secondes." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " "secondes." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13600,23 +13583,23 @@ msgstr "" "Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " "nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Le nombre de tri effectués via un parcours de la table." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13628,7 +13611,7 @@ msgstr "" "des problèmes de performance, commencez par optimiser vos requêtes, puis " "subdivisez vos tables ou encore utiliser la réplication." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13638,11 +13621,11 @@ msgstr "" "calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " "devriez augmenter la taille de cette cache." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13655,11 +13638,11 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Taux de succès de la cache des fils d'exécution (valeur calculée)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." @@ -13688,37 +13671,37 @@ msgstr "Onglets de niveau base de données" msgid "Table level tabs" msgstr "Onglets de niveau table" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Vue utilisateurs" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Ajouter un groupe d'utilisateurs" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Modifier le groupe : « %s »" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Attributions de menu du groupe d'utilisateurs" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Nom du groupe : " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Onglets de niveau serveur" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Onglets de niveau base de données" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Onglets de niveau table" @@ -13819,7 +13802,7 @@ msgstr "Exécuter une ou des requêtes SQL sur la base %s" msgid "Run SQL query/queries on table %s" msgstr "Exécuter une ou des requêtes SQL sur la table %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Vider" @@ -13904,112 +13887,112 @@ msgstr "Désactiver maintenant" msgid "Version" msgstr "Version" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Créé" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Mis à jour" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Supprimer la version" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Rapport de suivi" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Instantané" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "actif" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "non activé" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Suivi des énoncés" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Supprimer du rapport le suivi des données" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Aucune donnée" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Montrer %1$s depuis le %2$s jusqu'au %3$s par l'utilisateur %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Exportation SQL (télécharger)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Exportation SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Cette option remplacera votre table et son contenu." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Exécution SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exporter en tant que %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Énoncé de manipulation de données" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Énoncé de définition de données" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Date" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Utilisateur" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Aucune" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Le suivi des définitions de données a été effacé avec succès" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Le suivi des manipulations de données a été effacé avec succès" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14018,61 +14001,61 @@ msgstr "" "temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à " "cette opération." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Enlevez les deux lignes suivantes si elles sont inutiles." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Rapport de suivi pour la table `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Le suivi de %1$s a été activé à la version %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Le suivi de %1$s a été désactivé à la version %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "La version %1$s de %2$s a été supprimée." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s créée, le suivi pour %2$s est activé." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Suivre la table" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Dernière version" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Supprimer le suivi" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versions" @@ -14080,7 +14063,7 @@ msgstr "Versions" msgid "Manage your settings" msgstr "Gérer vos paramètres" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "La configuration a été sauvegardée." @@ -14107,7 +14090,7 @@ msgstr "Erreur rencontrée dans l'archive ZIP : " msgid "No files found inside ZIP archive!" msgstr "Aucun fichier présent dans l'archive ZIP !" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Erreur fatale : la navigation requiert AJAX" @@ -14117,57 +14100,57 @@ msgstr "" "Le formulaire soumis contient des erreurs, impossible de sauvegarder les " "paramètres !" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "Extrait de configuration de phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Collez-le dans votre config.inc.php" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Erreur d'importation de la configuration" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" "La configuration contient des valeurs incorrectes pour certains champs." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Voulez-vous importer les autres paramètres ?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Sauvegardé le : @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importer depuis le fichier" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importer depuis le stockage du navigateur" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "Les paramètres seront importés depuis le stockage local de votre navigateur." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Vous n'avez pas sauvegardé les paramètres !" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Cette fonction n'est pas supportée par votre navigateur" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Fusionner avec la configuration courante" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14176,25 +14159,25 @@ msgstr "" "Vous pouvez régler d'autres paramètres en modifiant config.inc.php, par " "exemple au moyen du %sscript d'installation%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Enregistrer en tant que fichier PHP" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Sauvegarder dans l'espace de stockage du navigateur" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" "Les paramètres seront sauvegardés dans l'espace de stockage de votre " "navigateur." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Les paramètres existants seront écrasés !" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Vous pouvez ramener tous vos paramètres à leur valeur par défaut." @@ -14202,12 +14185,12 @@ msgstr "Vous pouvez ramener tous vos paramètres à leur valeur par défaut." msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Aucun privilège" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14216,35 +14199,35 @@ msgstr "" "seulement changer le mot de passe, vous devriez utiliser l'onglet « Modifier " "le mot de passe » ." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Privilèges insuffisants pour visualiser l'état du serveur." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Privilèges insuffisants pour visualiser le conseiller." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Le processus %s a été éliminé." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Privilèges insuffisants pour visualiser les statistiques de requêtes." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Privilèges insuffisants pour visualiser les variables d'état." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Télécharger" @@ -14254,11 +14237,11 @@ msgstr "" "Jeu de formulaires incorrect, vérifiez le tableau $formsets dans setup/" "frames/form.inc.php !" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Impossible de charger ou sauvegarder la configuration" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14268,7 +14251,7 @@ msgstr "" "décrit dans la [doc@setup_script]documentation[/doc]. Sinon vous ne pourrez " "que télécharger ou afficher la configuration." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14276,24 +14259,27 @@ msgstr "" "Votre connexion n'est pas sécurisée; toutes les données sont transférées non-" "encryptées !" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Si votre serveur accepte les requêtes HTTPS, utilisez une [a@%s]connexion " "sécurisée[/a]." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Connexion non sécurisée" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuration sauvegardée." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14302,59 +14288,59 @@ msgstr "" "copiez ce fichier au répertoire racine de phpMyAdmin et effacez le " "répertoire config afin de rendre ce fichier de configuration effectif." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Configuration non sauvegardée !" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Survol" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Afficher les messages cachés (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Aucun serveur n'est configuré" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nouveau serveur" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Langue par défaut" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "laisser l'utilisateur choisir" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- aucun -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Serveur par défaut" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Fin de ligne" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Afficher" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Charger" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Site de phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Faire un don" @@ -14390,21 +14376,21 @@ msgstr "Ignorer les erreurs" msgid "Show form" msgstr "Afficher le formulaire" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "Échec lors de la vérification de version." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Un numéro de version invalide a été reçu du serveur" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Analyse impossible du numéro de version" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14413,7 +14399,7 @@ msgstr "" "Vous utilisez une version phpMyAdmin obtenue grâce à git, faites [kbd]git " "pull[/kbd] :-)[br]La dernière version stable est %s, publiée le %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Aucune version stable plus récente n'est disponible" @@ -14426,12 +14412,12 @@ msgstr "Données incorrectes" msgid "Wrong data or no validation for %s" msgstr "Données erronées ou aucune validation pour %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "La base de données «%s» n'existe pas." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "La table %s existe déjà !" @@ -14444,29 +14430,29 @@ msgstr "Afficher le schéma de la table" msgid "Invalid table name" msgstr "Nom de table invalide" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Ligne : %1$s, Colonne : %2$s, Erreur : %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Aucune ligne n'a été sélectionnée." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Le suivi de %s est activé." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Les versions de suivi ont été effacées." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Aucune version n'a été sélectionnée." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Énoncés SQL exécutés." @@ -14636,7 +14622,7 @@ msgid "List of available transformations and their options" msgstr "Liste des transformations disponibles et leurs options" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformation d'affichage" @@ -14658,7 +14644,7 @@ msgstr "" "d'échappement, par exemple '\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformation de saisie" @@ -15090,17 +15076,17 @@ msgid "Size" msgstr "Taille" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Création" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Dernière modification" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Dernière vérification" @@ -15142,6 +15128,12 @@ msgstr "" "Votre navigateur contient une configuration phpMyAdmin pour ce domaine. " "Voulez-vous l'importer dans la session courante ?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Supprimer le suivi" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Ajouter des privilèges sur ces bases de données :" @@ -15158,10 +15150,44 @@ msgstr "Ajouter des privilèges sur cette procédure stockée :" msgid "Add privileges on the following table:" msgstr "Ajouter des privilèges sur cette table : " +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nouvel utilisateur" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Aucun" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Effacer les comptes d'utilisateurs sélectionnés" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Supprimer les bases de données portant le même nom que les utilisateurs." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Limites de ressources" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Note: Une valeur de 0 (zero) enlève la limite." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" @@ -15192,7 +15218,7 @@ msgstr "Greffon" msgid "Author" msgstr "Auteur" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "désactivé" @@ -15347,7 +15373,7 @@ msgstr "Analyseur :" msgid "Comment:" msgstr "Commentaire : " -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Faire glisser pour réordonner" @@ -15384,20 +15410,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Contrainte de clé étrangère" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Ajouter une contrainte" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relations internes" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relation interne" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15405,7 +15431,7 @@ msgstr "" "Une relation interne n'est pas nécessaire lorsqu'une clé correspondante de " "type FOREIGN KEY existe." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Colonne descriptive : " @@ -15458,11 +15484,11 @@ msgstr "Chaîne d'origine" msgid "Replaced string" msgstr "Chaîne modifiée" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Remplacer" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Critères de recherche supplémentaires" @@ -15533,7 +15559,7 @@ msgid "at beginning of table" msgstr "en début de table" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partitions" @@ -15557,24 +15583,24 @@ msgstr "Taille des données" msgid "Index length" msgstr "Taille de l'index" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Partitionner la table :" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Modifier le partitionnement" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Modifier la vue" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Espace utilisé" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effectif" @@ -15599,31 +15625,31 @@ msgstr "Améliorer la structure de la table" msgid "Track view" msgstr "Suivre la vue" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Statistiques" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statique" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamique" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partitionné" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Longueur de ligne" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Taille de la ligne" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Prochain index automatique" @@ -15636,44 +15662,44 @@ msgstr "La colonne %s a été effacée." msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Thème" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Obtenez d'autres thèmes !" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Types MIME disponibles" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Transformations d'affichage disponibles" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Transformations de saisie disponibles" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Description" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "En route vers le site cible." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vous n'êtes pas autorisé à accéder à cette page !" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Le profil a été modifié." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Le mot de passe est trop long !" @@ -15742,8 +15768,12 @@ msgid "Unexpected end of CASE expression" msgstr "Fin inattendue d'une expression CASE" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Un nom de symbole était attendu ! Un mot clé réservé ne peut pas servir " @@ -15766,17 +15796,17 @@ msgid "Unrecognized data type." msgstr "Type de données non reconnu." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Un alias était attendu." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Un alias a été constaté précédemment." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Point inattendu." @@ -15828,24 +15858,24 @@ msgstr "Des espaces ou tabulations étaient attendus avant le délimiteur." msgid "Expected delimiter." msgstr "Un délimiteur était attendu." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Un guillemet %1$s était attendu." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Un nom de variable était attendu." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Début d'énoncé inattendu." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Type d'énoncé non reconnu." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Aucune transaction n'a été précédemment démarrée." @@ -15862,10 +15892,16 @@ msgstr "Jeton inattendu." msgid "This type of clause was previously parsed." msgstr "Ce type de clause a été analysé précédemment." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Mot clé non reconnu." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Début d'énoncé inattendu." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Le nom de l'entité était attendu." @@ -15902,7 +15938,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "erreur stricte" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Le nom de la vue ne peut être vide" @@ -17205,6 +17241,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Authentification MySQL native" + #~ msgid "Try to connect without password." #~ msgstr "Essayer de se connecter sans mot de passe." diff --git a/po/fy.po b/po/fy.po index b6a3a8c650..a40e65736b 100644 --- a/po/fy.po +++ b/po/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-12-24 23:02+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Frisian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Klear" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Stap" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Bewarje" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Kolommaksimum:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimumwearde:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maksimumwearde:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Fersiferingskaai" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Sidenamme" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Side bewarje" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Side bewarje" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Ferstjoere" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "annulearje" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Wachtwurd generearje" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generearje" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mear" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Table comments" msgid "Show panel" msgstr "Tabelopmerkings" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Main panel" msgid "Hide panel" msgstr "Haadpaniel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2353,113 +2358,113 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverpoarte" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverpoarte" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabelopmerkings" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2468,355 +2473,375 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Table comments" msgid "Copy tables to" msgstr "Tabelopmerkings" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add prefix" msgid "Add table prefix" msgstr "Foarheaksel tafoegje" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Folgjende" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hjoed" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "jannewaris" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "febrewaris" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "maart" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "april" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "maaie" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "juny" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "july" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "augustus" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "septimber" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "novimber" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "desimber" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "des" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "snein" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "moandei" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "tiisdei" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "woansdei" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "tongersdei" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "freed" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "sneon" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "si" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "ti" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "to" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "fr" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "so" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "si" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Wike" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Oere" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minút" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekonde" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Search in database" msgid "Please enter a valid date" msgstr "Sykje yn de database" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Flater" @@ -2877,20 +2902,20 @@ msgid "Charset" msgstr "Karakterset" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Kollaasje" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binêr" @@ -3087,7 +3112,7 @@ msgid "Czech-Slovak" msgstr "Tsjechoslowaaksk" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "ûnbekend" @@ -3133,50 +3158,50 @@ msgstr "" msgid "Font size" msgstr "Lettertypegrutte" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Gjin blêdwizers" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL-queryconsole" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routine parameters" msgid "Missing connection parameters!" msgstr "Routineparameters" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3270,110 +3295,105 @@ msgstr "Ynfoegje:" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nije blêdwizer" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "alle wurden" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Sykresultaten foar \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Ferkenne" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Sykje yn de database" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3393,30 +3413,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Begjin" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Folgjende" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3425,7 +3445,7 @@ msgstr "" msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Oantal rigen:" @@ -3434,8 +3454,8 @@ msgstr "Oantal rigen:" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3457,10 +3477,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opsjes" @@ -3502,104 +3522,104 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check" msgid "Check all" msgstr "Kontrolearje" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Gjin" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3607,97 +3627,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Rapportearje" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3706,20 +3726,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3729,78 +3749,78 @@ msgstr "" msgid "Action" msgstr "Aksje" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Kaainamme" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unike wearde" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Opmerking" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Fuortsmite" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sidenûmer:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Taal" @@ -3824,11 +3844,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3847,14 +3867,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3863,8 +3884,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3872,45 +3893,45 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Sykje" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Ynfoegje" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Rjochten" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Hannelingen" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Trasearje" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3926,16 +3947,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Query" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3943,20 +3964,20 @@ msgstr "Routines" msgid "Events" msgstr "Barrens" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Untwerper" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databases" @@ -3967,53 +3988,53 @@ msgid "User accounts" msgstr "Brûkersgroepen" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikaasje" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Fariabelen" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4061,27 +4082,27 @@ msgstr "" msgid "Favorites" msgstr "Favoriten" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4143,7 +4164,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4197,76 +4218,76 @@ msgid_plural "%d minutes" msgstr[0] "%d minút" msgstr[1] "%d minuten" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4274,19 +4295,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4553,7 +4574,7 @@ msgid "Date and time" msgstr "Datum en tiid" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4568,66 +4589,66 @@ msgstr "Romtlik" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit" msgid "Submit query" msgstr "Ferstjoere" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit routine" msgctxt "Inline edit query" @@ -4635,63 +4656,63 @@ msgid "Edit inline" msgstr "Routine bewurkje" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "si" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s oeren, %s minuten en %s sekonden" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Leegje" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Brûkers" @@ -4705,7 +4726,7 @@ msgstr "per minút" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per oere" @@ -4713,12 +4734,12 @@ msgstr "per oere" msgid "per day" msgstr "per dei" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Sykje:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4726,7 +4747,7 @@ msgstr "Sykje:" msgid "Description" msgstr "Beskriuwing" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4763,22 +4784,22 @@ msgstr "JA" msgid "NO" msgstr "NEE" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Namme" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4789,7 +4810,7 @@ msgstr "" msgid "Attribute" msgstr "Attributen" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4806,11 +4827,11 @@ msgstr "Kolom tafoegje" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Nije kolom tafoegje" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4818,33 +4839,33 @@ msgstr "Nije kolom tafoegje" msgid "Attributes" msgstr "Attributen" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4852,20 +4873,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5402,7 +5423,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfiguraasjetriem" @@ -5504,12 +5525,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Bewarje as triem" @@ -5519,7 +5540,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Opmaak" @@ -5644,7 +5665,7 @@ msgid "Save on server" msgstr "Bewarje op server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5659,7 +5680,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5668,7 +5689,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL-kompatibiliteitsmoadus" @@ -5698,7 +5719,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s tafoegje" @@ -5866,7 +5887,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servers" @@ -6705,7 +6726,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7352,7 +7373,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7360,10 +7381,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Ferzjekontrôle" @@ -7498,24 +7519,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument-tekst" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7529,12 +7550,12 @@ msgid "Position" msgstr "Posysje" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Barrentype" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server-ID" @@ -7543,7 +7564,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Ynformaasje" @@ -7557,42 +7578,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Gjin databases" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rigen" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Totaal" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -7619,32 +7640,32 @@ msgstr "" msgid "Enable statistics" msgstr "Databasestatistiken" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7689,7 +7710,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Queryflater" @@ -7706,12 +7727,12 @@ msgstr "Feroarje" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Yndeks" @@ -7732,13 +7753,13 @@ msgstr "Folsleine tekst" msgid "Distinct values" msgstr "Underskiedbere wearden" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7758,175 +7779,179 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Gjin wachtwurd" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Wachtwurd:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Wachtwurd-hashing:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export contents" msgid "Export templates:" msgstr "Eksportearynhâld" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "New page" msgid "New template:" msgstr "Nije side" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Tabelnamme" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Eksportearmetoade" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Databases" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabellen:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Opmaak:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rigen:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Utfier:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7934,100 +7959,100 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Kompresje:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table names" msgid "Export tables as separate files" msgstr "Tabelnammen eksportearje" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nije databasenamme" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nij tabelnamme" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Alde kolomnamme" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nije kolomnamme" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git-revyzje:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8426,86 +8451,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktuer fan %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8516,84 +8541,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Ferbergje" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funksje" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Of" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Werom" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8604,31 +8630,31 @@ msgstr "" msgid "Value" msgstr "Wearde" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktuer en gegevens" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8637,14 +8663,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -8693,8 +8719,8 @@ msgstr "Prosedueres:" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8737,17 +8763,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Alles gearteare" @@ -8762,7 +8788,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8781,7 +8807,7 @@ msgstr "Nij" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8880,11 +8906,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9118,8 +9144,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9163,181 +9189,181 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabelopmerkings" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabelopsjes" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabelûnderhâld" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Users table" msgid "Checksum table" msgstr "Brûkerstabel" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Tabel optimalisearje" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparearje tabel" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analysearje" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Kontrolearje" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimalisearje" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Reparearje" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Gearteare" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partysje %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9364,25 +9390,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Wolkom by %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9390,7 +9416,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9415,15 +9441,15 @@ msgstr "Brûkersnamme:" msgid "Server Choice:" msgstr "Serverkar:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9484,7 +9510,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9493,7 +9519,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Barren" @@ -9501,8 +9527,8 @@ msgstr "Barren" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definysje" @@ -9588,7 +9614,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -10104,7 +10130,7 @@ msgstr "Ynhâldsopjefte" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -10424,57 +10450,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "gjin beskriuwing" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10483,295 +10509,295 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Brûkersnamme:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Brûkersnamme" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Wachtwurd" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Poarte:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Fariabel" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Elke host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Elke brûker" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Wachtwurd generearje" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Flater." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Unbekende flater" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10792,7 +10818,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10801,75 +10827,75 @@ msgstr "" msgid "Edit event" msgstr "Barren bewurkje" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Details" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Barrennamme" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10890,7 +10916,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10902,132 +10928,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Routine bewurkje" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Routinenamme" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Rjochting" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Parameter tafoegje" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Befeiligingstype" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Routineparameters" @@ -11049,32 +11075,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Triggernamme" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tiid" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11192,587 +11218,544 @@ msgstr "" msgid "Databases statistics" msgstr "Databasestatistiken" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Gjin" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Brûkersgroep" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Routines" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administraasje" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globaal" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Wachtwurd wizigjen" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Oanmeldingsynformaasje" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Brûkersnamme:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Lognamme" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Wachtwurd-hashing:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Brûker tafoegje" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database structure" msgid "Database for user account" msgstr "Databasestruktuer" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Takenne" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Rjochten bewurkje:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Brûkersgroep bewurkje" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "Rjochten" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Brûkersgroep" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Rjochten foar %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Brûker" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nij" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Rjochten bewurkje:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Brûkersgroep" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11781,7 +11764,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11790,11 +11773,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12063,12 +12046,12 @@ msgstr "Opdracht" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -12091,12 +12074,12 @@ msgstr "per minút:" msgid "per second:" msgstr "per sekonde:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12120,33 +12103,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12154,78 +12137,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12233,7 +12216,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12241,42 +12224,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12284,33 +12267,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12319,242 +12302,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12562,99 +12545,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12662,18 +12645,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12681,11 +12664,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12714,37 +12697,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Groepnamme:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12840,7 +12823,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "SQL-queryskiednistabel" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Leechmeitsje" @@ -12927,172 +12910,172 @@ msgstr "" msgid "Version" msgstr "Ferzje" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "net aktyf" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Gjin gegevens" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Eksportearje as %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Brûkersnamme" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Gjin" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Lêste ferzje" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Ferzjes" @@ -13100,7 +13083,7 @@ msgstr "Ferzjes" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13124,7 +13107,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13132,82 +13115,82 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin-dokumintaasje" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Ymportearje út triem" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Bewarje as triem" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13215,45 +13198,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Download" @@ -13261,99 +13244,98 @@ msgstr "Download" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration file" msgid "Configuration not saved!" msgstr "Konfiguraasjetriem" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Oersjoch" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nije server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Standerttaal" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- gjin -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Standertserver" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin-webstee" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Donearje" @@ -13389,28 +13371,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13423,12 +13405,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13441,29 +13423,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rige: %1$s, Kolom: %2$s, Flater: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13655,7 +13637,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13673,7 +13655,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -14123,17 +14105,17 @@ msgid "Size" msgstr "Grutte" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -14168,6 +14150,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Change settings" +msgid "Delete settings " +msgstr "Ynstellingen wizigjen" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14184,10 +14172,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nij" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Gjin" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14220,7 +14241,7 @@ msgstr "" msgid "Author" msgstr "Auteur" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "útskeakele" @@ -14382,7 +14403,7 @@ msgstr "Brûker:" msgid "Comment:" msgstr "Opmerking:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14414,26 +14435,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Ynterne relaasjes" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Ynterne relaasje" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14486,11 +14507,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Ferfang" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14563,7 +14584,7 @@ msgid "at beginning of table" msgstr "Oantal tabellen:" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -14595,28 +14616,28 @@ msgstr "Rigelingte" msgid "Index length" msgstr "Rigelingte" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Partition %s" msgid "Partition table" msgstr "Partysje %s" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit routine" msgid "Edit partitioning" msgstr "Routine bewurkje" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektyf" @@ -14643,31 +14664,31 @@ msgstr "Tabelstruktuer ferbetterje" msgid "Track view" msgstr "Trasearje" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Rigestatistiken" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statysk" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamysk" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Rigelingte" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Rigegrutte" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14680,44 +14701,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Beskriuwing" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -14791,7 +14812,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14812,17 +14833,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14874,26 +14895,26 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "Number of tables:" msgid "Unexpected beginning of statement." msgstr "Oantal tabellen:" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14910,10 +14931,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Number of tables:" +msgid "Unexpected ordering of clauses." +msgstr "Oantal tabellen:" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14954,7 +14981,7 @@ msgstr "" msgid "strict error" msgstr "Queryflater" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/gl.po b/po/gl.po index 90872d96d4..a9ef7d57ee 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-01-17 22:02+0000\n" "Last-Translator: Xosé Calvo \n" "Language-Team: Galician Are you sure you " "want to continue?" @@ -1931,51 +1936,51 @@ msgstr "" "Esta acción pode cambiar algunha definición das columnas.
Confirma que " "desexa continuar?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Proseguir" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Engadir unha chave primaria" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Engadiuse unha chave primaria." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Procedemos co paso seguinte…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "O primeiro paso da normalización foi completado para a táboa «%s»." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fin do paso" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Segundo paso da normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Feito" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirmar as dependencias parciais" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "As dependencias parciais seleccionadas son as seguintes:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1983,19 +1988,19 @@ msgstr "" "Nota: a, b -> d,f implica que os valores das columnas a e b combinadas poden " "determinar os valores das columnas de e f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Non se seleccionaron dependencias parciais!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Mostrar as dependencias parciais posíbeis a partir dos datos da táboa" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Agochar a lista de dependencias parciais" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2003,179 +2008,179 @@ msgstr "" "Séntese comodamente! Pode levar uns segundos dependendo do tamaño dos datos " "e do número de columnas da táboa." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Paso" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Hanse executar as accións seguintes:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINAR (DROP) as columnas %s da táboa %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Crear a táboa seguinte" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Terceiro paso da normalización (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Confirmar as dependencias transitivas" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "As dependencias seleccionadas son as seguintes:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Non hai ningunha dependencia seleccionada!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gardar" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Agochar o criterio de busca" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Mostrar o criterio de busca" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Busca de intervalo" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Máximo de columnas:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Mínimo de columnas:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Agochar os criterios de busca e substitución" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Mostrar os criterios de busca e substitución" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Cada punto representa unha fila de datos." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Situar o rato sobre o punto mostra a súa etiqueta." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Par achegarse, escolla unha sección da gráfica co rato." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Prema o botón de restaurar a amplación para voltar o estado orixinal." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Prema nun punto de datos para ver e editar a liña de datos." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Pódese mudar o tamaño da gráfica arrastrándoo polo recanto inferior dereito." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Escoller dúas columnas" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Escolle dúas columnas diferentes" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Contido do punto de datos" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copiar" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punto" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Cadea de liñas" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Xeometría" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Anel interno" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Anel externo" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Desexa copiar a clave de cifrado?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Clave de cifrado" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2183,24 +2188,24 @@ msgstr "" "Indica que vostede fixo cambios nesta páxina; háselle pedir confirmación " "antes de abandonar os cambios" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Escoller a chave referida" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Selecciona a clave primaria ou unha clave única!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Escolla a columna que desexe mostrar" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2208,76 +2213,76 @@ msgstr "" "Non gardou as alteracións da disposición. Hanse perder se non se gardan. " "Desexa continuar?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nome da páxina" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Gardar a páxina" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Gardar a páxina como" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir páxina" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Eliminar a páxina" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sen título" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Seleccione unha páxina para continuar" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Introduza un nome de páxina aceptábel" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Desexa gardar os cambios desta páxina?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "A páxina foi eliminada correctamente" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exportar o esquema relacional" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Engadir unha opción para a columna «%s»." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "Creáronse %d obxecto(s)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Enviar" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Prema escape para cancelar a edición." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2285,15 +2290,15 @@ msgstr "" "Editou algúns datos que aínda non se gardaron. Ten certeza de querer saír " "desta páxina antes de gardar os datos?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Arrastre para reordenar." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Prema para ordenar os resultados por esta columna." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2303,27 +2308,27 @@ msgstr "" "alternar ASC/DESC.
- Ctrl+Clic ou Alt+Clic (Mac: Maiúsculas+Opción" "+Clic) para eliminar a columna da cláusula ORDENAR POR" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Prema para marcar/desmarcar." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Prema dúas veces para copiar o nome da columna." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Prema a frecha para a baixo
para conmutar a visibilidade da columna." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2332,13 +2337,13 @@ msgstr "" "relacionadas coa edición da grecha, caixa de selección, editar, copiar e " "eliminar ligazóns poden non funcionar despois de gravar." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Introduza unha cadea aceptábel en hexadecimal. Os caracteres aceptábeis son " "0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2346,104 +2351,104 @@ msgstr "" "Confirma que desexa ver todas as filas? Se a táboa é grande o navegador " "podería fallar." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Tamaño orixinal" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "cancelar" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Interrompido" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Éxito" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Estado da importación" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Soltar os ficheiros aquí" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Seleccione a base de datos antes" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Tamén se poden editar a maioría dos valores
preméndoas directamente " "dúas veces." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Tamén se poden editar a maioría dos valores
premendo directamente o seu " "contido." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Ir á ligazón:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copiar o nome da columna." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Prema co botón dereito para copiar o nome da columna o portarretallos." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Xerar" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Máis" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Mostrar o panel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Agochar o panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Mostrar os elementos agochados da árbore de navegación." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Ligar co panel principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Desligar do panel principal" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Non foi posíbel atopar a páxina pedida no historial; pode que caducase." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2453,42 +2458,42 @@ msgstr "" "A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ",última versión estable:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "actualizada" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Crear unha vista" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Enviar un informe de erro" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Entregar o informe de erro" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Produciuse un erro global de JavaScript. Desexa enviar un informe do erro?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Cambiar a configuración dos informes" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Mostrar os detalles do informe" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2496,7 +2501,7 @@ msgstr "" "A exportación está incompleta debido a un límite de tempo de execución baixo " "no nivel de PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2506,60 +2511,60 @@ msgstr "" "envialo, algúns dos campos poderían ser ignorados por causa da configuración " "de max_input_vars de PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Detectáronse algúns erros no servidor!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Mire na parte inferior desta xanela." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorar todo" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Segundo as opcións de configuración, están a ser enviados neste momento; " "agarde un anaquiño." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Executar esta consulta de novo?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Confirma que desexa eliminar este marcador?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Produciuse un erro ao obter a información de depuración de SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s veces en %s segundos." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "Paráronse %s argumento(s)" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Mostrar os argumentos" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Agochar os argumentos" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Tempo que levou:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2574,349 +2579,369 @@ msgstr "" "tipo; limpar os «Datos de sitios web sen conexión» podería axudar. No Safari " "este é un problema que causa frecuentemente a «Navegación en modo privado»." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Copiar as táboas a" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Engadir un prefixo á táboa" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Substituír a táboa co prefixo" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar a táboa con prefixo" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hoxe" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Xaneiro" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Febreiro" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Marzo" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Abril" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maio" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Xuño" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Xullo" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Agosto" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Setembro" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Outubro" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembro" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Luns" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Mércores" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Xoves" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Venres" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "X" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sm" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendario-mes-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hora" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuto" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Segundo" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Este campo é obrigatorio" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Arranxe este campo" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Introduza un enderezo de correo aceptábel" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Introduza un URL aceptábel" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Introduza unha data aceptábel" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Introduza unha data aceptábel (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Introduza un número aceptábel" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Introduza un número de tarxeta de crédito aceptábel" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Introduza unicamente díxitos" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Introduza o mesmo valor de novo" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Non introduza máis de {0} caracteres" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Introduza ao menos {0} caracteres" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Introduza un valor que teña entre {0} e {1} caracteres" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Introduza un valor entre {0} e {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Introduza valores inferiores ou iguais a {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Introduza un valor maior ou igual a {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Introduza unha data ou hora aceptábeis" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Introduza unha entrada hexadecimal aceptábel" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Produciuse un erro" @@ -2981,20 +3006,20 @@ msgid "Charset" msgstr "Conxunto de caracteres" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Orde alfabética" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binario" @@ -3191,7 +3216,7 @@ msgid "Czech-Slovak" msgstr "Checo-eslovaco" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "descoñecido" @@ -3245,28 +3270,28 @@ msgstr "" msgid "Font size" msgstr "Tamaño da letra" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Non hai marcadores" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Consulta de consultas de SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Foi imposíbel ler o ficheiro de configuración!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3274,25 +3299,25 @@ msgstr "" "O servidor non responde (ou o socket local do servidor non se configurou " "correctamente)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "O servidor non responde." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Comprobe os privilexios do directorio que contén a base de datos." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalles…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Parámetro que falta:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Fallou a conexión para «controluser» tal e como está definida na " @@ -3388,110 +3413,105 @@ msgstr "Inserir:" msgid "Del:" msgstr "Eliminar:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Consulta tipo SQL na base de datos %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Enviar esta consulta" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Busca marcada gardada:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Marcador novo" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Crear un marcador" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Actualizar o marcador" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Eliminar o marcador" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "cando menos unha das palabras" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "todas as palabras" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "a frase exacta" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "como expresión regular" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Buscar os resultados para «%s» %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s ocorrencia" msgstr[1] "Total: %s ocorrencias" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s coincidencia en %2$s" msgstr[1] "%1$s coincidencias en %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Visualizar" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Eliminar as coincidencias para a táboa %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Buscar na base de datos" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras ou valores que buscar (ou comodín é: «%»):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Atopar:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "As palabras divídense cun carácter de espazo (« »)." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Dentro das táboas:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Anular toda a selección" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Dentro da columna:" @@ -3511,30 +3531,30 @@ msgstr "Filtrar filas" msgid "Search this table" msgstr "Buscar nesta táboa" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Inicio" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -3543,7 +3563,7 @@ msgstr "Fin" msgid "All" msgstr "Todo" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de filas:" @@ -3552,8 +3572,8 @@ msgstr "Número de filas:" msgid "Sort by key" msgstr "Ordenar pola chave" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3575,10 +3595,10 @@ msgstr "Ordenar pola chave" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opcións" @@ -3618,30 +3638,30 @@ msgstr "Texto moi coñecido" msgid "Well Known Binary" msgstr "Binario moi coñecido" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "A fila foi eliminada." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Matar (kill)" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "Pode non ser exacto. Consulte a [doc@faq3-11]pregunta frecuente 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "A consulta de SQL executouse sen problemas." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3650,73 +3670,73 @@ msgstr "" "Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" "%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "A mostrar as filas %1s + %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d en total, %2$d en consulta" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "A consulta levou %01.4f segundos." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Cos marcados:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Marcar todo" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copiar ao portapapeis" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operacións cos resultados da consulta" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Mostrar a gráfica" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Ver os datos GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Non se atopou a ligazón!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Ningunha" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Converter a Kana" @@ -3724,25 +3744,25 @@ msgstr "Converter a Kana" msgid "Too many error messages, some are not displayed." msgstr "Houbo demasiadas mensaxes de erro; algunhas non se mostran." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Informar" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "A próxima vez, enviar un informe automaticamente" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "O ficheiro non foi subido como un ficheiro." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3750,49 +3770,49 @@ msgstr "" "O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no " "formulario HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro enviado só se recibiu parcialmente." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Falta un directorio temporal." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Non foi posíbel escribir no disco." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Detívose o envío do ficheiro por causa da extensión." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Produciuse un erro descoñecido ao enviar o ficheiro." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Non foi posíbel ler o ficheiro!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Produciuse un erro ao mover o ficheiro enviado. Consulte a " "[doc@faq1-11]Pregunta frecuente 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Produciuse un erro ao mover o ficheiro subido." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Non é posíbel ler o ficheiro enviado." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3801,28 +3821,28 @@ msgstr "" "Tentou cargar un ficheiro cunha compresión descoñecida (%s). Ora non se sabe " "como descomprimir, ora está desactivada na configuración." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Estase a executar a versión %1$s de Git da galla %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Falta información sobre Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Abrir unha xanela nova co phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Visualización previa da impresión" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Prema a barra para desprazarse até a parte superior da páxina" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript debe estar activo a partir de aquí!" @@ -3831,20 +3851,20 @@ msgid "No index defined!" msgstr "Non se definiu ningún índice!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3854,59 +3874,59 @@ msgstr "Índices" msgid "Action" msgstr "Acción" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Único" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Comentario" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Eliminouse a chave primaria." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Eliminouse o índice %s." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Eliminar" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3915,19 +3935,19 @@ msgstr "" "Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " "eliminar un deles." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Número de páxina:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignórase o código de idioma descoñecido." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Lingua" @@ -3951,11 +3971,11 @@ msgstr "Servidor" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3974,14 +3994,15 @@ msgid "View" msgstr "Vista" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3990,8 +4011,8 @@ msgid "Table" msgstr "Táboa" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3999,45 +4020,45 @@ msgstr "Táboa" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Buscar" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilexios" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacións" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Seguimento" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4053,16 +4074,16 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Consulta" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4070,20 +4091,20 @@ msgstr "Rutinas" msgid "Events" msgstr "Acontecementos" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Deseñador" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnas centrais" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Bases de datos" @@ -4092,53 +4113,53 @@ msgid "User accounts" msgstr "Contas de usuario" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Rexistro binario" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicación" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variábeis" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Engadidos" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d fila afectada." msgstr[1] "%1$d filas afectadas." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d fila eliminada." msgstr[1] "%1$d filas eliminadas." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4186,27 +4207,27 @@ msgstr "Táboas favoritas" msgid "Favorites" msgstr "Favoritos" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Indique un nome para esta busca marcada." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Falta información para gardar a busca marcada." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Xa existe unha entrada con este nome." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Falta información para eliminar a busca." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Falta información para cargar a busca." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Produciuse un erro ao cargar a busca." @@ -4268,7 +4289,7 @@ msgstr "Mostrar as táboas abertas" msgid "Show slave hosts" msgstr "Mostrar os servidores escravos" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Mostrar o estado do principal" @@ -4322,71 +4343,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutos" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Non se conta con información de estado detallada sobre este motor de " "almacenamento." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está dispoñíbel neste servidor de MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s foi desactivado neste servidor de MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Estado da táboa descoñecido:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Non foi posíbel atopar a base de datos de orixe «%s»!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Non foi posíbel atopar a base de datos de destino «%s»!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "A base de datos non é válida:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "O nome da táboa non é válido:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Produciuse un erro ao mudarlle o nome á táboa %1$s para %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A táboa %1$s foi renomeada a %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Non foi posíbel gardar as preferencias de IU da táboa!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4395,7 +4416,7 @@ msgstr "" "Produciuse un erro ao limpar as preferencias de IU da táboa (vexa " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4406,19 +4427,19 @@ msgstr "" "persistentes despois de anovar esta páxina. Comprobe se se modificou a " "estrutura da táboa." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primaria debe ser «PRIMARY»!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Non se pode facer que este índice sexa PRIMARIO!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Non se definiron partes do índice!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4750,7 +4771,7 @@ msgid "Date and time" msgstr "Data e hora" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Cadea" @@ -4765,126 +4786,126 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Análise estática:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Atopáronse %d erros durante a análise." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Explicar o SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Omitir a explicación de SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Sen código PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Enviar esta consulta" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Crear código PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Anovar" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Análise do desempeño" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar na liña" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Do" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parámetro que falta:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Ir á base de datos \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Examinar o computador:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Escoller o directorio de subida do servidor web %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Non é posíbel acceder ao directorio que designou para os envíos." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Non hai ficheiros para subir!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Baleirar" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Usuarios" @@ -4898,7 +4919,7 @@ msgstr "por minuto" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "por hora" @@ -4906,12 +4927,12 @@ msgstr "por hora" msgid "per day" msgstr "por día" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Buscar:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4919,7 +4940,7 @@ msgstr "Buscar:" msgid "Description" msgstr "Descrición" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Usar este valor" @@ -4960,22 +4981,22 @@ msgstr "SI" msgid "NO" msgstr "NON" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nome" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Tamaño/Valores" @@ -4984,7 +5005,7 @@ msgstr "Tamaño/Valores" msgid "Attribute" msgstr "Atributo" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5001,11 +5022,11 @@ msgstr "Engadir unha columna" msgid "Select a column." msgstr "Seleccionar unha columna." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Engadir unha columna nova" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5013,7 +5034,7 @@ msgstr "Engadir unha columna nova" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5022,28 +5043,28 @@ msgstr "" "Ten activada mbstring.func_overload na configuración do PHP. Esta opción é " "incompatíbel co phpMyAdmin e podería ocasionar danos nos datos!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "O índice de servidor non é válido: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" "Na configuración indicouse un método de autenticación que non é válido:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5051,20 +5072,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Erro: o token non coincide" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Tentouse substituír GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "posíbel vulnerabilidade (exploit)" @@ -5693,7 +5714,7 @@ msgid "Compress on the fly" msgstr "Comprimir ao voo" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Ficheiro de configuración" @@ -5803,12 +5824,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Tempo máximo de execución" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Usar unha instrución %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Enviar (gravar nun ficheiro)
" @@ -5818,7 +5839,7 @@ msgstr "Conxunto de caracteres do ficheiro" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formato" @@ -5943,7 +5964,7 @@ msgid "Save on server" msgstr "Gravar no servidor" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Eliminar o(s) ficheiro(s) xa existente(s)" @@ -5956,7 +5977,7 @@ msgid "Remember file name template" msgstr "Lembrar o modelo do nome de ficheiro" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" @@ -5965,7 +5986,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Encerrar os nomes das táboas e das columnas entre aspas invertidas" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modo de compatiblidade de SQL" @@ -5997,7 +6018,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Engadir %s" @@ -6172,7 +6193,7 @@ msgid "Customize the navigation tree." msgstr "Personalizar a árbore de navegación." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servidores" @@ -7108,7 +7129,7 @@ msgstr "Dominio HTTP (Realm)" msgid "Authentication method to use." msgstr "Método de autenticación que se quere empregar." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipo de autenticación" @@ -7918,7 +7939,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Activar a lapela de desenvolvemento na configuración" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Comprobar cal é a última versión" @@ -7927,10 +7948,10 @@ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Activar a comprobación da última versión na páxina principal do phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Comprobación da versión" @@ -8085,25 +8106,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto de OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "A lista de favoritos está chea!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Baleirouse a táboa %s." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Deixouse a vista %s" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Eliminouse a táboa %s." @@ -8117,12 +8138,12 @@ msgid "Position" msgstr "Posición" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tipo de acontecemento" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Identificador do servidor" @@ -8131,7 +8152,7 @@ msgid "Original position" msgstr "Posición orixinal" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Información" @@ -8145,42 +8166,42 @@ msgstr "Interromper as consultas mostradas" msgid "Show Full Queries" msgstr "Mostrar as consultas completas" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Non hai ningunha base de datos" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Eliminouse %1$d base de datos sen problemas." msgstr[1] "Elimináronse %1$d bases de datos sen problemas." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Filas" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "De máis (Overhead)" @@ -8207,33 +8228,33 @@ msgstr "" msgid "Enable statistics" msgstr "Activar as estatísticas" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Variábeis e configuración do servidor" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Fallou a configuración da variábel" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Non se indicou unha consulta de SQL para obter os datos." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Na táboa que se quere debuxar non existe ningunha columna numérica." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Non hai datos que mostrar" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Alterouse a táboa %1$s sen problemas." @@ -8284,7 +8305,7 @@ msgstr "Movéronse as columnas satisfactoriamente." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Hai un erro na consulta" @@ -8301,12 +8322,12 @@ msgstr "Mudar" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Índice" @@ -8327,13 +8348,13 @@ msgstr "Texto completo" msgid "Distinct values" msgstr "Valores diferentes" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Falta a extensión %s. Comprobe a configuración do PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sen cambios" @@ -8355,118 +8376,122 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Non foi posíbel importar os engadidos - Comprobe a instalación!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Sen contrasinal" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Contrasinal:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Reescribir:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hash do contrasinal:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "A exportar bases de datos desde o servidor actual" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "A exportar táboas desde a base de datos «%s»" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "A exportar filas desde a táboa «%s»" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Tipo de exportación" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Modelo novo:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Nome do modelo" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Crear" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Modelos existentes:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Modelo:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Actualizada" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Seleccionar un modelo" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Método de exportación:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rápido - mostrar só as opcións mínimas" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Personalizada - mostrar todas as opcións posíbeis" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Bases de datos:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Táboas:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formato:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opcións específicas do formato:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8474,52 +8499,52 @@ msgstr "" "Baixe para encher as opcións do formato escollido e ignore as opcións do " "resto dos formatos." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Conversión de codificación:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Fila(s):" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Envorcar algunha(s) fila(s)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Comezar na columna:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Envorcar todas as fileiras" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Saída:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Gardar no servidor no directorio %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Modelo do nome de ficheiro:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@será o nome do servidor" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ será o nome da base de datos" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ será o nome da táboa" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8531,103 +8556,103 @@ msgstr "" "consecuencia: %3$s. O resto do texto ficará como está. Vexa as %4$sFAQ%5$s " "para máis detalles." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "usar isto en futuras exportacións" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Conxunto de caracteres do ficheiro:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compresión:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "comprimido no formato «zip»" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "comprimido no formato «gzip»" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Ver a saída como texto" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exportar as bases de datos como ficheiros separados" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exportar as táboas como ficheiros separados" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Mudar o nome das bases de datos/táboas/columnas seleccionadas" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Gardar a saída nun ficheiro" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Omitir as táboas maiores de" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Seleccionar base de datos" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Seleccionar táboa" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "nome da base de datos" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nome novo da táboa" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Nome anterior da táboa" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Copiar nome da columna" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Non foi posíbel cargar os engadidos de exportación. Comprobe a instalación!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s da galla %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "ningunha galla" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revisión do git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "remitido o %1$s por %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "creado o %1$s por %2$s" @@ -9091,13 +9116,13 @@ msgstr "" "Pódese atopar documentación e información adicional sobre PBXT na %sPáxina " "de PrimeBase XT %s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Non hai espazo para gardar o ficheiro %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9105,36 +9130,36 @@ msgstr "" "O ficheiro %s xa existe no servidor - cambie de nome ou escolla a opción de " "eliminar." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web non ten permiso para gardar o ficheiro %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Gardouse o envorcado no ficheiro %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Ver o contido dunha estrutura premendo no seu nome." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9143,42 +9168,42 @@ msgid "" msgstr "" "Mudar calquera destas opcións premendo a ligazón «Opcións» correspondente" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Editar a estrutura seguindo a ligazón «Estrutura»" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Ir á base de datos: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Editar a configuración de %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Ir á táboa: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Estrutura de %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Ir á vista: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9189,80 +9214,81 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columnas" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Agochar" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Función" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Por causa da súa lonxitude,
este campo pode non ser editábel" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binario - non editar" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ou" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "directorio de recepción do servidor web:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editar/Inserir" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserción con %s fileiras" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "e despois" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Inserir como fila nova e ignorar os erros" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Mostrar a consulta de inserción" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Volver para páxina anterior" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Volver para esta páxina" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9272,8 +9298,8 @@ msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha frecha para moverse a calquera sitio" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9284,31 +9310,31 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Só a estrutura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Estrutura e datos" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Só os datos" @@ -9319,14 +9345,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Engadir limitacións" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9385,8 +9411,8 @@ msgstr "Procedementos" msgid "Views:" msgstr "Vistas" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Mostrar" @@ -9435,19 +9461,19 @@ msgid_plural "%s results found" msgstr[0] "atopouse %s resultado máis" msgstr[1] "atopáronse outros %s resultados" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Clear Fast Filter" msgid "Clear fast filter" msgstr "Limpar o filtro rápido" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9463,7 +9489,7 @@ msgstr "O nome de clase «%1$s» é incorrecto; emprégase o predefinido «Nodo msgid "Could not load class \"%1$s\"" msgstr "Non foi posíbel engadir columnas!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9484,7 +9510,7 @@ msgstr "Nova" msgid "Database operations" msgstr "Opcións de exportación da base de datos" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9590,13 +9616,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Escoller dúas columnas" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Move column" msgid "No such column" @@ -9852,8 +9878,8 @@ msgid "Rename database to" msgstr "Renomear a base de datos como" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9899,183 +9925,183 @@ msgstr "a refacer logo de insercións e destrucións (shingly)" msgid "Move table to (database.table)" msgstr "Mover a táboa a (base_de_datos.táboa)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Mudar o nome da táboa para" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Comentarios da táboa" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opcións da táboa" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Motor de almacenamento" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copiar a táboa a (base_de_datos.táboa)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Ir á táboa copiada" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Táboa de mantemento" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizar a táboa" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Comprobar a táboa" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Comprobar a táboa" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Táboa de desfragmentación" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Borrouse a táboa %s." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Borrar a táboa («FLUSH»)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizar a táboa" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparar a táboa" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Eliminar datos ou táboa" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Baleirar a táboa (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Eliminar a táboa (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizar" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Comprobar" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimizar" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Reconstruír" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Arranxar" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Fechar" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Mantemento de particións" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Eliminar particións" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Non se pode mover unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Non se pode copiar unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Moveuse a táboa %s para %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Copiouse a táboa %s para %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Moveuse a táboa %s para %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Copiouse a táboa %s para %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "O nome da táboa está baleiro!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Este formato non ten opcións" @@ -10105,18 +10131,18 @@ msgstr "Mostrar a cor" msgid "Only show keys" msgstr "Só as chaves coñecidas" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Non é posíbel conectar: os axustes non son válidos." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Reciba a benvida a %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10125,7 +10151,7 @@ msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10137,7 +10163,7 @@ msgstr "" "e o contrasinal no ficheiro config.inc.php e asegurarse de que corresponden " "coa información proporcionada polo administrador do servidor do MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Ténteo de novo para conectar" @@ -10164,15 +10190,15 @@ msgstr "Nome de usuario:" msgid "Server Choice:" msgstr "Escolla de servidor:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "O captcha introducido é incorrecto; ténteo de novo!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Introduza o captcha correcto!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10235,7 +10261,7 @@ msgstr "Opcións de envorcado dos datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" @@ -10244,7 +10270,7 @@ msgstr "A extraer os datos da táboa" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Acontecemento" @@ -10252,8 +10278,8 @@ msgstr "Acontecemento" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definición" @@ -10339,7 +10365,7 @@ msgstr "Pór os nomes das columnas na primeira fila:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Servidor:" @@ -10911,7 +10937,7 @@ msgstr "Índice" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11346,18 +11372,18 @@ msgstr "" "Entre de novo no phpMyAdmin para cargar o ficheiro de configuración " "actualizado." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "sen descrición" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11365,42 +11391,42 @@ msgid "" "configuration storage there." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replicación do principal" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Mostrar os escravos conectados" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Engadir un usuario de replicación de escravos" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Configuración do principal" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11421,19 +11447,19 @@ msgstr "" "ignorar todas as bases de datos por omisión e permitir que se repliquen só " "algunhas. Seleccione o modo:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas as bases de datos. Ignorar:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas as bases de datos. Replicar:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Escolla as bases de datos:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11441,7 +11467,7 @@ msgstr "" "Agora engada as liñas seguintes ao final do ficheiro my.cnf e a seguir " "reinicie o servidor de MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11451,72 +11477,72 @@ msgstr "" "debería ver unha mensaxe que informa de que este servidor está " "configurado como principal." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replicación do escravo" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "A conexión non é segura" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "O fío escravo de SQL non está funcionando!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "O fío escravo de E/S non está funcionando!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "O servidor está configurado como escravo nun proceso de replicación. Desexa:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Ver a táboa de estado do escravo" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Escravo de control:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Inicio completo" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Detención completa" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Reiniciar o escravo" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Iniciar só o fío de SQL %s" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Parar só o fío de SQL %s" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Iniciar só o fío de E/S %s" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Parar só o fío de E/S %s" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Mudar ou reconfigurar o servidor principal" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11525,27 +11551,27 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa configuralo?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Xestión de erros:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Omitir os erros podería conducir a que o principal e o escravo non estean " "sincronizados!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Omitir este erro" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Omitir este erro" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11554,11 +11580,11 @@ msgstr "" "Este servidor non está configurado como principal nun proceso de " "replicación. Desexa configuralo?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Configuración do escravo" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11567,53 +11593,53 @@ msgstr "" "configuración (my.cnf). De non ser o caso, engada a liña seguinte na sección " "[mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nome de usuario:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nome do usuario" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Contrasinal" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Porto:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Estado do mestre" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Estado do escravo" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variábel" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Servidor" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11621,39 +11647,39 @@ msgstr "" "Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-" "host=nome_da_máquina." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Calquera servidor" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Este servidor" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Calquera usuario" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Empregar un campo de texto:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Empregar a táboa Host" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11661,96 +11687,96 @@ msgstr "" "Cando se emprega a táboa Host, ignórase este campo e no seu canto empréganse " "os valores almacenados na táboa Host." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Reescribir" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Xerar un contrasinal" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Estado da replicación" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Replicación do principal" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Replicación do principal" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Estado da replicación" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Replicación do principal" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Produciuse un erro" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Produciuse un erro descoñecido" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Foi imposíbel conectar co principal %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Foi imposíbel ler a posición do rexistro do principal. É posíbel que haxa un " "problema de privilexios no principal." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Foi imposíbel mudar de principal" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "O servidor principal mudouse con éxito a %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11771,7 +11797,7 @@ msgstr "O acontecemento %1$s foi modificado." msgid "Event %1$s has been created." msgstr "O acontecemento %1$s foi creado." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -11783,79 +11809,79 @@ msgstr "Producíronse un ou máis erros ao procesar a petición:" msgid "Edit event" msgstr "Editar o acontecemento" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detalles" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nome do acontecemento" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Cambiar a %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Executar en" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Executar cada" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Inicio" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Preservar ao completar" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definidor" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 #, fuzzy #| msgid "The definer must be in the \"username@hostname\" format" msgid "The definer must be in the \"username@hostname\" format!" msgstr "O definidor ten que estar no formato «nomedeusuario@nomedeservidor»" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide an event name" msgid "You must provide an event name!" msgstr "Debe indicar un nome de acontecemento" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Debe indicar un valor do intervalo válido para o acontecemento." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Debe indicar un tempo de execución válido para o acontecemento." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Debe indicar un tipo válido para o acontecemento." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Debe indicar unha definición do acontecemento." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Produciuse un erro ao procesar a petición:" @@ -11876,7 +11902,7 @@ msgstr "Estado do planificador de acontecementos" msgid "The backed up query was:" msgstr "A consulta almacenada foi:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Devolve" @@ -11892,99 +11918,99 @@ msgstr "" "fallar![/strong] Empregue a extensión mellorada «mysqli para evitar " "problemas." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Editar a rutina" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "O tipo de rutina non é válido: «%s»" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "A rutina %1$s foi creada." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Sentímolo, non foi posíbel restaurar a rutina eliminada." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "A rutina %1$s foi modificada." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "A rutina %1$s foi modificada." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nome da rutina" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parámetros" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Engadir un parámetro" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Eliminar o último parámetro" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Tipo de devolución" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Devolver tamaños/valores" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Devolver opcións" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "É determinista" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tipo de seguranza" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Acceso de datos SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "Debe indicar un nome á rutina" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "O parámetro «%s» recibiu unha dirección incorrecta." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11992,24 +12018,24 @@ msgstr "" "Ten que fornecer tamaños/valores para os parámetros das rutinas de tipo " "ENUM, SET, VARCHAR e VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Ten que fornecer un nome e un tipo para cada parámetro da rutina." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Ten que fornecer un tipo de devolución válida para a rutina." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Debe indicar unha definición da rutina." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Resultados da execución da rutina %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12020,13 +12046,13 @@ msgstr[0] "" msgstr[1] "" "%d fileiras afectadas pola última instrución de dentro do procedemento" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Executar a rutina" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parámetros da rutina" @@ -12048,40 +12074,40 @@ msgstr "O disparador %1$s foi creado." msgid "Edit trigger" msgstr "Editar o disparador" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nome do disparador" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a trigger name" msgid "You must provide a trigger name!" msgstr "Debe indicar un nome ao disparador" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" msgstr "Debe indicar unha sincronización válida para o disparador" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid event for the trigger" msgid "You must provide a valid event for the trigger!" msgstr "Debe indicar un acontecemento válido para o disparador" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "Debe indicar un nome de táboa válido" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Debe indicar unha definición do disparador." @@ -12208,92 +12234,92 @@ msgstr "Conxuntos de caracteres e Ordes alfabéticas" msgid "Databases statistics" msgstr "Estatísticas das bases de datos" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Sen privilexios." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permite gravar datos." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permite modificar datos." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permite eliminar datos." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Permite ver procesos de todos os usuarios" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á lista completa de bases de datos." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12303,132 +12329,106 @@ msgstr "" "maioría das operación administrativas, como configurar as variábeis globais " "ou matar os fíos doutros usuarios." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío actual." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os mestres." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Permite crear vistas novas." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Permite configurar acontecementos para o programador de acontecementos" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Permite crear e eliminar os disparadores" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas almacenadas." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Ningún" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Conexións persistentes" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Conexións persistentes" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Limites dos recursos" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limita o número de consultas por hora que pode enviar un usuario." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12436,131 +12436,124 @@ msgstr "" "Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " "que pode executar un usuario." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutinas" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Permite alterar e eliminar rutinas almacenadas." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Permite executar rutinas almacenadas." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilexios propios das táboas" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: os nomes dos privilexios do MySQL están en inglés" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administración" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilexios globais" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilexios propios das bases de datos" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autenticación mediante cookies" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autenticación mediante Signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Autenticación mediante cookies" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Empregar un campo de texto" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 #, fuzzy #| msgid "" #| "An account already exists with the same username but possibly a different " @@ -12572,155 +12565,155 @@ msgstr "" "Xa existe unha conta co mesmo nome de usuario mais con, posibelmente, un " "nome de servidor diferente. Ten a certeza de querer proseguir?" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Nome de usuario:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Nome do ficheiro de rexistro" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autenticación" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hash do contrasinal:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Revogou os privilexios de %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Engadir un usuario" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Base de datos para o usuario" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Crear unha base de datos co mesmo nome e conceder todos os privilexios." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Conceder todos os privilexios sobre a base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios que teñen acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "O usuario foi engadido." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Non se achou ningún usuario." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Calquera" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Modificar os privilexios:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Modificar o servidor" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… manter o anterior." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… eliminar o anterior das táboas de usuarios." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12728,122 +12721,106 @@ msgstr "" "… eliminar o anterior das táboas de usuarios e recargar os privilexios " "despois." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Modificar a información de acceso (login) / Copiar o usuario" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Crear un usuario novo cos mesmos privilexios e…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilexios propios das columnas" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Eliminar os usuarios seleccionados" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Retirarlles todos os privilexios activos aos usuarios e eliminalos a " -"continuación." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Non se escolleu que usuarios eliminar!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilexios para %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Novo" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Modificar os privilexios:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Usuarios" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Vista xeral dos usuarios" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12856,7 +12833,7 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12875,11 +12852,11 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario escollido na táboa de privilexios." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Engadiu un usuario novo." @@ -13198,12 +13175,12 @@ msgstr "Orde" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtros" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13226,12 +13203,12 @@ msgstr "por minuto:" msgid "per second:" msgstr "por segundo:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Instrucións" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "nº" @@ -13255,7 +13232,7 @@ msgstr "Mostrar os valores sen formato" msgid "Related links:" msgstr "Ligazóns relacionadas:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13263,11 +13240,11 @@ msgstr "" "O número de conexións que se interromperon porque o cliente morreu sen " "fechar axeitadamente a conexión." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "O número de intentos de conexión co servidor de MySQL falidos." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13277,18 +13254,18 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron a caché do rexistro binario." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "O número de tentativas de conexión (satisfactorias ou non) co servidor de " "MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13300,11 +13277,11 @@ msgstr "" "que incremente o valor de tmp_table_size para que as táboas temporais se " "baseen na memoria no canto de no disco." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13312,7 +13289,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13320,7 +13297,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sufriron algún erro " "(probabelmente unha chave duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13328,23 +13305,23 @@ msgstr "" "Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " "na que se utiliza INSERT DELAYED recibe o seu propio fío." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Número de veces que se eliminou unha fileira dunha táboa." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13354,7 +13331,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descubriron táboas." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13365,7 +13342,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13373,7 +13350,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as consultas e táboas están ben indexadas." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13383,7 +13360,7 @@ msgstr "" "increméntase se está a procurar unha columna de índice cunha limitación de " "intervalo ou se está a examinar un índice." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13391,7 +13368,7 @@ msgstr "" "Número de peticións para ler a fileira anterior na orde da chave. Este " "método de lectura utilízase sobre todo para optimizar ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13403,7 +13380,7 @@ msgstr "" "Posibelmente terá un monte de consultas que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13415,35 +13392,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas consultas non están " "escritas para aproveitar os índices de que dispón." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK («desfacer») interno." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Número de peticións para actualizar unha fileira nunha táboa." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Número de peticións para inserir un ficheiro nunha táboa." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do buffer que se pediu que se limpasen." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13453,7 +13430,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13465,11 +13442,11 @@ msgstr "" "tamén se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do buffer, en páxinas." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13478,7 +13455,7 @@ msgstr "" "cando unha consulta vai examinar unha porción grande dunha táboa mais en " "orde aleatoria." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13486,11 +13463,11 @@ msgstr "" "Número de pre-lecturas secuenciais iniciadas por InnoDB. Isto acontece cando " "InnoDB realiza un exame secuencial completo dunha táboa." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13498,7 +13475,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do buffer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13512,55 +13489,55 @@ msgstr "" "que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser " "pequeno." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no buffer de InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13568,35 +13545,35 @@ msgstr "" "Número de esperas debidas a que o buffer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas de fsync() feitas no ficheiro de rexistro." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13605,55 +13582,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convertan doadamente " "en bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " "milisegundos." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " "milisegundos." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13661,7 +13638,7 @@ msgstr "" "Número de bloques chave na caché de chaves que se mudaron mais que aínda non " "se limparon para o disco. Antes era Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13669,7 +13646,7 @@ msgstr "" "Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " "para determinar canta caché de chave está en uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13679,15 +13656,15 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaxe de caché chave empregada (valor calculado)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Número de peticións para ler un bloque chave da caché." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13697,7 +13674,7 @@ msgstr "" "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " "relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13705,22 +13682,22 @@ msgstr "" "A caché chave calculouse erroneamente como a proporción de lecturas físicas " "comparada coas solicitudes de lectura (valor calculado)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Número de peticións para escribir un bloque chave na caché." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Número de escritas físicas dun bloque chave no disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentaxe de escritas físicas comparada coas solicitudes de escrita (valor " "calculado)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13731,7 +13708,7 @@ msgstr "" "procura diferentes para a mesma consulta. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13739,13 +13716,13 @@ msgstr "" "O número máximo de conexións que teñen estado en uso simultaneamente desde " "que se iniciou o servidor." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de consultas que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13753,19 +13730,19 @@ msgstr "" "O número de táboas abertas en total. Se a cantidade é grande, o valor da " "caché de táboas posibelmente é demasiado pequeno." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "O número de ficheiros abertos." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "O número de fluxos abertos (utilizado principalmente para o rexistro)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "O número de táboas abertas." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13775,19 +13752,19 @@ msgstr "" "altos poden indicar problemas de fragmentación, que se poden resolver " "enviando unha instrución FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "A cantidade de memoria libre para a caché de consultas." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "O número de impactos na caché." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "O número de consultas engadidas á caché." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13800,7 +13777,7 @@ msgstr "" "utilizado menos recentemente (LRU) para decidir que consultas debe eliminar " "da caché." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13808,19 +13785,19 @@ msgstr "" "O número de consultas non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "O número de consultas rexistradas na caché." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "O número total de bloques na caché de consultas." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "O estado da replicación en modo seguro (aínda non realizado)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13828,13 +13805,13 @@ msgstr "" "O número de unións que non utilizan índices. Se este valor non for 0, " "debería comprobar con atención os índices das táboas." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13843,7 +13820,7 @@ msgstr "" "de cada fila (se non é 0, debería comprobar con atención os índices das " "táboas)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13851,15 +13828,15 @@ msgstr "" "O número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "O número de unións que realizaron un exame completo da primeira táboa." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "O número de táboas temporais abertas actualmente polo fío SQL escravo." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13867,11 +13844,11 @@ msgstr "" "O número total de veces (desde o inicio) que o fío de replicación SQL " "escravo reintentou as transaccións." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto está ON se este servidor é un escravo conectado a un máster." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13879,14 +13856,14 @@ msgstr "" "O número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "O número de consultas ás que lles levou máis segundos dos indicados en " "long_query_time." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13896,23 +13873,23 @@ msgstr "" "Se este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenacións feitas con intervalos." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "O número de fileiras ordenadas." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenacións realizadas examinando a táboa." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "O número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13924,7 +13901,7 @@ msgstr "" "desempeño, debería en primeiro lugar mellorar as consultas e despois, ora " "partir a táboa ou táboas, ora utilizar a replicación." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13934,11 +13911,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "O número de conexións abertas neste momento." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13950,11 +13927,11 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaxe de impactos na caché de fíos (valor calculado)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "O número de fíos que non están a durmir." @@ -13991,49 +13968,49 @@ msgstr "Servidor de base de datos" msgid "Table level tabs" msgstr "Nome da táboa" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Vistas" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Engadir un usuario" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Sen privilexios." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Nomes das columnas: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versión do servidor" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Servidor de base de datos" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14145,7 +14122,7 @@ msgstr "Executar a(s) consulta(s) de SQL na base de datos %s" msgid "Run SQL query/queries on table %s" msgstr "Executar a(s) consulta(s) de SQL na base de datos %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Limpar" @@ -14233,114 +14210,114 @@ msgstr "Desactivar agora" msgid "Version" msgstr "Versión" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Creada" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Actualizada" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Crear unha versión" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Informe de seguimento" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Instantánea da estrutura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "activado" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "desactivado" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Instrucións de seguimento" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Eliminar do informe a fila de datos de seguimento" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Non hai datos" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s con datas de %2$s to %3$s polo usuario %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Envorcado de SQL (descarga do ficheiro)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Envorcado de SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Esta opción substitúe a táboa e os datos que contén." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Execución de SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Instrución de manipulación de datos" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Instrución de definición de datos" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nome de usuario" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantánea da versión %s (código SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nada" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "A definición dos datos de seguimento foi eliminada con éxito" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Eliminouse satisfactoriamente o seguimento da manipulación de datos" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14348,64 +14325,64 @@ msgstr "" "Pódese executar o envorcado creando e empregando unha base de datos " "temporal. Asegúrese de que goza dos privilexios para facelo." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Marque estas dúas liñas como comentario se non as precisa." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instrucións de SQL exportadas. Copie o envorcado ou execúteo." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimento da táboa «%s»" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Activouse o seguimento de %1$s na versión %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivouse o seguimento de %1$s na versión %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Crear versión %1$s de %2$s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Creouse a versión %1$s; activouse o seguimento de %2$s." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Táboas non seguidas" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Seguir a táboa" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Táboas seguidas" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Última versión" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Eliminar os datos de seguimento" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versións" @@ -14413,7 +14390,7 @@ msgstr "Versións" msgid "Manage your settings" msgstr "Xestionar a configuración" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Gardouse a configuración." @@ -14439,7 +14416,7 @@ msgstr "Produciuse un erro no ficheiro ZIP:" msgid "No files found inside ZIP archive!" msgstr "Non se atoparon ficheiros dentro do arquivo ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Produciuse un erro fatal: Só é posíbel acceder á navegación mediante AJAX" @@ -14450,58 +14427,58 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Configuración non gardada; o formulario enviado contén erros" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Non foi posíbel importar a configuración" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "A configuración contén datos incorrectos para algúns campos." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Quere importar o resto da configuración?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Gardado o: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importar dun ficheiro" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importar do almacenamento do navegador" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "A configuración será importada dende o almacenamento local do navegador." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Non ten opcións gardadas!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Esta característica non está admitida por este navegador" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Combinar coa configuración actual" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14510,25 +14487,25 @@ msgstr "" "Pode configurar máis opcións modificando config.inc.php, p.ex. usando o " "%sScript de configuración%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Enviar (gravar nun ficheiro)
" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Gardar no almacenamento do navegador" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "A configuración será gardada no almacenamento do navegador." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "A configuración existente será substituída!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Pode reiniciar a configuración e restaurar os valores predeterminados." @@ -14536,31 +14513,31 @@ msgstr "Pode reiniciar a configuración e restaurar os valores predeterminados." msgid "View dump (schema) of databases" msgstr "Ver o envorcado das bases de datos" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Sen privilexios" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Finalizouse o fío %s." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14568,15 +14545,15 @@ msgstr "" "O phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea " "fechado." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Descargar" @@ -14589,11 +14566,11 @@ msgstr "" "O grupo de formularios (formset) é incorrecto; comprobe o array $formsets en " "setup/frames/form.inc.php" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Non foi posíbel cargar ou gravar a configuración" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14604,7 +14581,7 @@ msgstr "" "[doc@setup_script]documentación[/doc]. Se non, só o poderá descargar ou " "mostrar." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14613,24 +14590,27 @@ msgstr "" "información potencialmente sensíbel, como os contrasinais) transfírense sen " "cifrar!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Se o servidor tamén estiver configurado para aceptar peticións de HTTP, siga " "esta ligazón [a@%s]this link[/a] para empregar unha conexión segura." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "A conexión non é segura" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuración gardada." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14639,61 +14619,61 @@ msgstr "" "máximo nivel do phpMyAdmin; cópieo ao nivel superior un e elimine o " "directorio config para empregalo." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Configuración gardada." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Vista xeral" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Mostrar as mensaxes agochadas (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Non hai ningún servidor configurado" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Novo servidor" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Lingua por omisión" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "que o escolla o usuario" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ningún -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Servidor por omisión" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Fin da liña" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Mostrar" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Cargar" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Páxina web do phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Doar" @@ -14729,7 +14709,7 @@ msgstr "Ignorar os erros" msgid "Show form" msgstr "Mostrar o formulario" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14737,15 +14717,15 @@ msgstr "" "Produciuse un erro ao ler a versión. Talvez non haxa conexión ou o servidor " "de actualizacións non responda." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Recibiuse unha cadea de versión do servidor que non é válida" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Non se pode analizar a cadea da versión" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14754,7 +14734,7 @@ msgstr "" "Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] :-)" "[br]A versión estable máis recente é %s, publicada o %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Non existe ningunha versión estábel máis recente" @@ -14767,12 +14747,12 @@ msgstr "Os datos son incorrectos" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Non existe a base de datos «%s»." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Xa existe a táboa %s!!" @@ -14785,35 +14765,35 @@ msgstr "Ver o esquema do envorcado da táboa" msgid "Invalid table name" msgstr "O nome de táboa non é correcto" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Non hai ningunha fileira seleccionada" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "O seguimento de %s está activado." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Non hai ningunha fileira seleccionada" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Instrucións SQL executadas." @@ -15026,7 +15006,7 @@ msgid "List of available transformations and their options" msgstr "Transformacións dispoñíbeis" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15052,7 +15032,7 @@ msgstr "" "tras (por exemplo '\\\\xyz' ou 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15533,17 +15513,17 @@ msgid "Size" msgstr "Tamaño" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Creación" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Última actualización" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Última revisión" @@ -15580,6 +15560,12 @@ msgstr "" "O navegador ten configuración do phpMyAdmin para este dominio. Desexaría " "importala para esta sesión?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Eliminar os datos de seguimento" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database:" @@ -15602,10 +15588,47 @@ msgstr "Engadir privilexios para esta táboa:" msgid "Add privileges on the following table:" msgstr "Engadir privilexios para esta táboa:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Novo" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Ningún" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Eliminar os usuarios seleccionados" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Retirarlles todos os privilexios activos aos usuarios e eliminalos a " +"continuación." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilexios propios das columnas" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Limites dos recursos" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Escolla o ficheiro de rexistro binario que desexe ver" @@ -15636,7 +15659,7 @@ msgstr "Engadido" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "desactivado" @@ -15803,7 +15826,7 @@ msgstr "Usuario:" msgid "Comment:" msgstr "Comentario:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15841,22 +15864,22 @@ msgstr "" msgid "Foreign key constraint" msgstr "Límite das chaves externas" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Engadir limitacións" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relacións internas" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relación interna" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15864,7 +15887,7 @@ msgstr "" "Non se precisa unha relación interna cando existe unha CHAVE EXTERNA " "correspondente." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Escolla a columna que desexe mostrar:" @@ -15920,11 +15943,11 @@ msgstr "Cadea orixinal" msgid "Replaced string" msgstr "Cadea substituída" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Substituír" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Criterios adicionais de busca" @@ -16005,7 +16028,7 @@ msgid "at beginning of table" msgstr "No comezo da táboa" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16041,28 +16064,28 @@ msgstr "Lonxitude das fileiras" msgid "Index length" msgstr "Lonxitude das fileiras" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "particionado" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Eliminar particións" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Editar a vista" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Uso do espazo" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efectivo" @@ -16091,31 +16114,31 @@ msgstr "Propor unha estrutura para a táboa" msgid "Track view" msgstr "Seguir a táboa" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Estatísticas das fileiras" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "estáticas" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinámicas" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "particionado" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Lonxitude das fileiras" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Tamaño das fileiras" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Índice automático seguinte" @@ -16128,50 +16151,50 @@ msgstr "Eliminouse a columna %s." msgid "Click to toggle" msgstr "Prema para conmutar" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Obter máis temas!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tipos MIME dispoñíbeis" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Transformacións dispoñíbeis" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Transformacións dispoñíbeis" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Descrición" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Procedemos co paso seguinte…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non ten dereitos suficientes para estar aquí agora!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Actualizouse o perfil." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16249,7 +16272,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16274,19 +16297,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Non hai ningunha base de datos escollida." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16349,29 +16372,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "O acontecemento %1$s foi creado." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Modelo de nome dos ficheiros" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No comezo da táboa" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16390,10 +16413,16 @@ msgstr "Hai caracteres inesperados na liña %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "No comezo da táboa" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16440,7 +16469,7 @@ msgstr "" msgid "strict error" msgstr "Recoller os erros" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17800,6 +17829,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definido como 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autenticación mediante cookies" + #~ msgid "Try to connect without password." #~ msgstr "Tentar conectarse sen contrasinal." diff --git a/po/gu.po b/po/gu.po index f8915a3988..2343d17012 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-01-08 17:45+0000\n" "Last-Translator: Nijraj Gelani \n" "Language-Team: Gujarati Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2323,105 +2328,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2430,349 +2435,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2833,20 +2858,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3041,7 +3066,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3085,48 +3110,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3220,110 +3245,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3343,30 +3363,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3375,7 +3395,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3384,8 +3404,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3407,10 +3427,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3450,102 +3470,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3553,97 +3573,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3652,20 +3672,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3675,78 +3695,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3770,11 +3790,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3793,14 +3813,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3809,8 +3830,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3818,45 +3839,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3872,16 +3893,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3889,20 +3910,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3911,53 +3932,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4005,27 +4026,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4087,7 +4108,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4141,76 +4162,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4218,19 +4239,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4497,7 +4518,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4512,126 +4533,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4645,7 +4666,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4653,12 +4674,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4666,7 +4687,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4703,22 +4724,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4727,7 +4748,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4744,11 +4765,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4756,33 +4777,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4790,20 +4811,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5328,7 +5349,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5428,12 +5449,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5443,7 +5464,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5568,7 +5589,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5581,7 +5602,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5590,7 +5611,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5620,7 +5641,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5786,7 +5807,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6617,7 +6638,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7252,7 +7273,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7260,10 +7281,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7398,24 +7419,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7429,12 +7450,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7443,7 +7464,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7457,42 +7478,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7517,32 +7538,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7585,7 +7606,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7602,12 +7623,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7628,13 +7649,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7654,165 +7675,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7820,98 +7845,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8308,86 +8333,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8398,84 +8423,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8486,31 +8512,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8519,14 +8545,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8571,8 +8597,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8613,17 +8639,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8638,7 +8664,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8657,7 +8683,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8756,11 +8782,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -8994,8 +9020,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9039,177 +9065,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9236,25 +9262,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9262,7 +9288,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9287,15 +9313,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9356,7 +9382,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9365,7 +9391,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9373,8 +9399,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9460,7 +9486,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9954,7 +9980,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10274,57 +10300,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10333,293 +10359,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10640,7 +10666,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10649,75 +10675,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10738,7 +10764,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10750,132 +10776,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10897,32 +10923,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11038,565 +11064,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11605,7 +11588,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11614,11 +11597,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11885,12 +11868,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11911,12 +11894,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -11940,33 +11923,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11974,78 +11957,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12053,7 +12036,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12061,42 +12044,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12104,33 +12087,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12139,242 +12122,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12382,99 +12365,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12482,18 +12465,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12501,11 +12484,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12534,37 +12517,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12659,7 +12642,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12744,172 +12727,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12917,7 +12900,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12941,7 +12924,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12949,78 +12932,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13028,45 +13011,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13074,97 +13057,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13200,28 +13182,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13234,12 +13216,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13252,29 +13234,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13438,7 +13420,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13456,7 +13438,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13884,17 +13866,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13929,6 +13911,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13945,10 +13931,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13979,7 +13998,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14133,7 +14152,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14165,26 +14184,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14237,11 +14256,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14310,7 +14329,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14334,24 +14353,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14376,31 +14395,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14413,44 +14432,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14518,7 +14537,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14539,17 +14558,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14601,24 +14620,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14635,10 +14654,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14675,7 +14698,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/he.po b/po/he.po index 3c24b2223e..f6a3e06209 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-07-28 16:36+0200\n" "Last-Translator: Moshe Harush \n" "Language-Team: Hebrew Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "תורם" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "מפתח ראשי נוסף אל %s" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "דוח המעקב" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2073,534 +2078,534 @@ msgstr "" msgid "End of step" msgstr "בסוף טבלה" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "שמירה" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "שאילתת SQL" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "חיפוש" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "שמות עמודה" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "שמות עמודה" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "הוספת/מחיקת עמודות שדה" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "תוכן עניניים" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "העתקה" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "נקודה" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "מחרוזת שורה" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "מצולע" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "פני השטח" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "טבעת פנימית" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "טבעת חיצונית:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "מספר דף:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "בחירת הכל" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "בחירת הכל" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "דפים חופשיים" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "בחירת הכל" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "אנא בחר עמוד לעריכה" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "עריכה או יצוא של תבנית יחסית" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "ערך עבור העמודה „%s“" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "שליחה" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "שמות עמודה" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "הצגת הכול" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "מיקום מקורי" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "בוטל" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "קבצי ייבוא" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "בחירת טבלאות" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "הדפסה" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "אין מאגרי נתונים" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "שמות עמודה" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "ייצור" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "הצגת הכול" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "הוספת שדה חדש" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "הראה רשת" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2608,121 +2613,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "קוד שרת (ID)" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "קוד שרת (ID)" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "ראיית טבלאות" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "התעלמות" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "הראה את שאילתה כאן שוב" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "שאילתת SQL" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "הערות לטבלה" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "שאילתת SQL" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2731,36 +2736,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "העתקת מסד הנתונים אל" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "הוספת שדה חדש" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "החלפת קידומת הטבלה" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "העתקת הטבלה עם קידומת" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "הקודם" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2768,96 +2793,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "מאי" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2865,78 +2890,78 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2944,225 +2969,225 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ללא" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "לשנייה" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "השתמש בשדה טקסט" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "שגיאה" @@ -3223,20 +3248,20 @@ msgid "Charset" msgstr "קידוד" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "איסוף" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "בינארי" @@ -3433,7 +3458,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "לא ידוע" @@ -3485,57 +3510,57 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "חיפוש" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "שאילתת SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to set configured collation connection!" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "השרת אינו מגיב" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Add new field" msgid "Missing connection parameters!" msgstr "הוספת שדה חדש" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3643,74 +3668,74 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "שאילתת SQL על מסד הנתונים %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "שליחת שאילתה" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "חיפוש" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "חיפוש" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "חיפוש" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "הצגת סימנייה" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "חיפוש" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "לפחות אחת מהמילים" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "כל המילים" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "הביטוי במדויק" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "כביטוי רגולרי" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "תוצאות החיפוש אחר „%s“ %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "סה״כ: פריט אחד (%s)" msgstr[1] "סה״כ: %s פריטים" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -3719,48 +3744,43 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s" msgstr[1] "%1$s תוצאות בטבלה %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "עיון" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "האם למחוק את התוצאות עבור הטבלה %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "חיפוש במסד הנתונים" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "מילים או ערכים לחיפוש אחריהם (תו כללי: „%“):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "חיפוש:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "מילים מופרדות ברווח („ “)." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "בתוך הטבלאות:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ביטול הבחירה הכללית" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "בתוך העמודה:" @@ -3786,16 +3806,16 @@ msgstr "שדות" msgid "Search this table" msgstr "חיפוש במסד הנתונים" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "התחלה" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3804,8 +3824,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "הקודם" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3814,8 +3834,8 @@ msgctxt "Next page" msgid "Next" msgstr "הבא" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3826,7 +3846,7 @@ msgstr "סיום" msgid "All" msgstr "הכל" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3837,8 +3857,8 @@ msgstr "מספר שדות" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3860,10 +3880,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "פעולות" @@ -3912,111 +3932,111 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "השורה נמחקה" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "יכול להיות הערכה. ראה [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "שאילתת ה־SQL שלך בוצעה בהצלחה" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "מראה שורות" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "סה\"כ" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "עם הנבחרים:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "סימון הכול" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "קישור לא נמצא" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4024,7 +4044,7 @@ msgid "None" msgstr "ללא" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4032,74 +4052,74 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy msgid "Report" msgstr "ייצוא" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy msgid "Automatically send report next time" msgstr "גרסת שרת" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4108,30 +4128,30 @@ msgstr "" "ניסית לטעון קובץ עם דחיסה שאינה נתמכת (%s). או שהתמיכה בדחיסה לא הוטמעה או " "שבוטלה בהגדרות שלך." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "מידע גרסאות" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "תצוגת הדפסה" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4142,20 +4162,20 @@ msgid "No index defined!" msgstr "אין אינדקסים מוגדרים!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "אינדקסים" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4165,31 +4185,31 @@ msgstr "אינדקסים" msgid "Action" msgstr "פעולה" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "שם מפתח" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "מספור" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4197,47 +4217,47 @@ msgstr "מספור" msgid "Comment" msgstr "הערות" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "המפתח הראשי הוסר." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "אינדקס %s הוסר." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "השמטה" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "מספר העמוד:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "שפה" @@ -4261,11 +4281,11 @@ msgstr "שרת" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4284,14 +4304,15 @@ msgid "View" msgstr "תצוגה" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4300,8 +4321,8 @@ msgid "Table" msgstr "טבלה" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4309,45 +4330,45 @@ msgstr "טבלה" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "חיפוש" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "הכנסה" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "הרשאות" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "פעולות" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4363,16 +4384,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "שאילתה" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4380,22 +4401,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "מאגרי נתונים" @@ -4406,46 +4427,46 @@ msgid "User accounts" msgstr "משתמש" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "דו\"ח בינארי" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "שכפול" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "משתנים" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "קידודים" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "מנועים" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row deleted." @@ -4453,7 +4474,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "לא נבחרו שורות" msgstr[1] "לא נבחרו שורות" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row inserted." @@ -4520,29 +4541,29 @@ msgstr "משתנים" msgid "Favorites" msgstr "משתנים" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "שם המשתמש %s כבר קיים!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "מאפשר מחיקת מידע." @@ -4609,7 +4630,7 @@ msgstr "ראיית טבלאות" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4665,82 +4686,82 @@ msgid_plural "%d minutes" msgstr[0] "בשימוש" msgstr[1] "בשימוש" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "אין מידע מצב מפורט על מנוע אחסון זה." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון כבררת המחדל של שרת MySQL זה." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s זמין על שרת MySQL זה." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s מובטל על שרת MySQL זה." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "שרת MySQL לא תומך במנוע אחסון %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "ראיית טבלאות" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy msgid "Invalid database:" msgstr "אין מאגרי נתונים" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "בתוך הטבלאות:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "גרסת שרת" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "טבלה %s שונתה אל %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4748,19 +4769,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "לא ניתן לשנות שם אינדקס אל PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5031,7 +5052,7 @@ msgid "Date and time" msgstr "יצירת אינדקס חדש" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Linestring" msgctxt "string types" @@ -5050,70 +5071,70 @@ msgstr "סה\"כ" msgid "Max: %s%s" msgstr "מירבי: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "ללא קוד PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "שליחת שאילתה" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "ייצור קוד PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "רענון" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5121,65 +5142,65 @@ msgid "Edit inline" msgstr "הוספת שדה חדש" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "יום ראשון" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y בזמן %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "הוספת שדה חדש" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "קפיצה אל מאגר נתונים \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ריקון" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5195,7 +5216,7 @@ msgstr "לדקה" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "לשעה" @@ -5203,12 +5224,12 @@ msgstr "לשעה" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "חיפוש:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5216,7 +5237,7 @@ msgstr "חיפוש:" msgid "Description" msgstr "תיאור" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "שימוש בערך זה" @@ -5257,22 +5278,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "שם" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "אורך/ערכים*" @@ -5283,7 +5304,7 @@ msgstr "אורך/ערכים*" msgid "Attribute" msgstr "תכונות" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5306,13 +5327,13 @@ msgstr "הוספת %s תאים" msgid "Select a column." msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "הוספת %s תאים" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5320,7 +5341,7 @@ msgstr "הוספת %s תאים" msgid "Attributes" msgstr "תכונות" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 #, fuzzy msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " @@ -5330,27 +5351,27 @@ msgstr "" "הפכת mbstring.func_overload בתצורת ה-PHP שלך. אפשרות זו אינו תואם ל- " "phpMyAdmin, עלול לגרום לנתונים פגומים!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "שרת" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5358,20 +5379,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5929,7 +5950,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6042,13 +6063,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "משפטים" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "שמירה כקובץ" @@ -6059,7 +6080,7 @@ msgstr "חבילת הקידוד של הקובץ:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "תבנית" @@ -6203,7 +6224,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -6219,7 +6240,7 @@ msgid "Remember file name template" msgstr "תבנית שם קובץ" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" @@ -6230,7 +6251,7 @@ msgid "Enclose table and column names with backquotes" msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6262,7 +6283,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "הוספת %s" @@ -6443,7 +6464,7 @@ msgid "Customize the navigation tree." msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 #, fuzzy msgid "Servers" msgstr "שרת" @@ -7354,7 +7375,7 @@ msgstr "" msgid "Authentication method to use." msgstr "תיעוד" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8042,7 +8063,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8050,10 +8071,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8199,25 +8220,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "תיעוד" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "הטבלה %s רוקנה." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "התצוגה %s נשמטה" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8232,12 +8253,12 @@ msgid "Position" msgstr "מיקום" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "סוג אירוע" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "קוד שרת (ID)" @@ -8246,7 +8267,7 @@ msgid "Original position" msgstr "מיקום מקורי" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "מידע" @@ -8260,16 +8281,16 @@ msgstr "" msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "אין מאגרי נתונים" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "מסד הנתונים %1$s נוצר." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8277,26 +8298,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s מסדי נתונים נמחקו בהצלחה." msgstr[1] "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "שורות" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "סה״כ" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "תקורה" @@ -8326,35 +8347,35 @@ msgstr "" msgid "Enable statistics" msgstr "הפעלת סטטיסטיקה" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "משתני והגדרות שרת" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "אין מאגרי נתונים" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8406,7 +8427,7 @@ msgstr "%s מסדי נתונים נמחקו בהצלחה." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8426,12 +8447,12 @@ msgstr "שינוי" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "אינדקס" @@ -8454,13 +8475,13 @@ msgstr "Fulltext" msgid "Distinct values" msgstr "עיין בערכים נפרדים" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "ללא שינוי" @@ -8482,201 +8503,205 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "ללא סיסמא" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "סיסמא:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "הקלדה נוספת" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "סיסמא:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Exporting databases from the current server" msgstr "נכשל בכניסה לשרת MySQL" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "יצירת טבלה חדשה על מאגר נתונים %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "יצירת טבלה חדשה על מאגר נתונים %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "סוג ייצוא" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "תבנית שם קובץ" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "User name" msgid "Template name" msgstr "שם משתמש" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "יצירה" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "תבנית שם קובץ" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s טבלאות" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "עדכון שאילתה" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "בחירת טבלאות" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "סוג ייצוא" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "מאגרי נתונים" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "טבלאות" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "תבנית" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy msgid "Format-specific options:" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "שורות" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "תבנית שם קובץ" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8684,124 +8709,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "דחיסה" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "שמירה כקובץ" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "יצירת טבלה חדשה על מאגר נתונים %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "מאוזן (headers מסובבים)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "שמירה כקובץ" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "בחירת טבלאות" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "בחירת טבלאות" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "מאגר נתונים" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "אין טבלאות" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "שמות עמודה" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "שמות עמודה" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "גרסת שרת" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "גרסת שרת" @@ -9206,87 +9231,87 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "אין מספיק מקום לשמירת הקובץ %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "הקובץ %s כבר קיים בשרת, נא לשנות את שם הקובץ או לסמן את אפשרות השכתוב." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "לשרת אין הרשאה לשמור את קובץ %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "השליפה נשמרה אל הקובץ %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "מבנה בלבד" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9298,89 +9323,90 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "יצירת אינדקס על %s  עמודות" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "פונקציה" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "משום אורכם,
השדה הזה יכול להיות בלתי עריך " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "או" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy msgid "web server upload directory:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "הכנסה" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ואז" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9391,31 +9417,31 @@ msgstr "" msgid "Value" msgstr "ערך" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "מבנה בלבד" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "מבנה ונתונים" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "נתונים בלבד" @@ -9426,14 +9452,14 @@ msgid "Add AUTO INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "הוספת הגבלות" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9493,8 +9519,8 @@ msgstr "תהליכים" msgid "Views:" msgstr "תצוגה" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "הצגה" @@ -9539,19 +9565,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "שמירה כקובץ" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9567,7 +9593,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "הוספת %s תאים" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9590,7 +9616,7 @@ msgstr "" msgid "Database operations" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9694,13 +9720,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9953,8 +9979,8 @@ msgid "Rename database to" msgstr "שינוי שם מסד הנתונים לשם" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10002,83 +10028,83 @@ msgstr "(בודד)" msgid "Move table to (database.table)" msgstr "העברת טבלה אל (מסד נתונים.טבלה)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "שינוי שם טבלה אל" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "הערות לטבלה" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "אפשרויות טבלה" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "מנוע אחסון" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "העתקת טבלה אל (מסד נתונים.טבלה)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "מעבר לטבלה שהועתקה" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "אחזקת טבלה" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "ניתוח טבלה" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "בדיקת טבלה" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "בדיקת טבלה" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "איחוי טבלה" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "הטבלה %s אופסה." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ריקון טבלה (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "ייעול טבלה" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "תיקון טבלה" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10086,108 +10112,108 @@ msgstr "תיקון טבלה" msgid "Delete data or table" msgstr "הוצאת מידע עבור טבלה" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "אין מאגרי נתונים" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "צ'יכית" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "סגירה" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "אחזקת טבלה" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 #, fuzzy msgid "Can't move table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "הטבלה %s הועברה ל- %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "טבלה %s הועתקה אל %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "הטבלה %s הועברה ל- %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "טבלה %s הועתקה אל %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "שם הטבלה ריק!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10216,25 +10242,25 @@ msgstr "ראיית צבע" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "חיבור נכשל: הגדרות לא תקינות." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "ברוך הבא אל %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10245,7 +10271,7 @@ msgstr "" "כתובת השרת, שם משתמש והסיסמא בקובץ config.inc.php ולוודא כי הם תואמים למידע " "שקיבלת ע\"י אחראי השרת של MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10272,15 +10298,15 @@ msgstr "שם משתמש:" msgid "Server Choice:" msgstr "בחירת שרת" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10356,7 +10382,7 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" @@ -10365,7 +10391,7 @@ msgstr "הוצאת מידע עבור טבלה" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "נשלח" @@ -10374,8 +10400,8 @@ msgstr "נשלח" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10481,7 +10507,7 @@ msgstr "שמות עמודה" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11043,7 +11069,7 @@ msgstr "תוכן עניניים" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "תוספת" @@ -11392,57 +11418,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "ללא תיאור" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11451,317 +11477,317 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "אנא בחר מאגר נתונים" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "חיבורים" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "מבנה בלבד" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "מבנה בלבד" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "שם משתמש" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "שם משתמש" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "סיסמא" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "סידור" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "משתנה" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "מארח" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "מקומי" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "מארח זה" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "כל משתמש" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "השתמש בשדה טקסט" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "הקלדה נוספת" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "ייצור סיסמא" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "שגיאה" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "ההרשאות נטענו מחדש בהצלחה." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11783,7 +11809,7 @@ msgstr "טבלה %s נמחקה" msgid "Event %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11793,85 +11819,85 @@ msgstr "" msgid "Edit event" msgstr "נשלח" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "סוג אירוע" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "שינוי" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "הרצת שאילתה מועדפת" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "מצב" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "סיום" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "השלם הכנסות" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -11894,7 +11920,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -11908,148 +11934,148 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "שמות עמודה" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "יצירה" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "הוספת שדה חדש" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "שינוי שם מאגר נתונים אל" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "אורך/ערכים*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "אפשרויות טבלה" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "סוג שאילתה" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12073,36 +12099,36 @@ msgstr "טבלה %s נמחקה" msgid "Edit trigger" msgstr "הוספת משתמש חדש" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "שם משתמש" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "זמן" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12238,629 +12264,580 @@ msgstr "חבילות קידוד" msgid "Databases statistics" msgstr "סטטיסטיקת מסד הנתונים" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "ללא הרשאות." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "ללא" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "חיבורים" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "חיבורים" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "גבולות משאבים" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" msgid "Routine" msgstr "הוספת שדה חדש" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy msgid "Allows executing this routine." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "הערה: שמות הרשאות MySQL מובטאות באנגלית" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "ניהול" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "הרשאות גלובליות" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "עולמי" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "תיעוד" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "שינוי סיסמא" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "תיעוד" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "מידע כניסה" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "שם משתמש" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "שם דו\"ח" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "תיעוד" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "סיסמא:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "אתה שללת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "הוספת משתמש" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "בדיקת הראשות עבור מאגר נתונים \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy msgid "User has been added." msgstr "שדה %s נמחק" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "הענקה" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "כל דבר" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "עולמי" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "תו כללי" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "שלילה" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "עריכת השורה הבאה" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… שמירת הישן." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… מחיקת הישן מטבלאות המשתמשים." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "הסרת משתמשים שנבחרו" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "הרשאות" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "משתמש" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "משתמש" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "סקירת משתמשים" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12872,7 +12849,7 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12890,11 +12867,11 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "משתמש חדש נוסף." @@ -13191,12 +13168,12 @@ msgstr "פקודה" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "ראיית טבלאות" @@ -13224,12 +13201,12 @@ msgstr "לדקה" msgid "per second:" msgstr "לשנייה" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "משפטים" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13259,33 +13236,33 @@ msgstr "ראיית טבלאות" msgid "Related links:" msgstr "יחסים" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13293,78 +13270,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13372,7 +13349,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13380,42 +13357,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13423,33 +13400,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13458,243 +13435,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13702,99 +13679,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13802,18 +13779,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13821,12 +13798,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "סוג שאילתה" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13863,48 +13840,48 @@ msgstr "שרת מסד נתונים" msgid "Table level tabs" msgstr "הערות לטבלה" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "כל משתמש" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "הוספת משתמש" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "ללא הרשאות." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "שמות עמודה" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "גרסת שרת" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "שרת מסד נתונים" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14019,7 +13996,7 @@ msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" msgid "Run SQL query/queries on table %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14111,103 +14088,103 @@ msgstr "" msgid "Version" msgstr "Persian" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "מועד היצירה" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "עודכנה" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "גרסת שרת" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "דוח המעקב" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "העתק של המבנה" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "פעיל" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "לא פעיל" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "אין מאגרי נתונים" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "נתונים" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "שם משתמש:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14215,77 +14192,77 @@ msgctxt "None for default" msgid "None" msgstr "ללא" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "גרסת שרת" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "טבלאות שאינן במעקב" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "מעקב אחר טבלה" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "טבלאות במעקב" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "הגרסה האחרונה" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "נתוני המעקב נמחקים" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "גרסאות" @@ -14295,7 +14272,7 @@ msgstr "גרסאות" msgid "Manage your settings" msgstr "תכונות קשר כלליות" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14321,7 +14298,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14329,84 +14306,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "תיעוד phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "קבצי ייבוא" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "שמירה כקובץ" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14414,45 +14391,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "ללא הרשאות" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14460,103 +14437,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "שינויים נשמרו" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "שינויים נשמרו" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "מקומי" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "תיעוד phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14594,28 +14570,28 @@ msgstr "" msgid "Show form" msgstr "ראיית צבע" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14630,12 +14606,12 @@ msgstr "אין מאגרי נתונים" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "שם המשתמש %s כבר קיים!" @@ -14648,34 +14624,34 @@ msgstr "ראיית הוצאה (תבנית) של טבלה" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "לא נבחרו שורות" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy msgid "Tracking versions deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "לא נבחרו שורות" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14901,7 +14877,7 @@ msgid "List of available transformations and their options" msgstr "שינויי צורה זמינים" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy msgid "Browser display transformation" msgstr "שינויי צורה זמינים" @@ -14926,7 +14902,7 @@ msgstr "" "\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy msgid "Input transformation" msgstr "שינויי צורה זמינים" @@ -15461,17 +15437,17 @@ msgid "Size" msgstr "גודל" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "יצירה" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "עדכון אחרון" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "נבדק לאחרונה" @@ -15506,6 +15482,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "נתוני המעקב נמחקים" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15528,10 +15510,47 @@ msgstr "הוספת הראשאות לטבלה הבאה" msgid "Add privileges on the following table:" msgstr "הוספת הראשאות לטבלה הבאה" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "ללא" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "הסרת משתמשים שנבחרו" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "גבולות משאבים" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15567,7 +15586,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15755,7 +15774,7 @@ msgstr "משתמש:" msgid "Comment:" msgstr "הערות" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15791,30 +15810,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "הוספת הגבלות" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "יחסים פנימיים" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "יחסים פנימיים" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15880,12 +15899,12 @@ msgstr "מיקום מקורי" msgid "Replaced string" msgstr "יחסים" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "יחסים" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "שאילתת SQL" @@ -15972,7 +15991,7 @@ msgid "at beginning of table" msgstr "בתחילת טבלה" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16004,30 +16023,30 @@ msgstr "אורך שורה" msgid "Index length" msgstr "אורך שורה" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "מיקום" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add new field" msgid "Edit partitioning" msgstr "הוספת שדה חדש" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "תצוגת הדפסה" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "שימוש מקום" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "יעיל" @@ -16058,33 +16077,33 @@ msgstr "הצעת מבנה טבלה" msgid "Track view" msgstr "מעקב אחר טבלה" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "סטטיסטיקת שורה" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "דינאמי" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "אורך שורה" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "גודל שורה" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16098,52 +16117,52 @@ msgstr "טבלה %s נמחקה" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "השג סגנונות נוספים!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "סוגי MIME זמינים" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "שינויי צורה זמינים" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "שינויי צורה זמינים" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "תיאור" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "דוח המעקב" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "הפרופיל עודכן בהצלחה." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -16216,7 +16235,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16240,19 +16259,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "אף מאגר נתונים לא נבחר." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16308,27 +16327,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "טבלה %s נמחקה" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "תבנית שם קובץ" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "בתחילת טבלה" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16345,10 +16364,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "בתחילת טבלה" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16392,7 +16417,7 @@ msgstr "" msgid "strict error" msgstr "סוג שאילתה" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17527,6 +17552,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "תיעוד" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/hi.po b/po/hi.po index ddfd474a56..68952814ec 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hindi Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "योगदान" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "प्राथमिक कुंजी जोड़ें" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s पर एक प्राईमरी की जड़ी गयी है" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ट्रैकिंग रिपोर्ट" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2046,274 +2051,274 @@ msgstr "" msgid "End of step" msgstr "लाइन के अंत" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "हो गया" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "निम्नलिखित क्वरीों क्रियान्वित किया गया है" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "सुरक्षित करें" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ढूंढें" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "कोलम नाम" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "कोलम नाम" -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा सकता है।" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "दो कॉलम चुने" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "दो भिन्न कॉलम चुनें" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "डॅटा बिन्दु सामग्री" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "उपेक्षा करें" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "प्रतिलिपि करें" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "बिन्दु" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "लाईन समाप्त होता है" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "बहुभुज" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "ज्यामिति" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "आंतरिक वृत्त" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "बाहरी वृत्त:" -#: js/messages.php:522 +#: js/messages.php:523 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "क्या आप शेष सेटिंग्स आयात करना चाहते हैं?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "संदर्भ कुंजी का चयन करें" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "परदेशी कुंजी का चयन करें" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चुनें" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2321,97 +2326,97 @@ msgstr "" "आपने प्रदर्शन में बदलावों को सुरक्षित नहीं किया है। ये बदलाव खो जायेंगे यदि आपने सुरक्षित नहीं " "किया। क्या आप ज़ारी रखना चाहेंगे?" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "पृष्ठ नाम:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "पेज चुनिये" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "पेज चुनिये" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "मुक्त पृष्ठों" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "पेज चुनिये" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "इकाई" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "एडिट करने के लिये पेज़ चुने" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "कॉलम के लिए एक विकल्प जोड़ें " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "सबमिट" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ" -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2419,49 +2424,49 @@ msgstr "" "आपने कुछ डॅटा को सम्पादित किया है पर सुरक्षित नहीं किया है। क्या आप उन्हें बिना सुरक्षित " "किये आगे बढ़ना चाहेंगे?" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "पुनः व्यवस्थित करने के लिए घसीटें" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "कोलम के नाम" -#: js/messages.php:588 +#: js/messages.php:589 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "कॉलम को दिखने / छुपाने के लिए
ड्रॉप-डाउन तीर पर क्लिक करें" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "सभी दिखाएँ" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2469,131 +2474,131 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "मूल स्थिति" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "रद्द" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "रद्द" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "आयात" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "टेबल चुनिये" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "छापें" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "लिंक पर जाएँ" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "कोलम के नाम" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "नया पासवर्ड उत्पन्न करें" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "उत्पन्न करें" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "अधिक" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "सभी दिखाएँ" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add index" msgid "Hide panel" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "बाईं फ्रेम में लोगो देखियें" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2602,123 +2607,123 @@ msgstr "" "phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित हुआ है।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "नवीनतम स्थिर संस्करण:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "अद्यतन" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "दृश्य बनाइये" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "सर्वर" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "सर्वर" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "खुला टेबल शो" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "उपेक्षा करें" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "यह query वापस यहीं दिखायें" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "टेबल की टिप्पणी" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "खोज परिणाम छिपाएँ" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2727,182 +2732,202 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add index" msgid "Add table prefix" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "पिछला" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "आज" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "जनवरी" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "फरवरी" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "मार्च" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "अप्रैल" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "मई" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "जून" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "जुलाई" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "अगस्त" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "सितम्बर" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "नवम्बर" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "मंगलवार" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2910,205 +2935,205 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "मंगलवार" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "रवि" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "सोम" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "मंगल" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "बुध" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "गुरु" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "शुक्र" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "शनि" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "सप्ताह" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "कुछ नहीं" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "घंटा" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "मिनट" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "सेकण्ड" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "पाठ फ़ील्ड" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "त्रुटि" @@ -3170,20 +3195,20 @@ msgid "Charset" msgstr "कोई" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "क्रम में करें" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "बइनरी" @@ -3380,7 +3405,7 @@ msgid "Czech-Slovak" msgstr "चेक-स्लोवाक" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "अज्ञात" @@ -3432,58 +3457,58 @@ msgstr "" msgid "Font size" msgstr "फ़ॉन्ट का आकार" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "संबंध हटाना" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL क्वरी बॉक्स" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to set configured collation connection!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "सर्वर जवाब नहीं दे रहा" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "विवरण…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "नियमित कार्य" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3591,74 +3616,74 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "डेटाबेस %s पर SQL क्वरी:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "क्वरी भेजें" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "ढूंढें" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "संबंध हटाना" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "संबंध हटाना" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "संबंध हटाना" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "कोई भी एक शब्द" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "सभी शब्द" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "यथार्थ वाक्यांश" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "नियमित अभिव्यक्ति के रूप में" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "%s %s के लिये परिणाम खोजें:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "कुल: %s मैच" msgstr[1] "कुल: %s मैच" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3667,48 +3692,43 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "ब्राउज़" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "इस %s टेबल से मैच हटाएँ?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "डाटाबेस में खोजें" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "खोजो:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "शब्द स्पेस(\" \") करक्टेर से अलग किये गए हैं." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "टेबल में:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "सभी को रद्द करें" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "काँलम के अंदर:" @@ -3736,16 +3756,16 @@ msgstr "फ़िल्टर" msgid "Search this table" msgstr "डाटाबेस में खोजें" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "प्रारंभ" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3754,8 +3774,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "पिछला" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3764,8 +3784,8 @@ msgctxt "Next page" msgid "Next" msgstr "अगला" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3776,7 +3796,7 @@ msgstr "आखरी" msgid "All" msgstr "सभी" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "पंक्तियोंकी की संख्या:" @@ -3785,8 +3805,8 @@ msgstr "पंक्तियोंकी की संख्या:" msgid "Sort by key" msgstr "कुंजी सॉर्ट" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3808,10 +3828,10 @@ msgstr "कुंजी सॉर्ट" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "विकल्प" @@ -3855,111 +3875,111 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "रौ को डिलीट कर दिया" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/doc] देखें" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "रौ देखिये" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "कुल" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "चुने हुओं को:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "सभी को चेक करें" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "लिंक नहीं मिला" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "No" msgctxt "None encoding conversion" @@ -3967,7 +3987,7 @@ msgid "None" msgstr "कोई एन्कोडिंग नहीं" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3975,61 +3995,61 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "आयात करें" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatically create versions" msgid "Automatically send report next time" msgstr "स्वतः संस्करण बनाना" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "एक अस्थायी फ़ोल्डर गुम है." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "डिस्क में फ़ाइल लिखने में असफल।" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "फाइल पढ़ी नहीं जा सकती!" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4037,15 +4057,15 @@ msgstr "" "अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल " "1,11[/doc] देखें" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4054,30 +4074,30 @@ msgstr "" "आप असमर्थित कम्प्रेशन (%s) के साथ फाइल लोड करने का प्रयास कर रहे हैं. इसके लिए या तो " "समर्थन कार्यान्वित नहीं है या आपने विन्यास को अक्षम कर रखा है." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "संस्करण जानकारी" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin की नई विंडो खोलें" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "छपाई द्रश्य" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4088,20 +4108,20 @@ msgid "No index defined!" msgstr "परिभाषित सूचकांक नहीं पाए गए!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "सूचकांक" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4111,78 +4131,78 @@ msgstr "सूचकांक" msgid "Action" msgstr "कार्य" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "मुख्यनाम" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "जमा" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "प्रमुखता" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "टिप्पणी" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "प्राथमिक कुंजी गिरा दी गयी है ।" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "सूचकांक %s गिरा दिया गया है." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "रद्द" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "पृष्ठ संख्या:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "भाषा" @@ -4206,11 +4226,11 @@ msgstr "सर्वर" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4229,14 +4249,15 @@ msgid "View" msgstr "दृश्य" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4245,8 +4266,8 @@ msgid "Table" msgstr "टेबल" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4254,45 +4275,45 @@ msgstr "टेबल" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "ढूंढें" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "इनसर्ट" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "प्रिविलेज" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "कार्रवाई" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "नज़र रखना" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4308,16 +4329,16 @@ msgstr "ट्रिगर" msgid "Database seems to be empty!" msgstr "डाटाबेस खाली लग रहा है!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "क्वरी" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "नियमित कार्य" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4325,22 +4346,22 @@ msgstr "नियमित कार्य" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "डिजाइनर" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "डाटाबेस" @@ -4351,53 +4372,53 @@ msgid "User accounts" msgstr "यूसर" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "प्रतिकृति" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "प्रक्रियां" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "चरित्र सेट" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "इंजन" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "एकवचन %1$d पंक्ति प्रभावित।" msgstr[1] "बहुवचन%1$d पंक्तिया प्रभावित।" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "एकवचन %1$d पंक्ति नष्ट." msgstr[1] "बहुवचन %1$d पंक्तिया नष्ट." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4465,31 +4486,31 @@ msgstr "प्रक्रियां" msgid "Favorites" msgstr "प्रक्रियां" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "Missing information to save the bookmarked search." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "%s यूसर पहले से मौजूद है" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." @@ -4552,7 +4573,7 @@ msgstr "खुला टेबल शो" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "मास्टर अवस्था" @@ -4608,88 +4629,88 @@ msgid_plural "%d minutes" msgstr[0] "मिनट" msgstr[1] "मिनट" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s इस MySQL सर्वर पर उपलब्ध है." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show master status" msgid "Unknown table status:" msgstr "मास्टर अवस्था" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "स्रोत डेटाबेस" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "विषयवस्तु %s नहीं मिला है!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "अमान्य डेटाबेस" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "अवैध टेबल नाम" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि।" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "टेबल %s का नाम बदल कर %s रखा गया है." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save configuration" msgid "Could not save table UI preferences!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4697,20 +4718,20 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "प्राथमिक कुंजी का नाम \"प्राथमिक\" होना चाहिए!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "इन्डेक्स को PRIMARY नाम मे नहीं बदल सकते!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 #, fuzzy msgid "No index parts defined!" msgstr "सूचकांक हिस्सा परिभाषित नहीं है!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "विदेशी कुंजी बनाने में त्रुटि %1$s ( डेटा टाइप चेक करें)" @@ -4983,7 +5004,7 @@ msgid "Date and time" msgstr "एक नया इन्डेक्स बनाऐं" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5002,72 +5023,72 @@ msgstr "कुल" msgid "Max: %s%s" msgstr "अधिकतम: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "स्थिर (static) डॅटा" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL की व्याख्या" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL की व्याख्या को छोड़ जाना" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "php कोड के बिना" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "क्वरी भेजें" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP Code बनाओ" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "ताज़ा करना" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "रूपरेखा" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5075,67 +5096,67 @@ msgid "Edit inline" msgstr "संपादन मोड" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "रविवार" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "नियमित कार्य" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" डेटाबेस पर जायें;." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "अपना कंप्यूटर ब्राउज़ करें:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर की अपलोड डिरेक्टरी से चुने %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "खाली" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5151,7 +5172,7 @@ msgstr "प्रति मिनट" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "प्रति घंटा" @@ -5159,12 +5180,12 @@ msgstr "प्रति घंटा" msgid "per day" msgstr "प्रतिदिन" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "खोज करे:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5172,7 +5193,7 @@ msgstr "खोज करे:" msgid "Description" msgstr "वर्णन" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "इस मान का उपयोग करें" @@ -5213,22 +5234,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "नाम" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "लंबाई/अर्थ*" @@ -5239,7 +5260,7 @@ msgstr "लंबाई/अर्थ*" msgid "Attribute" msgstr "विशेषता" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5260,13 +5281,13 @@ msgstr "नया काँलम जोडें" msgid "Select a column." msgstr "दो कॉलम चुने" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "नया काँलम जोडें" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5274,7 +5295,7 @@ msgstr "नया काँलम जोडें" msgid "Attributes" msgstr "विशेषता" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5283,27 +5304,27 @@ msgstr "" "आपने PHP विन्यास में mbstring.func_overload को सक्षम किया है। यह विकल्प phpMyAdmin " "के साथ असंगत है और इसकी वजह से कुछ डाटा भ्रष्ट हो सकता है!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें।" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "सर्वर" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5311,20 +5332,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए।" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5938,7 +5959,7 @@ msgid "Compress on the fly" msgstr "जल्दी संक्षिप्त करें" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "विन्यास फाइल" @@ -6064,13 +6085,13 @@ msgstr "एक स्क्रिप्ट को चलने की अवध msgid "Maximum execution time" msgstr "अधिकतम निष्पादन समय" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "शर्तें जोडें" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "फ़ाइल के रूप में सहेजें" @@ -6080,7 +6101,7 @@ msgstr "फ़ाइल का चरित्र सेट" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "प्रारूप" @@ -6215,7 +6236,7 @@ msgid "Save on server" msgstr "सर्वर पर सेव करें" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "मौजूदा फ़ाइल अधिलेखित करें" @@ -6230,7 +6251,7 @@ msgid "Remember file name template" msgstr "टेम्पलेट फ़ाइल नाम याद रखें" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" @@ -6239,7 +6260,7 @@ msgid "Enclose table and column names with backquotes" msgstr "टेबल और फील्ड के नाम को backquotes से बंद करें" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL संगतता मोड" @@ -6273,7 +6294,7 @@ msgstr "phpMyAdmin विन्यास भंडारण टेबल ला #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s जोडें" @@ -6477,7 +6498,7 @@ msgid "Customize the navigation tree." msgstr "नेविगेशन फ्रेम को अनुकूलित करें" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "सर्वर" @@ -7535,7 +7556,7 @@ msgstr "http दायरे" msgid "Authentication method to use." msgstr "प्रमाणीकरण विधि उपयोग करने के लिए" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "प्रमाणीकरण पद्धति का उपयोग" @@ -8326,7 +8347,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "नवीनतम संस्करण के लिए जाँच" @@ -8336,10 +8357,10 @@ msgstr "नवीनतम संस्करण के लिए जाँच" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "phpMyAdmin के मुख्य पृष्ठ पर नवीनतम संस्करण के लिए जाँच की अनुमति" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "संस्करण की जांच" @@ -8492,25 +8513,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "दस्तावेज़ खोलें" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "प्रिय सूची भरी हुई है!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "टेबल %s को खाली किया गया है." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "द्रश्य %s रद्द किया गया है." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8525,12 +8546,12 @@ msgid "Position" msgstr "स्थिति" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "इवेंट प्रकार" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "सर्वर आईडी" @@ -8539,7 +8560,7 @@ msgid "Original position" msgstr "मूल स्थिति" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "सूचना" @@ -8553,16 +8574,16 @@ msgstr "" msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "कोइ डाटाबेस नहिं" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है।" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8570,26 +8591,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" msgstr[1] "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "रो" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "कुल" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "जरूरत से ज्यादा" @@ -8618,35 +8639,35 @@ msgstr "" msgid "Enable statistics" msgstr "आँकडे Enable करें" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "सर्वर चर और सेटिंग्स" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "कोइ डाटाबेस नहिं" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है." @@ -8703,7 +8724,7 @@ msgstr "%1$s टेबल को सफलतापूर्वक बदल द #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -8723,12 +8744,12 @@ msgstr "बदलें" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "सूची" @@ -8751,13 +8772,13 @@ msgstr "प्राथमिक" msgid "Distinct values" msgstr "अलग मूल्य ब्राउस करें " -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s विस्तार गायब है. कृपया अपने PHP विन्यास की जाँच करें।" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -8779,190 +8800,194 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "आयात प्लगइन्स नहीं लोड किये जा सके। कृपया अपनी संस्थापना जाँचें!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "पासवर्ड नहीं है" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "पासव्रड:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "फिर से लिखें" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "शब्दकूट हैशिंग" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "वर्तमान सर्वर से डेटाबेस का निर्यात" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "%s डेटाबेस से टेबल निर्यात" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "\"%s\" डेटाबेस से रो निर्यात" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "निर्यात प्रकार" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "फ़ाइल नाम टेम्पलेट:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "टेबल का नाम" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "बनाइये" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "फ़ाइल नाम टेम्पलेट:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr " %s टेबलें" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "अद्यतन" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "टेबल चुनिये" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "निर्यात प्रकार" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "जल्दी - कॉन्फ़िगर करने के लिए केवल न्यूनतम विकल्पों को प्रदर्शित करें" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "डाटाबेस" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "टेबल" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "प्रारूप:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "प्रारूप निर्दिष्ट विकल्प:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "एन्कोडिंग रूपांतरण:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "पंक्तियाँ:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "कुछ रो डंप" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "पंक्ति पर शुरू करने के लिए:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "सभी रोयों को डंप" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "उत्पादन:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "सर्वर पर %sनिर्देशिका में सहेजते" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "फ़ाइल नाम टेम्पलेट:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@सर्वर@ सर्वर का नाम बन जायेगा" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @डेटाबेस@ डेटाबेस का नाम बन जायेगा" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @टेबल@ टेबल का नाम बन जायेगा" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8970,115 +8995,115 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "भविष्य के निर्यात के लिए इस का उपयोग करें" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "फ़ाइल का चरित्र सेट:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "संपीड़न:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "फ़ाइल के रूप में उत्पादन देख" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "\"%s\" डेटाबेस से रो निर्यात" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export as %s" msgid "Export tables as separate files" msgstr "%s के रूप में निर्यात" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "उत्पादन को फाईल मे सेव करें" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "टेबल चुनिये" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "टेबल चुनिये" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "डेटाबेस नाम" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "User name" msgid "New table name" msgstr "नया पेज के नाम" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "कोलम के नाम" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "कोलम के नाम" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "निर्यात plugins लोड नहीं कर सका, अपने अधिष्ठापन को जांचें!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -9488,51 +9513,51 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s फाइल को सेव करने के लिए अपर्याप्त जगह पायी गयी है." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "%s फाइल पहले से ही सर्वर पर मौजूद है, फ़ाइल नाम परिवर्तन अधिलेखित या विकल्प की जाँच करें." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "वेब सर्वर के पास फ़ाइल %s को सेव करने की अनुमति नहीं है." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया।" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9540,47 +9565,47 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "डेटाबेस पर जायें" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s के लिए डेटा लापता" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "टेबल पर जायें" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "केवल संरचना" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "दृश्य पर जायें" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9591,88 +9616,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr " %s  कोलम पर इन्डेक्स बनाऐं" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "छिपाना" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "अथवा" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "इनसर्ट" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "और फिर" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9683,31 +9709,31 @@ msgstr "" msgid "Value" msgstr "मूल्य" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "केवल संरचना" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "संरचना और डाटा" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "केवल डाटा" @@ -9718,14 +9744,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "शर्तें जोडें" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9788,8 +9814,8 @@ msgstr "प्रक्रियाओं" msgid "Views:" msgstr "दृश्य" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "दिखाओ" @@ -9836,19 +9862,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "फ़ाइल के रूप में सहेजें" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9864,7 +9890,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9887,7 +9913,7 @@ msgstr "" msgid "Database operations" msgstr "डेटाबेस निर्यात विकल्प" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9992,13 +10018,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "दो कॉलम चुने" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -10255,8 +10281,8 @@ msgid "Rename database to" msgstr "डेटाबेस का नाम इसमें पुनर्नामकरण करें" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10304,184 +10330,184 @@ msgstr "(अकेले)" msgid "Move table to (database.table)" msgstr "टेबल को (database.table) में मूव करें" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "टेबल का नाम बदलें" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "टेबल की टिप्पणी" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "टेबल विकल्प" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "(database.table) में टेबल को कापी करें" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "नकल की टेबल पर स्विच करें" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "टेबल रख-रखाव" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "टेबल को चेक करें" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "टेबल को चेक करें" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "देफ्रागमेंट टेबल" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "टेबल %s को ताज़ा किया गया ।" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "टेबल को Flush करें (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "टेबल को अनुकूलित करें" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "टेबल को मरम्मत करें" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "टेबल या डेटा हटाएँ" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "टेबल को खाली करें" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "डेटाबेस को ______ छोड़ें" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "विश्लेषण" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "चेक" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "सुधारना" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "फिर से बनाना" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "मरम्मत" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "बंद" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "विभाजन रखरखाव" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "विभाजन %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "विभाजन हटायें" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "सम्बन्ध की अखंडता की जाँच करें:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "एक ही टेबल में स्थानांतरित नहीं कर सकते!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 #, fuzzy msgid "Can't copy table to same one!" msgstr "एक ही टेबल में प्रतिलिपि नहीं कर सकते!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s टेबल को %s में मूव कर दिया." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s टेबल को %s में कापी कर दिया." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s टेबल को %s में मूव कर दिया." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s टेबल को %s में कापी कर दिया." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "टेबल का नाम खाली है!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "इस प्रारूप के कोई विकल्प नहीं है" @@ -10508,18 +10534,18 @@ msgstr "रंग दिखाओ" msgid "Only show keys" msgstr "केवल कुंजी दिखाओ" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं।" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s मे स्वागत है" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10528,7 +10554,7 @@ msgstr "" "आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" "%2$s का उपयोग करें." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10539,7 +10565,7 @@ msgstr "" "अपने मेजबान विन्यास में, यूसर नाम और पासवर्ड की जाँच करें और इत्मीनान कर ले की ये " "उपयोगकरता नाम और पासवर्ड MySQL सर्वर के व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10566,15 +10592,15 @@ msgstr "उपयोक्तानाम:" msgid "Server Choice:" msgstr "सर्वर चुनिये" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10647,7 +10673,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10656,7 +10682,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "घटना" @@ -10664,8 +10690,8 @@ msgstr "घटना" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10767,7 +10793,7 @@ msgstr "काँलम नाम प्रथम रो में" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11334,7 +11360,7 @@ msgstr "लेख - सूची" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "अतिरिक्त" @@ -11690,18 +11716,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "कोई विवरण नहीं" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11709,41 +11735,41 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है।" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "मास्टर विन्यास" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11752,319 +11778,319 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "सभी डेटाबेस को दोहराना; उपेक्षा:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "सभी डेटाबेस को दोहराना; नकल:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "कृपया डेटाबेस चुने:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "असुरक्षित कनेक्शन" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "नियंत्रित बचाना:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "पूर्ण शुरू" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "पूर्ण विराम" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "रीसेट दास" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "केवल संरचना" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "केवल संरचना" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "मास्टर सर्वर को बदलें या रेकांफिगुरे करें" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "वर्तमान त्रुटि को छोड़" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "वर्तमान त्रुटि को छोड़" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "दास विन्यास" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "यूसर नेम" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "यूसर नेम" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "पासवर्ड" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Portrait" msgid "Port:" msgstr "चित्र" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "मास्टर की स्थिति" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "स्लाव की स्थिति" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "स्थिति" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "होस्ट" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "इस होस्ट" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "कोई भी यूसर" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "पाठ फ़ील्ड" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "होस्ट टेबल का उपयोग करें" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "फिर से लिखें" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "नया पासवर्ड उत्पन्न करें" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "प्रतिकृति स्थिति" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Thread %s को सफलता से मारा गया।" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "प्रतिकृति स्थिति" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "त्रुटि" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "अज्ञात त्रुटि" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "%s मास्टर से कनेक्ट करने मैं असमर्थ।" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "मास्टर की लोग स्तिथि पढने मैं असमर्थ, मास्टर पर संभव विशेषाधिकार समस्या।" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "मास्टर बदलने मैं असमर्थ" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s." msgstr "मास्टर सर्वर सफलतापूर्वक परिवर्तित %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, fuzzy, php-format @@ -12088,7 +12114,7 @@ msgstr "टेबल %s को रद्द किया गया है." msgid "Event %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12099,88 +12125,88 @@ msgstr "" msgid "Edit event" msgstr "सर्वर को संपादित करें" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "विवरण…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "इवेंट प्रकार " -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "बदलिये" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "स्टार्टअप" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "आखरी" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "पूरा इनसर्टस" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "अवैध टेबल नाम" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in Processing Request" @@ -12203,7 +12229,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12217,155 +12243,155 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "संपादन मोड" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Column %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "टेबल %s को रद्द किया गया है." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Column %s has been dropped." msgid "Routine %1$s has been modified." msgstr "टेबल %s को रद्द किया गया है." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "नियमित कार्य" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "सीधे संपर्क" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "अनुक्रमणिका जोड़" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "डेटाबेस को हटा दे" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "रिटर्न प्रकार" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "लंबाई/अर्थ*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "टेबल विकल्प" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "सुरक्षा" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "अवैध टेबल नाम" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12393,44 +12419,44 @@ msgstr "%1$s टेबल बना दिया गया है" msgid "Edit trigger" msgstr "एक नया सर्वर जोडें" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "ट्रिगर" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "समय" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "अवैध टेबल नाम" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "अवैध टेबल नाम" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "अवैध टेबल नाम" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "अवैध टेबल नाम" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12578,627 +12604,578 @@ msgstr "" msgid "Databases statistics" msgstr "डाटाबेसों के आँकडे" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "कोई प्रिविलेज नहीं।" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "ेेोीाेेGRANT के अतिरिक्त सभी इंजन शामिल।" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "डाटा पढने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "डेटा डालने और हटाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "डेटा को बदलने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "डेटा को हटाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "नया डेटाबेस और टेबल बनाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "डेटाबेस और टेबल को हटाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "सर्वर बन्द करने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "सभी यूसरओं प्रक्रियाओं को देखने की अनुमति" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "डेटा फ़ाइलों में आयात और निर्यात करने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "इस MySQL संस्करण में कोई प्रभाव नहीं है।" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "सूचक बनाने और हटाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "मौजूदा टेबल की संरचना में फेरबदल की अनुमति देता है।" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "डेटाबेस की पूरी सूची तक पहुंचा देता है।" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "सर्वर सेटिंग्स को पुन: लोड और सर्वर के कैश निस्तब्धता की अनुमति देता है।" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "नए दृश्य बनाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "घटना अनुसूचक के लिए घटना को स्थापित करने की अनुमति देता है" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping indexes." msgid "Allows creating and dropping triggers." msgstr "सूचक बनाने और हटाने की अनुमति देता है" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "नया नियमित कार्यक्रम बनाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "यूसर खातों बनाने, गिराना और नाम बदलने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "No" -msgctxt "None privileges" -msgid "None" -msgstr "नहीं" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "के लिए" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "के लिए" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "संसाधन सीमा" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है।" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "नियमित कार्य" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "केवल टेबल के प्रिविलेज" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "एडमिनिस्ट्रेशन" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "वैश्विक प्रिविलेज" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "वैश्विक" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "केवल डाटाबेस के प्रिविलेज" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "नया टेबल बनाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "टेबल को हटाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "कुकी प्रमाणीकरण" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "signon प्रमाणीकरण" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "कुकी प्रमाणीकरण" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "प्रवेश जानकारी" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "यूसर नेम" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "लॉग नाम" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "प्रमाणीकरण" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "शब्दकूट हैशिंग" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया।" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "आपने %s के privileges वापस ले लिया." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "नया प्रयोक्ता जोड़ें" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "यूसर के लिए डेटाबेस" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान।" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान।" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें।" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "द्रश्य %s रद्द दिया गया है." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "अनुदान" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "कोई" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "वैश्विक" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "वाइल्डकार्ड" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "वापस लो" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "सर्वर को संपादित करें" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… पुराने रखना।" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… पुराने यूसर को टेबल से हटाना।" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "केवल कोलम के प्रिविलेज" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "चयनित यूसर हटायें" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा।" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "विशेषाधिकार पुनः लोड" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है।" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "उपयोगकर्ता %s पहले से मौजूद है!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "प्रिविलेज" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "यूजर" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "यूसर" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "यूसर सिंहावलोकन" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13207,7 +13184,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13216,11 +13193,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया।" @@ -13524,12 +13501,12 @@ msgstr "आदेश" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13559,12 +13536,12 @@ msgstr "प्रति मिनट" msgid "per second:" msgstr "प्रति सेकंड" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "रो आँकड़े" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13596,35 +13573,35 @@ msgstr "खुला टेबल शो" msgid "Related links:" msgstr "पसंबंधित लिंक" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया।" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13632,78 +13609,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं।" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13711,7 +13688,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13719,42 +13696,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13762,33 +13739,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13797,244 +13774,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14042,99 +14019,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14142,18 +14119,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14161,13 +14138,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ट्रैकिंग सक्रिय नहीं है." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14204,49 +14181,49 @@ msgstr "डेटाबेस सर्वर" msgid "Table level tabs" msgstr "टेबल टिप्पणी:" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "दृश्य" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "नया प्रयोक्ता जोड़ें" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "कोई प्रिविलेज नहीं" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "कोलम नाम" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Show versions" msgid "Server-level tabs" msgstr "संस्करण दिखाएँ" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "डेटाबेस सर्वर" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14372,7 +14349,7 @@ msgstr "डाटाबेस %s में SQL प्रशन चलाइय msgid "Run SQL query/queries on table %s" msgstr "डाटाबेस %s में SQL प्रशन चलाइये" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "स्पष्ट" @@ -14465,123 +14442,123 @@ msgstr "निष्क्रिय करे" msgid "Version" msgstr "संस्करण" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "बनाया" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "अद्यतन" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "संस्करण बनाएँ" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "संरचना क्षणचित्र" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "सक्रिय" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "निष्क्रिय" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "ट्रैकिंग कि स्थिति" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "कोइ डाटाबेस नहिं" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%s दिखाएँ तारीख %s से %s तक, उपयोक्ता %s %s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL दुम्प ( फाइल डाउनलोड )" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL ढेर लगाना" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "यह विकल्प आपके टेबल और डेटा को बदल देगा." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL अमल" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "%s के रूप में निर्यात" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "डेटा हेरफेर कथन" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "डेटा परिभाषा कथन" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "तिथि" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "यूसर नाम" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "संस्करण %s क्षणचित्र (SQL कोड)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "कोई नहीं" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "डेटा परिभाषा पर नज़र रखना" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "डेटा आपरेशन पर नज़र रखना" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14589,67 +14566,67 @@ msgstr "" "आप दुम्प को क्रियान्वित कर सकते हैं एक अस्थायी डेटाबेस का उपयोग करें. सुनिश्चित करें कि आप " "ऐसा करने के लिए विशेषाधिकार हैं कृपया." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "इन दो लाइन को टिप्पणी बना दें अगर आपको इनकी आवश्यकता नहीं है।" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL कथन निर्यात. कृपया दुम्प को या तो कॉपी करें य फिर क्रियान्वित करें।" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "टेबल `%s` की ट्रैकिंग रिपोर्ट" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "%s संस्करण बनायें %s.%s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "संस्करण %s बन चूका है, ट्रैकिंग %s.%s के लिए सक्रिय" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "लापता टेबलएं" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "टेबलओं को ट्रैक करें" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "ट्रैक की गयी टेबलएं" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "पिछला संस्करण" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "ट्रैकिंग डेटा हटाएँ" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "संस्करण" @@ -14659,7 +14636,7 @@ msgstr "संस्करण" msgid "Manage your settings" msgstr "सेटिंग्स प्रबंधक" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14685,7 +14662,7 @@ msgstr "ज़िप संग्रह में त्रुटि:" msgid "No files found inside ZIP archive!" msgstr "ज़िप संग्रह के अंदर कोई फाइल नहीं मिली!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14695,83 +14672,83 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "सेटिंग्स को बचा नहीं सकते, प्रस्तुत फार्म में त्रुटि है" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "विन्यास आयात नहीं किया जा सका" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "विन्यास में कुछ क्षेत्रों के लिए ग़लत डेटा है।" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "क्या आप शेष सेटिंग्स आयात करना चाहते हैं?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "@तिथि@: पर बचाया" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "फ़ाइल से आयात" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "ब्राउज़र के भंडारण से आयात" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "सेटिंग्स को अपने ब्राउजर के स्थानीय भंडारण से आयात किया जाएगा।" -#: prefs_manage.php:282 +#: prefs_manage.php:271 #, fuzzy msgid "You have no saved settings!" msgstr "आपके पास कोई बचाई गयीसेटिंग नहीं हैं!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "यह सुविधा आपके ब्राउज़र द्वारा समर्थित नहीं है" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "मौजूदा विन्यास के साथ विलय" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "फ़ाइल के रूप में सहेजें" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "ब्राउज़र के भंडारण में बचाएं" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "सेटिंग्स को आपके ब्राउजर के स्थानीय भंडारण में सहेज लिया जाएगा।" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "मौजूदा सेटिंग्स अधिलेखित हो जाएगी!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "आप अपने सभी सेटिंग्स रीसेट और उन मूलभूत मूल्यों को पुनर्स्थापित कर सकते हैं।" @@ -14779,45 +14756,45 @@ msgstr "आप अपने सभी सेटिंग्स रीसेट msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s को सफलता से मारा गया।" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "डाउनलोड" @@ -14825,101 +14802,100 @@ msgstr "डाउनलोड" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "विन्यास लोड या सहेज नहीं सकते" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "असुरक्षित कनेक्शन" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." msgstr "विन्यास भंडारण" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration storage" msgid "Configuration not saved!" msgstr "विन्यास भंडारण" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "सिंहावलोकन" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "छुपे हुए संदेशों को दिखाना" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "नए सर्वर" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "डिफ़ॉल्ट भाषा" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "यूसर का चयन करने दे" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- कोई नहीं -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "मूलभूत सर्वर" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "लाइन के अंत" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "प्रदर्शन" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "लोड" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin मुखपृष्ठ" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "दान" @@ -14955,28 +14931,28 @@ msgstr "त्रुटियों उपेक्षा" msgid "Show form" msgstr "फार्म दिखाएँ" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "सर्वर से अवैध संस्करण स्ट्रिंग प्राप्त हुई" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "संस्करण स्ट्रिंग को पारस नहीं किया जा सकता" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "कोई नए स्थिर संस्करण उपलब्ध नहीं है" @@ -14991,12 +14967,12 @@ msgstr "कोइ डाटाबेस नहिं" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' डेटाबेस मौजूद नहीं है।" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "टेबल %s पहले से मौजूद है!" @@ -15009,36 +14985,36 @@ msgstr "टेबल डंप दृश्य" msgid "Invalid table name" msgstr "अवैध टेबल नाम" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "कोई पंक्ति चयनित नहीं" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "ट्रैकिंग सक्रिय है" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The privileges were reloaded successfully." msgid "Tracking versions deleted successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है।" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "कोई पंक्ति चयनित नहीं" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL कथन चलाएँ।" @@ -15256,7 +15232,7 @@ msgid "List of available transformations and their options" msgstr "उपलब्ध परिवर्तन" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15278,7 +15254,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15822,17 +15798,17 @@ msgid "Size" msgstr "आकार" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "रचना" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "पिछला नवीनीकरण" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "पिछली जाँच" @@ -15867,6 +15843,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "ट्रैकिंग डेटा हटाएँ" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15889,10 +15871,47 @@ msgstr "इन टेबल के लिये विशेषाधिका msgid "Add privileges on the following table:" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "No" +msgctxt "None privileges" +msgid "None" +msgstr "नहीं" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "चयनित यूसर हटायें" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा।" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "केवल कोलम के प्रिविलेज" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "संसाधन सीमा" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "द्विआधारी लॉग देखने के लिए चयनित करें" @@ -15927,7 +15946,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16129,7 +16148,7 @@ msgstr "उपयोगकर्ता :" msgid "Comment:" msgstr "टिप्पणी" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16169,28 +16188,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "विदेशी कुंजी बाधा" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "शर्तें जोडें" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "आंतरिक संबंध" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "आंतरिक संबंध" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "एक आंतरिक संबंध आवश्यक नहीं है जब एक विदेशी कुंजी संबंध मौजूद है." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16256,13 +16275,13 @@ msgstr "मूल स्थिति" msgid "Replaced string" msgstr "पसंबंधित लिंक" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "दोहराया" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" @@ -16350,7 +16369,7 @@ msgid "at beginning of table" msgstr "टेबल के शुरू में" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16386,30 +16405,30 @@ msgstr "रौ की लंबाई" msgid "Index length" msgstr "रौ की लंबाई" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "विभाजित" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "विभाजन हटायें" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "छपाई द्रश्य." -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "स्थान उपयोग" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "वास्तविक" @@ -16440,33 +16459,33 @@ msgstr "टेबल संरचना का प्रस्ताव" msgid "Track view" msgstr "टेबलओं को ट्रैक करें" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "पंक्ति आँकड़े" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "स्थिर" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "गतिशील" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "विभाजित" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "रौ की लंबाई" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "रौ का आकार" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16481,50 +16500,50 @@ msgstr "टेबल %s को रद्द किया गया है." msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "अधिक प्रसंग पाएं!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "MIME परकआर जो उपलब्ध हैं" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "उपलब्ध परिवर्तन" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "उपलब्ध परिवर्तन" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "वर्णन" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "ट्रैकिंग रिपोर्ट" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "आपके पास यहाँ उपस्थित होने के अधिकार नहीं हैं!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "प्रोफाइल अपडेट कर दिया ।" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16599,7 +16618,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16624,19 +16643,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16695,29 +16714,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "%1$s टेबल बना दिया गया है" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "टेबल नाम टेम्पलेट" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "टेबल के शुरू में" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16734,10 +16753,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "टेबल के शुरू में" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16782,7 +16807,7 @@ msgstr "" msgid "strict error" msgstr "त्रुटियों को इकट्ठा करें" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17992,6 +18017,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0 पर सेट है" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "कुकी प्रमाणीकरण" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/hr.po b/po/hr.po index da83088305..d20ed89690 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -28,34 +28,34 @@ msgstr "" "Datoteka %s nije dostupnana na ovom sistemu, molimo posjetite www.phpmyadmin." "net za više informacija." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 #, fuzzy #| msgid "Click to sort" msgid "Click to sort." msgstr "Kliknite za sortiranje" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1$s - %2$s." msgstr "Prikazivanje redaka" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Komentar baze podataka" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Komentari tablice:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -67,13 +67,13 @@ msgstr "Komentari tablice:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -84,9 +84,9 @@ msgstr "Komentari tablice:" msgid "Column" msgstr "Stupac" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -97,12 +97,12 @@ msgstr "Stupac" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -114,9 +114,9 @@ msgstr "Stupac" msgid "Type" msgstr "Vrsta" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -127,15 +127,15 @@ msgstr "Vrsta" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -146,14 +146,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Zadano" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -163,7 +163,7 @@ msgstr "Zadano" msgid "Links to" msgstr "Povezano s" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -177,19 +177,19 @@ msgstr "Povezano s" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -197,13 +197,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -211,17 +211,17 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -230,13 +230,13 @@ msgstr "Ne" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -248,15 +248,15 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži ispis (shemu) baze podataka" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -265,8 +265,8 @@ msgid "Tables" msgstr "Tablice" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -274,10 +274,10 @@ msgstr "Tablice" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -290,30 +290,30 @@ msgstr "Strukturu" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Podaci" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Odaberi sve" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %1$s has been renamed to %2$s." msgid "Database %1$s has been renamed to %2$s." msgstr "Baza podataka %1$s preimenovana je u %2$s" -#: db_operations.php:149 +#: db_operations.php:150 #, fuzzy, php-format #| msgid "Database %s has been copied to %s." msgid "Database %1$s has been copied to %2$s." @@ -330,42 +330,42 @@ msgstr "" "Konfiguracija za pohranu phpMyAdmin-a je deaktivirana. Kako biste saznali " "razloge, kliknite %sovdje%s." -#: db_qbe.php:125 +#: db_qbe.php:126 #, 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" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Prebaci se na %svizualnu izradu%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Pristup odbijen!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy msgid "Tracking data deleted successfully." msgstr "Replikacija" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Nema odabrane baze podataka." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Log baze podataka" @@ -401,162 +401,162 @@ msgstr "Pogrešna vrsta!" msgid "Bad parameters!" msgstr "Pogrešni parametri!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrijednost stupca \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Iskoristi OpenStreetMaps kao osnovni sloj" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 #, fuzzy msgid "SRID:" msgstr "SRID" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, fuzzy, php-format #| msgid "Geometry" msgid "Geometry %d:" msgstr "Geometrija" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 #, fuzzy #| msgid "Point" msgid "Point:" msgstr "Točka" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Točka %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Dodaj točku" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Linestring" msgid "Linestring %d:" msgstr "Linija teksta" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring:" msgstr "Vanjski Prsten" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, fuzzy, php-format #| msgid "Inner Ring" msgid "Inner ring %d:" msgstr "Unutarnji Prsten" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Dodaj novu liniju niza znakova" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Dodaj unutarnji prsten" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, fuzzy, php-format #| msgid "Polygon" msgid "Polygon %d:" msgstr "Poligon" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Dodaj poligon" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Dodaj geometriju" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Kreni" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Izlaz" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 #, fuzzy #| msgid "Access denied!" msgid "Succeeded" msgstr "Pristup odbijen!" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "Complete inserts" msgid "Incomplete params" msgstr "Dovrši umetanja" -#: import.php:195 +#: import.php:196 #, fuzzy, php-format #| msgid "" #| "You probably tried to upload too large file. Please refer to " @@ -568,15 +568,15 @@ msgstr "" "Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " "%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Favorit je izbrisan." -#: import.php:489 +#: import.php:486 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 " @@ -586,17 +586,17 @@ msgstr "" "veličina datoteke prelazi najveću dopuštenu veličinu od strane vaše PHP " "konfiguracije. Pogledajte [doc@faq1-16]ČPP 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "Izrađen je favorit %s" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -605,7 +605,7 @@ msgstr[0] "Uvoz je uspješno dovršen. Izvršeno upita: %d ." msgstr[1] "Uvoz je uspješno dovršen. Izvršeno upita: %d ." msgstr[2] "Uvoz je uspješno dovršen. Izvršeno upita: %d ." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -617,7 +617,7 @@ msgstr "" "Vrijeme za skriptu je isteklo. Ako želite završiti uvoz, ponovo podnesite " "istu datoteku i uvoz će nastaviti." -#: import.php:632 +#: import.php:629 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." @@ -626,7 +626,7 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti završiti ovaj uvoz sve dok ne " "povećate vremenska ograničenja unutar php." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." @@ -634,18 +634,18 @@ msgstr "\"DROP DATABASE\" izjave su onemogućene." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Nazad" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin dokumentacija" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -653,52 +653,52 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General relation features" msgid "General settings" msgstr "Opće osobine relacija" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Promijeni lozinku" -#: index.php:213 +#: index.php:214 #, fuzzy #| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "MySQL uspoređivanje veza" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "General relation features" msgid "Appearance settings" msgstr "Opće osobine relacija" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 #, fuzzy #| msgid "General relation features" msgid "More settings" msgstr "Opće osobine relacija" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Database for user" msgid "Database server" msgstr "Baza podataka za korisnika" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Poslužitelj:" -#: index.php:295 +#: index.php:296 #, fuzzy msgid "Server type:" msgstr "ID poslužitelja" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -706,83 +706,83 @@ msgstr "ID poslužitelja" msgid "Server version:" msgstr "Verzija poslužitelja" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Protocol version" msgid "Protocol version:" msgstr "Verzija protokola" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Korisnik" -#: index.php:314 +#: index.php:315 #, fuzzy msgid "Server charset:" msgstr "Odabir poslužitelja" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Web poslužitelj" -#: index.php:338 +#: index.php:339 #, fuzzy msgid "Database client version:" msgstr "MySQL verzija klijenta" -#: index.php:342 +#: index.php:343 #, fuzzy #| msgid "PHP extension" msgid "PHP extension:" msgstr "PHP ekstenzija" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "PHP verzija" -#: index.php:377 +#: index.php:378 #, fuzzy #| msgid "Version information" msgid "Version information:" msgstr "Podaci o verziji" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacija" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Službena stranica programa phpMyAdmin" -#: index.php:402 +#: index.php:403 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributi" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Bez izmjena" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licenca" -#: index.php:443 +#: index.php:444 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 " @@ -792,13 +792,13 @@ msgstr "" "tablicu znakova. Bez proširenja mbstring, phpMyAdmin nije u mogućnosti " "pravilno razdjeljivati naredbe i može doći do neočekivanih rezultata." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -806,21 +806,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -828,7 +828,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -840,12 +840,12 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -854,7 +854,7 @@ msgstr "" "Verzija %s vaše PHP MySQL biblioteke razlikuje se oda vaše verzije %s MySQL " "poslužitelja. Ovo bi moglo prouzrokovati nepredviđeno ponašanje." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1035,7 +1035,7 @@ msgid "Save & close" msgstr "Spremi kao datoteku" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Povrat" @@ -1077,7 +1077,7 @@ msgstr "Dodaj indeks" msgid "Edit index" msgstr "Uredi indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1113,10 +1113,10 @@ msgstr "Dodaj %s polja" msgid "You have to add at least one column." msgstr "Morate dodati najmanje jedno polje." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1132,7 +1132,7 @@ msgstr "unutar upita" msgid "Matched rows:" msgstr "Vezane stranice" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1153,13 +1153,13 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" @@ -1167,8 +1167,8 @@ msgstr "Lozinke se ne podudaraju!" msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Zatvori" @@ -1196,19 +1196,19 @@ msgstr "Redak je izbrisan" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Ostalo" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1332,40 +1332,40 @@ msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "kB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1385,7 +1385,7 @@ msgstr "Perzijski" msgid "Traffic" msgstr "Promet" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" @@ -1403,16 +1403,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "bez kompresije" @@ -1613,20 +1613,20 @@ msgstr "Analiziraj" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Stanje" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Vrijeme" @@ -1724,10 +1724,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Uvoz" @@ -1814,7 +1814,7 @@ msgstr "Pogrešni parametri!" msgid "Cancel" msgstr "Odustani" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" @@ -1863,8 +1863,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nema odabrane baze podataka." @@ -1912,7 +1912,7 @@ msgstr "Kopiraj bazu podataka u" msgid "Changing charset" msgstr "Tablica znakova" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1951,75 +1951,80 @@ msgstr "Pretraživanje" msgid "Deleting" msgstr "Brisanje %s" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Obriši rezultate pretrage za %s tablicu?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Izvoz" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Vrijednosti za stupac %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Vrijednosti za novi stupac" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Unesite svaku vrijednost u drugo polje" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -2027,108 +2032,108 @@ msgstr "SQL upit" msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Izbriši" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Varijabla" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nema odabranih redova" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Traži u bazi podataka" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Slobodna memorija" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primarni ključ je dodan na %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Izvještaj o praćenju" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2136,544 +2141,544 @@ msgstr "" msgid "End of step" msgstr "Pri završetku tablice" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy msgid "Done" msgstr "Podaci" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Spremi" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Traži" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazivi stupaca" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazivi stupaca" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy msgid "Maximum value:" msgstr "Nema baza podataka" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Ako zadržite pokazivača miša iznad točke biti će prikazan natpis." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/Izbriši stupce polja" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Odaberite dva različita stupca" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Veličina pokazatelja podataka" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Točka" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linija teksta" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Unutarnji Prsten" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Vanjski Prsten" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj stranice:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Odaberite tablice" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Odaberite tablice" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Slobodne stranice" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Odaberite tablice" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Jedinica" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Odaberite tablicu za uređivanje" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Netočan broj porta" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Uredi ili izvozi relacijske šeme" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Dodaj opciju stupcu " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Podnesi" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Izvorni položaj" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Odustani" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Uvezi datoteke" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Najveća veličina datoteke zapisnika" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Odaberite tablice" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Ispiši" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Nema baza podataka" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeksi" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u lijevom okviru" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2683,123 +2688,123 @@ msgstr "" "Najnovija verzija je %s objavljena na %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "ID poslužitelja" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "ID poslužitelja" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opće osobine relacija" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tablice" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriraj" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ovaj upit ponovno prikaži ovdje" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Želite li zaista " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tablice" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2808,36 +2813,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add prefix" msgid "Add table prefix" msgstr "Dodaj prefiks" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zamijeni prefiks tablice" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tablicu sa prefiksom" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2845,96 +2870,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Veljača" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Svi" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Rujan" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Studeno" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2942,78 +2967,78 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Pro" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Srijeda" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "ČEtvrtak" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3021,86 +3046,86 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3109,139 +3134,139 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "bez kompresije" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Sat" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "po sekundi" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Upotrijebi tekstualno polje" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Netočan broj porta" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Netočan broj porta" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Netočan broj porta" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Netočan broj porta" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Netočan broj porta" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Netočan broj porta" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Netočan broj porta" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Netočan broj porta" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Netočan broj porta" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Netočan broj porta" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Netočan broj porta" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Netočan broj porta" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Netočan broj porta" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Netočan broj porta" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Pogreška" @@ -3303,20 +3328,20 @@ msgid "Charset" msgstr "Tablica znakova" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Uspoređivanje" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binarno" @@ -3513,7 +3538,7 @@ msgid "Czech-Slovak" msgstr "Češki ili Slovački" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nepoznato" @@ -3566,7 +3591,7 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3574,24 +3599,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Izbriši relaciju" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL upit" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3600,27 +3625,27 @@ msgid "" msgstr "" "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Poslužitelj ne odgovara" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalji…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Rutine" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezivanje kontrolnih korisnika na način kako je definirano u vašoj " @@ -3730,67 +3755,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit nad bazom podataka %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Podnesi upit" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Traži" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Izbriši relaciju" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Izbriši relaciju" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Prikazivanje oznake" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Izbriši relaciju" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "najmanje jedna riječ" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "sve riječi" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "točan izraz" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "kao regularan izraz" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretraživanja za \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3798,7 +3823,7 @@ msgstr[0] "Ukupno: %s poklapanje" msgstr[1] "Ukupno: %s poklapanja" msgstr[2] "Ukupno: %s poklapanja" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3806,48 +3831,43 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Pretraživanje" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Obriši rezultate pretrage za %s tablicu?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Traži u bazi podataka" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Riječi ili vrijednost za pretraživanje (zamjenski znak: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Traži:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Riječi su razdvojene znakom razmaka (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Unutar tablica:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Ukloni sav odabir" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Unutar polja:" @@ -3873,16 +3893,16 @@ msgstr "Datoteke" msgid "Search this table" msgstr "Traži u bazi podataka" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Na vrh stranice" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3891,8 +3911,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodni" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3901,8 +3921,8 @@ msgctxt "Next page" msgid "Next" msgstr "Sljedeće" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3913,7 +3933,7 @@ msgstr "Završetak" msgid "All" msgstr "Sve" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3924,8 +3944,8 @@ msgstr "Broj polja" msgid "Sort by key" msgstr "Presloži po ključu" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3947,10 +3967,10 @@ msgstr "Presloži po ključu" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opcije" @@ -3998,35 +4018,35 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Redak je izbrisan" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Eliminiraj" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL upit uspješno je izvršen" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4034,76 +4054,76 @@ msgid "" msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Prikazivanje redaka" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ukupno" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sek" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "S odabirom:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Označi sve" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Veza nije pronađena" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4111,7 +4131,7 @@ msgid "None" msgstr "bez kompresije" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4119,29 +4139,29 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Previše poruka o greškama, neke nisu prikazane." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Uvoz" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Rad s automatskim povratom" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina " "datoteke) u datoteci php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4149,37 +4169,37 @@ msgstr "" "Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), " "određenu u HTML obliku." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Učitana datoteka bila je djelomično učitana." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Nedostaje mapa privremene pohrane." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Datoteku nije moguće pročitati" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4187,17 +4207,17 @@ msgstr "" "Pogreška tijekom premještanja učitane datoteke. Pogledajte [doc@faq1-11]ČPP " "1.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Greška prilikom premještanja učitane datoteke." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Cannot read uploaded file." msgstr "Greška prilikom premještanja učitane datoteke." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4207,30 +4227,30 @@ msgstr "" "Takva podrška još nije implementirana ili je onemogućena u vašoj " "konfiguraciji." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Podaci o verziji" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Prikaz ispisa" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4241,20 +4261,20 @@ msgid "No index defined!" msgstr "Nema definiranog indeksa!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4264,59 +4284,59 @@ msgstr "Indeksi" msgid "Action" msgstr "Aktivnost" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Naziv ključa" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Najvažnije" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primarni ključ je odbačen." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Index %s je odbačen." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Ispusti" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4324,19 +4344,19 @@ msgid "" msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Broj stranice:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Jezik" @@ -4360,11 +4380,11 @@ msgstr "Poslužitelj" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4383,14 +4403,15 @@ msgid "View" msgstr "Prikaz" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4399,8 +4420,8 @@ msgid "Table" msgstr "Tablica" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4408,45 +4429,45 @@ msgstr "Tablica" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Traži" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Umetni" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Praćenje" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4462,16 +4483,16 @@ msgstr "Okidači" msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Upit" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4479,22 +4500,22 @@ msgstr "Rutine" msgid "Events" msgstr "Događaji" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Kreator" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Baze podataka" @@ -4505,39 +4526,39 @@ msgid "User accounts" msgstr "Korisnik" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binarni zapisnik" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Varijable" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Pogoni" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Dodatci" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." @@ -4545,7 +4566,7 @@ msgid_plural "%1$d rows affected." msgstr[0] "Zahvaćeno redaka: %1$d." msgstr[1] "Zahvaćeno redaka: %1$d." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." @@ -4553,7 +4574,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Izbrisano redaka: %1$d." msgstr[1] "Izbrisano redaka: %1$d." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." @@ -4619,29 +4640,29 @@ msgstr "Varijable" msgid "Favorites" msgstr "Varijable" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Korisnik %s već postoji!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4705,7 +4726,7 @@ msgstr "Prikaži otvorene tablice" msgid "Show slave hosts" msgstr "Prikaži potčinjena računala" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" @@ -4764,87 +4785,87 @@ msgstr[0] "u upotrebi" msgstr[1] "u upotrebi" msgstr[2] "u upotrebi" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je raspoloživ na ovom MySQL poslužitelju." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogućen za ovaj MySQL poslužitelj." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Prikaži stanje potčinjenog" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Traži u bazi podataka" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nije pronađena!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Neispravna baza podataka" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Neispravan naziv tablice" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s preimenovana je u %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4852,19 +4873,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Naziv primarnog ključa mora biti \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Preimenovanje indeksa u PRIMARY nije moguće!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nema definiranih dijelova indeksa!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5139,7 +5160,7 @@ msgid "Date and time" msgstr "Izradi novi indeks" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5158,72 +5179,72 @@ msgstr "Najveći broj datoteka zapisnika" msgid "Max: %s%s" msgstr "Najv: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statički podatci" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez PHP koda" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Podnesi upit" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Izradi PHP kod" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Osvježi" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Izrada profila" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5231,67 +5252,67 @@ msgid "Edit inline" msgstr "Prikaz ispisa" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekunda" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Pretraži računalo:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy msgid "There are no files to upload!" msgstr "Provjeri tablicu" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5307,7 +5328,7 @@ msgstr "po minuti" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "po satu" @@ -5315,12 +5336,12 @@ msgstr "po satu" msgid "per day" msgstr "po danu" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Pretraživanje:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5328,7 +5349,7 @@ msgstr "Pretraživanje:" msgid "Description" msgstr "Opis" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Upotrijebi ovu vrijednost" @@ -5369,22 +5390,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Naziv" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Duljina/Vrijednosti" @@ -5395,7 +5416,7 @@ msgstr "Duljina/Vrijednosti" msgid "Attribute" msgstr "Atributi" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5418,13 +5439,13 @@ msgstr "Dodaj %s polja" msgid "Select a column." msgstr "Dodaj/Izbriši stupce polja" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "Dodaj %s polja" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5432,7 +5453,7 @@ msgstr "Dodaj %s polja" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5442,30 +5463,30 @@ msgstr "" "opcija nije kompatibilna s programom phpMyAdmin i može prouzrokovati " "oštećivanje nekih podataka!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Poslužitelj" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5473,20 +5494,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6058,7 +6079,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfiguracijska datoteka" @@ -6173,13 +6194,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Izjave" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Spremi kao datoteku" @@ -6190,7 +6211,7 @@ msgstr "Tablica znakova za datoteku:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Oblikovanje" @@ -6336,7 +6357,7 @@ msgid "Save on server" msgstr "Spremi na server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" @@ -6352,7 +6373,7 @@ msgid "Remember file name template" msgstr "Predložak naziva datoteka" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" @@ -6363,7 +6384,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" @@ -6395,7 +6416,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -6584,7 +6605,7 @@ msgid "Customize the navigation tree." msgstr "Postavi glavni okvir" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Poslužitelji" @@ -7529,7 +7550,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Replikacija" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tip autentifikacije" @@ -8220,7 +8241,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8228,10 +8249,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8379,25 +8400,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Otvori tekst dokumenta" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tablica %s je očišćena." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Index %s je ispušten" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8412,12 +8433,12 @@ msgid "Position" msgstr "Položaj" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Vrsta događaja" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID poslužitelja" @@ -8426,7 +8447,7 @@ msgid "Original position" msgstr "Izvorni položaj" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Podaci" @@ -8440,16 +8461,16 @@ msgstr "Sreži prikazane rezultate" msgid "Show Full Queries" msgstr "Prikaži pune upite" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nema baza podataka" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -8457,26 +8478,26 @@ msgstr[0] "Baza podataka %1$d uspješno je odbačena." msgstr[1] "Baza podataka %1$d uspješno je odbačena." msgstr[2] "Baza podataka %1$d uspješno je odbačena." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Redaka" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Ukupno" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Prepunjenje" @@ -8507,35 +8528,35 @@ msgstr "" msgid "Enable statistics" msgstr "Omogući statistike" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Varijable i postavke poslužitelja" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Nema baza podataka" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tablica %1$s uspješno je izmijenjena." @@ -8592,7 +8613,7 @@ msgstr "Odabrani korisnici uspješno su izbrisani." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8612,12 +8633,12 @@ msgstr "Promijeni" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8640,13 +8661,13 @@ msgstr "Puni tekst" msgid "Distinct values" msgstr "Pretraži prepoznatljive vrijednosti" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez izmjena" @@ -8668,203 +8689,207 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Bez lozinke" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Lozinka:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Ponovite" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Izrada presjeka lozinke" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Dopušta zaključavanje tablica u trenutnoj grani." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Izradi novu tablicu u bazi podataka %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Izradi novu tablicu u bazi podataka %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Vrsta izvoza" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Predložak naziva datoteka" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Naziv tablice" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Izradi" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Predložak naziva datoteka" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s tablica" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Ažurirano" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Odaberite tablice" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Vrsta izvoza" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 #, fuzzy msgid "Custom - display all possible options" msgstr "Opcije izvoza baze podataka" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Baze podataka" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tablice" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Oblikovanje" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Opcije preoblikovanja" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy msgid "Encoding Conversion:" msgstr "MySQL verzija klijenta" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Redaka" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Spremi na poslužitelju u mapi %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Predložak naziva datoteka" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8879,124 +8904,124 @@ msgstr "" "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " "preoblikovanja: \"%3$s\". Ostatak teksta bit će zadržan u izvornom obliku." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Tablica znakova za datoteku:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Kompresija" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zipano\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzipano\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Spremi kao datoteku" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Izradi novu tablicu u bazi podataka %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "vodoravno (okrenuta zaglavlja)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Spremi kao datoteku" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Odaberite tablice" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Odaberite tablice" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "naziv baze podataka" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Nema tablica" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Nazivi stupaca" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Nazivi stupaca" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Izradi relaciju" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Izradi relaciju" @@ -9463,13 +9488,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nema dovoljno prostora za spremanje datoteke %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9477,76 +9502,76 @@ msgstr "" "Datoteka %s već postoji na poslužitelju. Promijenite naziv ili označite " "opciju za prepisivanje." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Uredi postavke za %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo strukturu" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Vrsta izvoza" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9558,87 +9583,88 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Izradi indeks  %s stupaca" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcija" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "" " Zbog svoje duljine,
uređivanje ovog polja možda neće biti moguće " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ili" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Umetni" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Ponovno pokreni umetanje s %s redaka" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "i potom" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9648,8 +9674,8 @@ msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9660,31 +9686,31 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Samo strukturu" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Strukturu i podatke" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Samo podatke" @@ -9695,14 +9721,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Dodaj prisile" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9763,8 +9789,8 @@ msgstr "Postupci" msgid "Views:" msgstr "Prikaz" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Prikaži" @@ -9812,19 +9838,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Spremi kao datoteku" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9840,7 +9866,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9865,7 +9891,7 @@ msgstr "Novo" msgid "Database operations" msgstr "Opcije izvoza baze podataka" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9986,13 +10012,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -10248,8 +10274,8 @@ msgid "Rename database to" msgstr "Preimenuj bazu podataka u" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10297,83 +10323,83 @@ msgstr "(pojedinačno)" msgid "Move table to (database.table)" msgstr "Premjesti tablicu u (bazapodataka.tablica)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Preimenuj tablicu u" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentari tablice" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opcije tablice" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Pogon pohrane" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopiraj tablicu u (bazapodataka.tablica)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Prebaci se na kopiranu tablicu" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Održavanje tablice" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Provjeri tablicu" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Provjeri tablicu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentiraj tablicu" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tablica %s je ispražnjena." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Isprazni tablicu (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Popravi tablicu" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10381,104 +10407,104 @@ msgstr "Popravi tablicu" msgid "Delete data or table" msgstr "Izbacivanje podataka za tablicu" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Isprazni tablicu (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nema baza podataka" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analiziraj" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Provjeri" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimiziraj" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Ponovno izgradi" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Popravi" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Zatvori" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Održavanje particije" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Ukloni particioniranje" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Premještanje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Kopiranje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tablica %s premještena je u %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tablica %s kopirana je u %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s premještena je u %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s kopirana je u %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Naziv tablice je prazan!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10507,18 +10533,18 @@ msgstr "Prikaži boju" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Povezivanje nije moguće: neispravna postavka." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Dobro došli u %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10528,7 +10554,7 @@ msgstr "" "izradu možete upotrijebiti %1$sskriptu za instalaciju%2$s da biste je " "napravili." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10540,7 +10566,7 @@ msgstr "" "računala, korisničko ime i lozinku, te provjerite da se odgovaraju podacima " "koje vam je dao administrator MySQL poslužitelja." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10567,15 +10593,15 @@ msgstr "Korisničko ime:" msgid "Server Choice:" msgstr "Odabir poslužitelja" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10651,7 +10677,7 @@ msgstr "Opcije izvoza baze podataka" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" @@ -10660,7 +10686,7 @@ msgstr "Izbacivanje podataka za tablicu" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Događaj" @@ -10668,8 +10694,8 @@ msgstr "Događaj" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10773,7 +10799,7 @@ msgstr "Nazive polja stavi u prvi red" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11348,7 +11374,7 @@ msgstr "Sadržaj tablice" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Dodatno" @@ -11789,57 +11815,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "bez opisa" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11848,318 +11874,318 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Odaberite bazu podataka" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "najv. uzastopnih veza" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Puni tekst" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 #, fuzzy msgid "Full stop" msgstr "Puni tekst" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo strukturu" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo strukturu" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Korisničko ime" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Korisničko ime" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Lozinka" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Presloži" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 #, fuzzy msgid "Master status" msgstr "Prikaži stanje potčinjenog" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 #, fuzzy msgid "Slave status" msgstr "Prikaži stanje potčinjenog" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Varijabla" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Računalo" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ovo računalo" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Upotrijebi tekstualno polje" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ponovite" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Generiraj lozinku" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy msgid "Replication started successfully." msgstr "Replikacija" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Privilegije su uspješno učitane." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy msgid "Replication resetting successfully." msgstr "Replikacija" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Pogreška" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Nepoznata greška" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Privilegije su uspješno učitane." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12182,7 +12208,7 @@ msgstr "Tablica %s je odbačen" msgid "Event %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -12197,89 +12223,89 @@ msgstr "" msgid "Edit event" msgstr "Web poslužitelj" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Detalji…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Promijeni" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Izvrši favorizirani upit" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Stanje" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Završetak" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Dovrši umetanja" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Neispravan naziv tablice" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12302,7 +12328,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12316,139 +12342,139 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy msgid "Edit routine" msgstr "Web poslužitelj" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Tablica %s je odbačen" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Tablica %s je odbačen" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Izravne veze" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Dodaj parametar" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Preimenuj bazu podataka u" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Vrsta povratka" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Duljina/Vrijednosti" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tablice" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Neispravan naziv tablice" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dopušta pokretanje pohranjenih rutina." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12456,13 +12482,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12489,44 +12515,44 @@ msgstr "Tablica %1$s je izrađena." msgid "Edit trigger" msgstr "Dodaj novog korisnika" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Okidači" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Vrijeme" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Neispravan naziv tablice" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Neispravan naziv tablice" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Neispravan naziv tablice" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Neispravan naziv tablice" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12667,94 +12693,94 @@ msgstr "Tablica znakova i uspoređivanja" msgid "Databases statistics" msgstr "Statistike baza podataka" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Bez privilegija." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Omogućuje pregledavanje procesa za sve korisnike" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12764,138 +12790,108 @@ msgstr "" "većinu administrativnih operacija poput postavljanja općih varijabli ili " "eliminiranje grana drugih korisnika." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Omogućuje postavljanje događaja za planer" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Omogućuje izradu i uklanjanje okidača" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "bez kompresije" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Stalne veze" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Stalne veze" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ograničenja resursa" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " -"ograničenje." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12903,409 +12899,386 @@ msgstr "" "Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " "mijenjanje bilo koje tablice ili baze podataka, po satu." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Dopušta pokretanje pohranjenih rutina." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administracija" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Opće privilegije" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "opće" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Promijeni lozinku" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Dokumentacija" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "_Podaci prijave" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Korisničko ime" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Naziv zapisnika" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Izrada presjeka lozinke" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Opozvali ste privilegije za %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza podataka za korisnika" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Izradi bazu podataka istog naziva i podari sve privilegije." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Index %s je ispušten" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Podarivanje" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "opće" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Opozovi" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy msgid "Edit user group" msgstr "Web poslužitelj" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… zadržati staru." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… izbriši starog iz korisničkih tablica." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Izradi novog korisnika s istim privilegijama i…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije specifične za stupac" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Ukloni odabrane korisnike" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4620 -#, fuzzy -#| msgid "New" -msgctxt "Create new user" -msgid "New" -msgstr "Novo" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13318,7 +13291,7 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13337,11 +13310,11 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -13645,13 +13618,13 @@ msgstr "Naredba" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Datoteke" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13680,12 +13653,12 @@ msgstr "po minuti" msgid "per second:" msgstr "po sekundi" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13717,19 +13690,19 @@ msgstr "Prikaži otvorene tablice" msgid "Related links:" msgstr "Relacije" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13739,17 +13712,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13761,11 +13734,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13773,7 +13746,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13781,7 +13754,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13789,23 +13762,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13815,7 +13788,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13825,7 +13798,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13833,7 +13806,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13843,7 +13816,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13851,7 +13824,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13863,7 +13836,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13875,36 +13848,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13914,7 +13887,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13926,11 +13899,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13938,7 +13911,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13946,11 +13919,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13958,7 +13931,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13972,55 +13945,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14029,35 +14002,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -14066,52 +14039,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14119,7 +14092,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14127,7 +14100,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14137,17 +14110,17 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Oblikovanje uvezene datoteke" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14158,26 +14131,26 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14187,17 +14160,17 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14205,39 +14178,39 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14250,7 +14223,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14258,19 +14231,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -14278,12 +14251,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -14292,7 +14265,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14300,17 +14273,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14318,12 +14291,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14331,14 +14304,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14348,23 +14321,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14376,7 +14349,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14386,11 +14359,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14402,13 +14375,13 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Pohrana ključeva" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." @@ -14445,49 +14418,49 @@ msgstr "Baza podataka za korisnika" msgid "Table level tabs" msgstr "Naziv tablice" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Prikaz" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Dodaj korisnika" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Bez privilegija." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nazivi stupaca" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Verzija poslužitelja" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Baza podataka za korisnika" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14602,7 +14575,7 @@ msgstr "Pokreni SQL upit na bazi podataka %s" msgid "Run SQL query/queries on table %s" msgstr "Pokreni SQL upit na bazi podataka %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14696,105 +14669,105 @@ msgstr "" msgid "Version" msgstr "Perzijski" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Kreirano" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Ažurirano" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Izradi relaciju" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Izvještaj o praćenju" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Snimak strukture" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktivno" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "neaktivno" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dopušta umetanje i zamjenu podataka." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nema baza podataka" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, fuzzy, php-format msgid "Export as %s" msgstr "Vrsta izvoza" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Podaci" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14802,77 +14775,77 @@ msgctxt "None for default" msgid "None" msgstr "bez kompresije" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Izradi relaciju" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nepraćene tablice" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Prati tablicu" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Praćene tablice" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Zadnja verzija" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Brisanje podataka o praćenju" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Verzije" @@ -14882,7 +14855,7 @@ msgstr "Verzije" msgid "Manage your settings" msgstr "Opće osobine relacija" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14910,7 +14883,7 @@ msgstr "Pogreška u ZIP arhivi:" msgid "No files found inside ZIP archive!" msgstr "Datoteke nisu pronađene unutar ZIP arhive!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14918,86 +14891,86 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin dokumentacija" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Uvezi datoteke" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Spremi kao datoteku" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -15005,45 +14978,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Bez privilegija" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Grana %s uspješno je prekinuta." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Preuzmi" @@ -15051,104 +15024,103 @@ msgstr "Preuzmi" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Izmjene su spremljene" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Izmjene su spremljene" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Pregled" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 #, fuzzy msgid "New server" msgstr "Web poslužitelj" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Zadani jezik" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Lokalno" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin dokumentacija" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 #, fuzzy msgid "Donate" msgstr "Podaci" @@ -15188,28 +15160,28 @@ msgstr "Ignoriraj greške" msgid "Show form" msgstr "Prikaži boju" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -15224,12 +15196,12 @@ msgstr "Nema baza podataka" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s već postoji!" @@ -15242,35 +15214,35 @@ msgstr "Prikaži ispis (shemu) tablice" msgid "Invalid table name" msgstr "Neispravan naziv tablice" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15501,7 +15473,7 @@ msgid "List of available transformations and their options" msgstr "Raspoloživa preoblikovanja" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15527,7 +15499,7 @@ msgstr "" "lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16070,17 +16042,17 @@ msgid "Size" msgstr "Veličina" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Izrada" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Posljednje ažuriranje" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Posljednja provjera" @@ -16115,6 +16087,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Brisanje podataka o praćenju" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16139,10 +16117,51 @@ msgstr "Dodaj privilegije za sljedeću tablicu" msgid "Add privileges on the following table:" msgstr "Dodaj privilegije za sljedeću tablicu" +#: templates/privileges/add_user_fieldset.phtml:2 +#, fuzzy +#| msgid "New" +msgctxt "Create new user" +msgid "New" +msgstr "Novo" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "bez kompresije" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Ukloni odabrane korisnike" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ograničenja resursa" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " +"ograničenje." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" @@ -16178,7 +16197,7 @@ msgstr "Dodatak" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16372,7 +16391,7 @@ msgstr "Korisnik" msgid "Comment:" msgstr "Komentar" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16408,31 +16427,31 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dodaj prisile" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Interne relacije" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interne relacije" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interna relacija nije potrebna ako postoji odgovarajuća relacija FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16498,13 +16517,13 @@ msgstr "Izvorni položaj" msgid "Replaced string" msgstr "Relacije" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Replikacija" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL upit" @@ -16592,7 +16611,7 @@ msgid "at beginning of table" msgstr "Pri početku tablice" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16628,30 +16647,30 @@ msgstr "Duljina retka" msgid "Index length" msgstr "Duljina retka" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "particionirano" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Ukloni particioniranje" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Prikaz ispisa" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Iskorištenost prostora" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Na snazi" @@ -16682,33 +16701,33 @@ msgstr "Predloži strukturu tablice" msgid "Track view" msgstr "Prati tablicu" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Statistike redova" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamički" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "particionirano" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Duljina retka" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Veličina retka" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16722,52 +16741,52 @@ msgstr "Tablica %s je odbačen" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Raspoložive MIME vrste" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Raspoloživa preoblikovanja" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Raspoloživa preoblikovanja" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Izvještaj o praćenju" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemate dovoljno privilegija da boravite ovdje!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil je ažuriran." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16841,7 +16860,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16865,19 +16884,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Nema odabrane baze podataka." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16938,28 +16957,28 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Tablica %1$s je izrađena." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Predložak naziva datoteka" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pri početku tablice" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16976,10 +16995,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Pri početku tablice" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17025,7 +17050,7 @@ msgstr "" msgid "strict error" msgstr "Skupi greške" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18231,6 +18256,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Dokumentacija" + #, fuzzy #~| msgid "Connect without password" #~ msgid "Try to connect without password." diff --git a/po/hu.po b/po/hu.po index 4ad41e72a6..e7b668edd5 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:30+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Hungarian " -"\n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "A(z) %s fájl nem érhető el ezen a rendszeren, keresse fel a %s oldalt a " "további információkért." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "A központi oszlopok listája az aktuális adatbázisban üres." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Kattintson a rendezéshez." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Sorok megjelenítése %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Adatbázis megjegyzés" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Tábla megjegyzések:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Tábla megjegyzések:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Tábla megjegyzések:" msgid "Column" msgstr "Oszlop" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Oszlop" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Oszlop" msgid "Type" msgstr "Típus" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Típus" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nulla" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Nulla" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Alapértelmezett" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Alapértelmezett" msgid "Links to" msgstr "Hivatkozás" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Hivatkozás" msgid "Comments" msgstr "Megjegyzések" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Elsődleges" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Elsődleges" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Elsődleges" msgid "No" msgstr "Nem" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "Nem" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Igen" msgid "View dump (schema) of database" msgstr "Adatbázis kiírás (vázlat) megtekintése" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Nem található tábla az adatbázisban." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Tábla" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Tábla" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,27 +283,27 @@ msgstr "Szerkezet" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Adatok" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Minden kijelölése" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "A(z) %1$s adatbázis átnevezése %2$s névre megtörtént." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "A(z) %1$s adatbázis másolása a(z) %2$s adatbázisba megtörtént." @@ -315,38 +315,38 @@ msgid "" msgstr "" "A phpMyAdmin beállítástárolója ki lett kapcsolva. %sTudja meg, hogy miért%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Legalább egy megjeleníteni kívánt oszlopot ki kell választani!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Átváltás a %svizuális tervezőre%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "A hozzáférés megtagadva!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Nyomkövető adatok sikeresen törölve." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "%1$s verzió létrejött a kijelölt táblákhoz, a nyomkövetés aktív a számukra." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Nincsenek táblák kiválasztva." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Adatbázis Log" @@ -384,131 +384,131 @@ msgstr "Rossz típus!" msgid "Bad parameters!" msgstr "Rossz paraméterek!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" oszlop értéke" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "OpenStreetMaps használata alaprétegként" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometriai %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Pont:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "%d. pont" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Pont hozzáadása" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Sorsztring %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Külső gyűrű:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Belső gyűrű %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Új sorvég hozzáadása" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Belső gyűrű hozzáadása" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Sokszög %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Sokszög hozzáadása" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Geometria hozzáadása" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Indítás" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Kimenet" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -516,19 +516,19 @@ msgstr "" "Válassza a „GeomFromText”-et a „Függvény” oszlopból és illessze be az alábbi " "karakterláncot az „Érték” mezőbe." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Sikerült" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Nem sikerült" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Hiányos paraméterek" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -537,15 +537,15 @@ msgstr "" "Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " "%sdokumentációban%s a korlátozás feloldása végett." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "A könyvjelző törlése megtörtént." -#: import.php:489 +#: import.php:486 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 " @@ -555,18 +555,18 @@ msgstr "" "vagy a fájlméret túllépte a PHP beállításokban engedélyezett legnagyobb " "méretet. Lásd [doc@faq1-16]GYIK 1.16.[/doc].." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "A(z) %s könyvjelző létrejött." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -575,7 +575,7 @@ msgstr[0] "" msgstr[1] "" "Az importálás sikeresen befejeződött, %d lekérdezés került végrehajtásra." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -584,7 +584,7 @@ msgstr "" "Parancsfájl időtúllépés átadva, ha be akarja fejezni az importálást, akkor " "%sküldje újra ugyanazt a fájlt%s, és az importálás folytatódni fog." -#: import.php:632 +#: import.php:629 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." @@ -593,7 +593,7 @@ msgstr "" "jelenti, hogy a phpMyAdmin nem tudja befejezni ezt az importálást, ha Ön nem " "növeli meg a PHP időkorlátozását." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." @@ -601,17 +601,17 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották." msgid "Could not load the progress of the import." msgstr "Nem sikerült betölteni az importálás folyamatát." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Vissza" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin Demo Server" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -621,107 +621,107 @@ msgstr "" "Ön demo kiszolgálót használ. Bármit szerkeszthet, de kérjük, ne változtasson " "a root, debian-sys-maint és pma felhasználókon. További információ: %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Általános beállítások" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Jelszó megváltoztatása" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Kiszolgálókapcsolat illesztése" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Megjelenési beállítások" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "További beállítások" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Adatbázis-kiszolgáló" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Kiszolgáló:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Kiszolgáló típusa:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Kiszolgáló verziója:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protokoll verzió:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Felhasználó:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "A kiszolgáló karakterkódolása:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Webkiszolgáló" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Adatbázis-kliens verziója:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP-kiterjesztés:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP verzió:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Verziószám:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentáció" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Hivatalos honlap" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Közreműködés" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Támogatás szerzése" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Változások listája" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licenc" -#: index.php:443 +#: index.php:444 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 " @@ -732,7 +732,7 @@ msgstr "" "tudja megfelelően felosztani a karakterláncokat, mely nem várt eredményhez " "vezethet." -#: index.php:458 +#: index.php:459 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." @@ -741,7 +741,7 @@ msgstr "" "Emiatt néhány funkció - mint például a hibajelentés, vagy verzió ellenőrzés " "- le lett tiltva." -#: index.php:473 +#: index.php:474 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 " @@ -753,7 +753,7 @@ msgstr "" "phpMyAdminban beállított cookie érvényességénél. Emiatt a bejelentkezése a " "phpMyAdminban beállítottnál előbb járhat le." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -762,17 +762,17 @@ msgstr "" "érvényességénél. Emiatt a bejelentkezése a phpMyAdminban beállítottnál előbb " "fog lejárni." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "A konfigurációs fájlnak egy titkos hozzáférési kódra (blowfish_secret) van " "szüksége." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "A titkos jelmondat a beállításokban (blowfish_secret) túl rövid." -#: index.php:528 +#: index.php:529 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 " @@ -783,7 +783,7 @@ msgstr "" "phpMyAdmin könyvtárában. Távolítsa el a phpMyAdmin beállítása után. " "Máskülönben az illetéktelen behatolás veszélye magas lesz." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -792,14 +792,14 @@ msgstr "" "A phpMyAdmin beállítástárolója nincs teljesen beállítva, néhány kibővített " "funkció ki lett kapcsolva. %sTudja meg, hogy miért%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Vagy alternatív megoldásként menjen bármelyik adatbázis „Műveletek” lapjára, " "hogy ott beállíthassa." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -808,7 +808,7 @@ msgstr "" "A PHP MySQL programkönyvtár verziója (%s) eltér a MySQL kiszolgáló " "verziójától (%s). Ez kiszámíthatatlan viselkedést okozhat." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -980,7 +980,7 @@ msgid "Save & close" msgstr "Mentés és bezárás" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Visszaállítás" @@ -1012,7 +1012,7 @@ msgstr "Index hozzáadása" msgid "Edit index" msgstr "Index szerkesztése" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "%s oszlop hozzáadása az indexhez" @@ -1037,10 +1037,10 @@ msgstr "Válasszon oszlopokat az indexhez." msgid "You have to add at least one column." msgstr "Legalább egy oszlopot kell hozzáadnia." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQL előnézete" @@ -1052,7 +1052,7 @@ msgstr "Lekérdezés szimulálása" msgid "Matched rows:" msgstr "Illeszkedő sorok:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL lekérdezés:" @@ -1069,13 +1069,13 @@ msgstr "A gépnév üres!" msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" @@ -1083,8 +1083,8 @@ msgstr "Nem egyeznek a jelszavak!" msgid "Removing Selected Users" msgstr "A kijelölt felhasználók törlése" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Bezárás" @@ -1106,19 +1106,19 @@ msgstr "A sablon törölve lett." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Egyéb" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1224,40 +1224,40 @@ msgid "Processes" msgstr "Folyamatok" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1275,7 +1275,7 @@ msgstr "Kérdések" msgid "Traffic" msgstr "Forgalom" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Beállítások" @@ -1289,16 +1289,16 @@ msgid "Please add at least one variable to the series!" msgstr "Legalább egy változót adjon meg a sorozathoz!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Nincs" @@ -1495,20 +1495,20 @@ msgstr "Elemzés…" msgid "Explain output" msgstr "A kimenet magyarázata" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Állapot" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Idő" @@ -1598,10 +1598,10 @@ msgstr "" "beállítások visszaállítása…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importálás" @@ -1674,7 +1674,7 @@ msgstr "Nincs paraméter megadva!" msgid "Cancel" msgstr "Mégse" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Oldallal kapcsolatos beállítások" @@ -1714,8 +1714,8 @@ msgid "Error text: %s" msgstr "Hibaüzenet: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nincs kiválasztott adatbázis." @@ -1753,7 +1753,7 @@ msgstr "Adatbázis másolása" msgid "Changing charset" msgstr "Karakterkészlet megváltoztatása" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Idegen kulcsok ellenőrzésének engedélyezése" @@ -1781,73 +1781,78 @@ msgstr "Böngészés" msgid "Deleting" msgstr "Törlés" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Törli a találatokat a %s táblában?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A tárolt függvény meghatározásának tqartalmaznia kell VISSZATÉRÉSI utasítást!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exportálás" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET szerkesztő" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "„%s” oszlop értékei" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Az új oszlop értékei" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Minden értéket külön mezőben adjon meg." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "%d érték hozzáadása" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "SQL-lekérdezési panelek elrejtése" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Lekérdezési doboz megjelenítése" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1855,53 +1860,53 @@ msgstr "Lekérdezési doboz megjelenítése" msgid "Edit" msgstr "Módosítás" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Törlés" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Nincs automatikusan mentett lekérdezés" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "%d. változó:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Kiválasztás" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Oszlopkiválasztó" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Keresés a listában" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1911,15 +1916,15 @@ msgstr "" "adatbázis központi oszlopainak listája tartalmaz-e olyan oszlopokat, amelyek " "nincsenek a jelenlegi táblában." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Több megtekintése" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Biztos benne?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1927,51 +1932,51 @@ msgstr "" "Ez a művelet megváltoztathatja néhány oszlop meghatározását.
Biztosan " "folytatni szeretné?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Folytatás" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Elsődleges kulcs hozzáadva." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Átvitel a következő lépésre…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "A normalizálás első lépése befejeződött a következő táblánál: „%s”." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Lépés vége" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "A normalizálás második lépése (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Kész" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Részleges függőségek megerősítése" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "A kijelölt részleges függőségek a következők:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1979,21 +1984,21 @@ msgstr "" "Megjegyzés: a, b -> d,f azt jelenti, hogy az „a” és „b” oszlopok értékei " "együtt meghatározzák a „d” és „f” oszlopok értékét." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Nincsenek részleges függőségek kiválasztva!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mutassa meg a táblában lévő adatok alapján a lehetséges részleges " "függőségeket" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Részleges függőségek listájának elrejtése" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2001,182 +2006,182 @@ msgstr "" "Maradjon ülve! Az adatok méretétől és a tábla oszlopszámától függően " "eltarthat néhány másodpercig." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Lépés" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "A következő műveletek lesznek végrehajtva:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "%s oszlopok ELDOBÁSA a következő táblából: %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "A következő tábla létrehozása" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "A normalizálás harmadik lépése (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Tranzitív függőségek megerősítése" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "A kijelölt függőségek a következők:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nincsenek függőségek kiválasztva!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Mentés" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Keresési kritériumok megjelenítése" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Tartomány keresés" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Oszlop maximum:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Oszlop minimum:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Legkisebb érték:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Legnagyobb érték:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Keresési és csere kritériumok elrejtése" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Keresési és csere kritériumok megjelenítése" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Minden pont egy adatsort ábrázol." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Egy pont fölé mutatás megjeleníti annak címkéjét." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "A nagyításhoz jelöljön ki egy területet az egérrel." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Kattints a nagyítás visszaállítása gombra, hogy visszatérj az eredeti " "állapotra." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kattintson az adat területére a megjelenítéshez és a rekord esetleges " "szerkesztéséhez." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "A terület a jobb alsó sarok húzásával átméretezhető." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Válasszon két oszlopot" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Válasszon két különböző oszlopot" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Adatmutató tartalma" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Másolás" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Pont" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Karakterlánc" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Sokszög" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Belső gyűrű" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Külső gyűrű" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Szeretné másolni a titkosítási kulcsot?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Titkosítási kulcs" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2184,24 +2189,24 @@ msgstr "" "Azt jelzi, hogy módosításokat végzett ezen az oldalon; megerősítést fog " "kérni a módosítások elhagyása előtt" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Válassza ki az elsődleges kulcsot vagy egy egyedi kulcsot!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő oszlopot" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2209,76 +2214,76 @@ msgstr "" "Nem mentette a változtatásokat az elrendezésben. Mentés nélkül ezek el " "fognak veszni. Így is folytatni szeretné?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Oldal neve" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Oldal mentése" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Oldal mentése másként" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Oldal megnyitása" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Oldal törlése" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Névtelen" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Válasszon egy oldalt a folytatáshoz" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Adjon meg egy érvényes oszlopnevet" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Szeretné menteni a jelenlegi oldal módosításait?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Az oldal sikeresen törölve" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Kapcsolati séma exportálása" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lehetőség hozzáadása a következő oszlophoz: „%s”." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objektum létrehozva." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Indítás" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Nyomja meg az Escape billentyűt a szerkesztés megszakításához." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2286,15 +2291,15 @@ msgstr "" "Egy vagy több adat szerkesztve lett de nem lett még elmentve. Biztos benne, " "hogy mentés nélkül kívánja elhagyni az oldalt?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Húzza az elemeket az újrarendezéshez." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Kattintson az eredmények rendezéséhez ezen oszlop szerint." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2304,28 +2309,28 @@ msgstr "" "DESC váltogatása.
- Oszlop eltávolítása az ORDER BY kikötésből Ctrl" "+kattintás vagy Alt+kattintás (Mac: Shift+Option+kattintás) használatával" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Kattintson a kijelöléshez / kijelölés megszüntetéséhez." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Az oszlopnév másolásához kattintson duplán." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Kattintson a legördülő nyílra
az oszlop láthatóságának ki/" "bekapcsolásához." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Összes megjelenítése" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2334,13 +2339,13 @@ msgstr "" "rendelt funkciók mint Szerkesztés, Másolás és Törlés nem feltétlenül lesznek " "elérhetők mentés után." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Adjon meg egy érvényes hexadecimális szöveget. Az érvényes karakterek: 0-9, " "A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2348,100 +2353,100 @@ msgstr "" "Valóban meg szeretné nézni az összes sort? Egy nagy tábla esetén ez " "összeomlaszthatja a böngészőt." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Eredeti hossz" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "mégse" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Megszakítva" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Sikerült" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importálás állapota" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Ejtse ide a fájlokat" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Először válasszon adatbázist" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Nyomtatás" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Az elemek nagy része szerkeszthetővé válik
dupla kattintással." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "Az elem szerkeszthetővé
válik kattintással." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Ugrás a hivatkozáshoz:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Oszlopnév másolása." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "A vágólapra való másoláshoz kattintson jobb egérgombbal az oszlop nevére." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generálás" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Több" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Panel megjelenítése" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Panel elrejtése" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Hozzákapcsolás a fő panelhez" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Eltávolítás a fő panelről" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "A kért oldal nem található az Előzményekben, talán már lejárt." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2451,41 +2456,41 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "friss" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Nézet létrehozása" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Hibajelentés küldése" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Hibajelentés beküldése" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Végzetes JavaScript hiba történt. Szeretne hibajelentést küldeni?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Jelentés beállításainak megváltoztatása" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Jelentés részleteinek megjelenítése" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2493,7 +2498,7 @@ msgstr "" "Az exportálás nem teljes a PHP szinten lévő alacsony végrehajtási időkorlát " "miatt!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2503,59 +2508,59 @@ msgstr "" "Elküldéskor a mezők egy része mellőzve lehet a PHP max_input_vars beállítása " "miatt." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Hibák észlelhetők a kiszolgálón!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Nézze meg ennek az ablaknak az alját." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Összes mellőzése" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "A beállítások szerint jelenleg elküldés alatt vannak, legyen türelemmel." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Végrehajtja ismét ezt a lekérdezést?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Valóban törölni szeretné ezt a könyvjelzőt?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Hibák történtek az SQL hibakeresési információk lekérése közben." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s kérés került végrehajtásra %s alkalommal %s másodperc alatt." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentum került átadásra" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Argumentumok megjelenítése" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Argumentumok elrejtése" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Felhasznált idő:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2570,349 +2575,369 @@ msgstr "" "adatok törlése\" segíthet. Safari böngészőnél ezt a hibát általában a privát " "módú böngészés okozza." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Táblák másolása ide" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Táblaelőtag hozzáadása" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Tábla cseréje előtaggal" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tábla másolása előtaggal" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Előző" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Ma" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Január" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Február" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Március" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Április" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Május" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Június" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Július" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Augusztus" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Szeptember" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Október" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "November" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Már" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Ápr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sze" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Péntek" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Va" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Hé" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pé" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Hét" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "nincs" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Óra" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Perc" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "másodperc" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Ez a mező kötelező" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Javítsa ezt a mezőt" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Adjon meg egy érvényes e-mail címet" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Adjon meg egy érvényes URL-t" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Adjon meg egy érvényes dátumot" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Adjon meg egy érvényes dátumot (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Adjon meg egy érvényes számot" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Adjon meg egy érvényes hitelkártya számot" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Csak számjegyeket adjon meg" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Adja meg ismét ugyanazt az értéket" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Ne adjon meg {0} karakternél többet" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Adjon meg legalább {0} karaktert" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Adjon meg egy {0} és {1} közé eső karakterszámú értéket" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Adjon meg egy értéket {0} és {1} között" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Adjon meg értéket, amely kisebb vagy egyenlő mint {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Adjon meg értéket, amely nagyobb vagy egyenlő mint {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Adjon meg egy érvényes dátumot vagy időt" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Adjon meg egy érvényes HEX bemenetet" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Hiba" @@ -2977,20 +3002,20 @@ msgid "Charset" msgstr "Karakterkészlet" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Illesztés" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Bináris" @@ -3185,7 +3210,7 @@ msgid "Czech-Slovak" msgstr "Csehszlovák" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "ismeretlen" @@ -3231,26 +3256,26 @@ msgstr "" msgid "Font size" msgstr "Betűméret" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "%1$d könyvjelző megjelenítése (privát és megosztott egyaránt)" msgstr[1] "%1$d könyvjelző megjelenítése (privát és megosztott egyaránt)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Nincsenek könyvjelzők" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL lekérdezés konzol" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Nem sikerült beállítani a beállított egyeztetés kapcsolatot!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3258,24 +3283,24 @@ msgstr "" "A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően " "beállítotva)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "A kiszolgáló nem válaszol." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Kérjük, ellenőrizze az adatbázist tartalmazó könyvtár hozzáférési jogait." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Részletek…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Hiányzó kapcsolat paraméterek!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem " @@ -3371,110 +3396,105 @@ msgstr "Ins:" msgid "Del:" msgstr "Del:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-lekérdezés a(z) %s adatbázison:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Lekérdezés indítása" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Mentett könyvjelzőzött keresés:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Új könyvjelző" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Könyvjelző létrehozása" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Könyvjelző frissítése" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Könyvjelző törlése" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "legalább az egyik szó" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "minden szó" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "a pontos kifejezés" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "reguláris kifejezésként" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Keresési eredmények \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Összesen: %s találat" msgstr[1] "Összesen: %s találat" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s találat ebben: %2$s" msgstr[1] "%1$s találat ebben: %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Tartalom" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Törli a találatokat a %s táblában?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Keresés az adatbázisban" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Keresés:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "A szavak elválasztása szóköz karakterrel (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Belső táblák:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Összes kijelölésének megszüntetése" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Mezőben:" @@ -3494,30 +3514,30 @@ msgstr "Sorok szűrése" msgid "Search this table" msgstr "Keresés a táblában" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Kezdet" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Előző" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Következő" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Vége" @@ -3526,7 +3546,7 @@ msgstr "Vége" msgid "All" msgstr "Mind" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Sorok száma:" @@ -3535,8 +3555,8 @@ msgstr "Sorok száma:" msgid "Sort by key" msgstr "Kulcs szerinti rendezés" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3558,10 +3578,10 @@ msgstr "Kulcs szerinti rendezés" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Beállítások" @@ -3601,29 +3621,29 @@ msgstr "Jól ismert szöveg" msgid "Well Known Binary" msgstr "Jól ismert bináris" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "A sor törlése megtörtént." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Leállít" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Becsült érték lehet. Lásd [doc@faq3-11]GyIK 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Az SQL-lekérdezés végrehajtása sikerült." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3632,73 +3652,73 @@ msgstr "" "Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " "%sdokumentációban%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Sorok megjelenítése %1s-%2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d összesen, %2$d a lekérdezésben" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "összesen %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "A lekérdezés %01.4f másodpercig tartott." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Összes bejelölése" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Másolás vágólapra" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Diagram megjelenítése" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "GIS data megjelenítése" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Nem található a hivatkozás!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Nincs" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konvertálás Kanaba" @@ -3706,25 +3726,25 @@ msgstr "Konvertálás Kanaba" msgid "Too many error messages, some are not displayed." msgstr "Túl sok hibaüzenet, néhány nem megjeleníthető." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Jelentés" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Jelentés automatikus küldése legközelebb" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "A fájl nem feltöltött fájl." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "A feltöltött fájl mérete túllépi a php.ini fájlban megadott " "upload_max_filesize utasítást." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3732,49 +3752,49 @@ msgstr "" "A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE " "utasítást." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "A feltöltött fájl csak részben került feltöltésre." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Hiányzik egy ideiglenes mappa." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Nem sikerült lemezre írni a fájlt." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "A fájlfeltöltés kiterjesztés alapján leállt." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "A fájl egy szimbolikus link" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Nem sikerült beolvasni a fájlt!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Hiba történt a feltöltött fájl áthelyezésekor, lásd [doc@faq1-11]GyIK 1.11[/" "doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Hiba a feltöltött fájl mozgatása közben." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "A feltöltött fájl nem olvasható." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3783,28 +3803,28 @@ msgstr "" "Ön nem támogatott tömörítésű (%s) fájlt kísérelt meg betölteni. Vagy nem " "valósították meg a támogatását, vagy letiltják a beállítások." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Jelenleg futtatott Git revízió %1$s a %2$s branchból." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git információ hiányzik!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Új phpMyAdmin ablak nyitása" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Nyomtatási nézet" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Kattintson a sávra az oldal tetejére való görgetéshez" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Ettől a ponttól engedélyeznie kell a JavaScriptet!" @@ -3813,20 +3833,20 @@ msgid "No index defined!" msgstr "Nincs meghatározott index!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indexek" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3836,59 +3856,59 @@ msgstr "Indexek" msgid "Action" msgstr "Művelet" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Kulcsnév" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Számosság" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Megjegyzés" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Az elsődleges kulcs eldobása megtörtént." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "A(z) %s index eldobása megtörtént." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Eldobás" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3897,19 +3917,19 @@ msgstr "" "A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg " "eltávolítható." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Oldalszám:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Nem támogatott nyelvi kód mellőzése." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Nyelv" @@ -3935,11 +3955,11 @@ msgstr "Kiszolgáló" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3958,14 +3978,15 @@ msgid "View" msgstr "Nézet" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3974,8 +3995,8 @@ msgid "Table" msgstr "Tábla" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3983,45 +4004,45 @@ msgstr "Tábla" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Keresés" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Beszúrás" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Jogok" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Műveletek" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Követés" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4037,16 +4058,16 @@ msgstr "Eseményindítók" msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Lekérdezés" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Eljárások" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4054,20 +4075,20 @@ msgstr "Eljárások" msgid "Events" msgstr "Események" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Tervező" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Központi oszlopok" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Adatbázisok" @@ -4076,53 +4097,53 @@ msgid "User accounts" msgstr "Felhasználói fiókok" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Bináris napló" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Többszörözés" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Változók" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motorok" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Bővítmények" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d sor érintett." msgstr[1] "%1$d sor érintett." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "A(z) %1$d sor törlése megtörtént." msgstr[1] "A(z) %1$d sor törlése megtörtént." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4170,27 +4191,27 @@ msgstr "Kedvenc táblák" msgid "Favorites" msgstr "Kedvencek" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Adjon meg egy nevet ehhez a könyvjelzőzött kereséshez." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Információk hiányoznak a könyvjelzőzött keresés mentéséhez." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Már létezik ilyen nevű bejegyzés." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Információk hiányoznak a keresés törléséhez." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Információk hiányoznak a keresés betöltéséhez." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Hiba a keresés betöltése közben." @@ -4252,7 +4273,7 @@ msgstr "Nyitott táblák megjelenítése" msgid "Show slave hosts" msgstr "Kisegítő állomások megjelenítése" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Mester állapot megjelenítése" @@ -4306,70 +4327,70 @@ msgid_plural "%d minutes" msgstr[0] "%d perc" msgstr[1] "%d perc" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL kiszolgálón a(z) %s az alapértelmezett tárolómotor." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "A(z) %s elérhető ezen a MySQL kiszolgálón." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "A(z) %s le lett tiltva ezen a MySQL kiszolgálón." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ez a MySQL kiszolgáló nem támogatja a(z) %s tárolómotort." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Ismeretlen táblaállapot:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "A(z) „%s” forrás adatbázis nem található!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "A(z) „%s” cél adatbázis nem található!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Érvénytelen adatbázis:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Érvénytelen táblanév:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A(z) %1$s tábla átnevezése %2$s névre megtörtént." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Nem sikerült elmenteni a tábla UI beállításait!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4378,7 +4399,7 @@ msgstr "" "Tábla UI beállításainak tisztítása sikertelen (lásd $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4388,19 +4409,19 @@ msgstr "" "\"%s\" UI érték mentése sikertelen. A változtatás az oldal frissítése után " "nem jelenik meg. Ellenőrizze, hogy a tábla struktúrája megváltozott-e." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Az elsődleges kulcs nevének \"PRIMARY\"-nak kell lennie!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Nem nevezhető át PRIMARY-re az index!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nincs meghatározott indexrész!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4722,7 +4743,7 @@ msgid "Date and time" msgstr "Dátum és idő" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Karakterlánc" @@ -4737,126 +4758,126 @@ msgstr "Térbeli" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statikus elemzés:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d hibát találtunk az elemzés során." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Magyarázat elemzése itt: %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "PHP-kód nélkül" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Lekérdezés indítása" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "PHP-kód létrehozása" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Frissítés" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Adatgyűjtés" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Szerkesztés helyben" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Vas" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Hiányzó paraméter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Ugrás a(z) \"%s\" adatbázishoz." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Válasszon a webkiszolgáló feltöltési könyvtárából %s :" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Nem elérhető a feltöltésekhez megadott könyvtár." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Nincsenek feltöltendő fájlok!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Kiürítés" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Végrehajtás" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Felhasználók" @@ -4870,7 +4891,7 @@ msgstr "percenként" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "óránként" @@ -4878,12 +4899,12 @@ msgstr "óránként" msgid "per day" msgstr "naponta" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Keresés:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4891,7 +4912,7 @@ msgstr "Keresés:" msgid "Description" msgstr "Leírás" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Ezen érték használata" @@ -4933,22 +4954,22 @@ msgstr "IGEN" msgid "NO" msgstr "NEM" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Név" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Hossz/Értékek" @@ -4957,7 +4978,7 @@ msgstr "Hossz/Értékek" msgid "Attribute" msgstr "Jellemző" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_N" @@ -4974,11 +4995,11 @@ msgstr "Oszlop hozzáadása" msgid "Select a column." msgstr "Válasszon egy oszlopot." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Új oszlop hozzáadása" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4986,7 +5007,7 @@ msgstr "Új oszlop hozzáadása" msgid "Attributes" msgstr "Tulajdonságok" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4995,26 +5016,26 @@ msgstr "" "Ön engedélyezte az mbstring.func_overload funkciót a PHP konfigurációban. Ez " "a beállítás nem kompatibilis a phpMyAdminnal, és az adatsérüléssel járhat!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Érvénytelen kiszolgálóindex: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s kiszolgáló gépneve érvénytelen. Nézze át a beállításokat." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Kiszolgáló %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5026,20 +5047,20 @@ msgstr "" "beállításait. A phpMyAdmin jelenleg az adatbázis-kiszolgáló alapértelmezett " "időzónáját használja." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Hiba: Token eltérés" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS felülírási kísérlet" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "lehetséges kiaknázás" @@ -5646,7 +5667,7 @@ msgid "Compress on the fly" msgstr "Menet közbeni tömörítés" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfigurációs fájl" @@ -5755,12 +5776,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Végrehajtási idő legfeljebb" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "%s utasítás használata" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Mentés fájlként" @@ -5770,7 +5791,7 @@ msgstr "A fájl karakterkészlete" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formátum" @@ -5895,7 +5916,7 @@ msgid "Save on server" msgstr "Mentés a kiszolgálón" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "A létező fájl(ok) felülírása" @@ -5908,7 +5929,7 @@ msgid "Remember file name template" msgstr "A fájlnévsablon megjegyzése" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" @@ -5917,7 +5938,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Idézőjelek használata a tábla- és mezőneveknél" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" @@ -5947,7 +5968,7 @@ msgstr "Kapcsolódó metaadatok exportálása a phpMyAdmin beállítástárolób #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s hozzáadása" @@ -6121,7 +6142,7 @@ msgid "Customize the navigation tree." msgstr "A navigációs fa testreszabása." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Kiszolgálók" @@ -7027,7 +7048,7 @@ msgstr "HTTP-tartomány" msgid "Authentication method to use." msgstr "A használandó hitelesítési mód." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Hitelesítés típusa" @@ -7777,7 +7798,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Fejlesztő fül engedélyezése a beállításokban" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Új verzió ellenőrzése" @@ -7785,10 +7806,10 @@ msgstr "Új verzió ellenőrzése" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "A legújabb verzió ellenőrzését engedélyezi a phpMyAdmin főoldalán." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Verzió-ellenőrzés" @@ -7936,24 +7957,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document szöveges dokumentum" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "A kedvencek listája tele van!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "A(z) %s tábla kiürítése megtörtént." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "A(z) %s nézet el lett dobva." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "A(z) %s tábla el lett dobva." @@ -7967,12 +7988,12 @@ msgid "Position" msgstr "Pozíció" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Esemény típusa" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Kiszolgáló azonosító" @@ -7981,7 +8002,7 @@ msgid "Original position" msgstr "Eredeti pozíció" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Információ" @@ -7995,42 +8016,42 @@ msgstr "A megjelenített lekérdezések lerövidítése" msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nincs adatbázis" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "A(z) %1$d adatbázis eldobása sikerült." msgstr[1] "A(z) %1$d adatbázis eldobása sikerült." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Sorok" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Összesen" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Felülírás" @@ -8057,34 +8078,34 @@ msgstr "" msgid "Enable statistics" msgstr "Statisztikák engedélyezése" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Nincs elegendő jogosultság a kiszolgáló változóinak és beállításainak " "megtekintéséhez. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "A változó beállítása nem sikerült" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Nem lett SQL lekérdezés beállítva az adatok megjelenítéséhez." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Nem tartalmaz számoszlopot a táblázat." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Nincs megjelenítendő adat" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "A(z) %1$s tábla módosítása sikerült." @@ -8127,7 +8148,7 @@ msgstr "Az oszlop mozgatása sikeresen megtörtént." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Lekérdezési hiba" @@ -8146,12 +8167,12 @@ msgstr "Módosítás" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8172,13 +8193,13 @@ msgstr "Teljes szöveg" msgid "Distinct values" msgstr "Különböző értékek" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nincs változás" @@ -8200,31 +8221,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Nem sikerült betölteni a séma bővítményeket, ellenőrizze a telepítést!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nincs jelszó" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Jelszó:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Újraírás:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Jelszó hash:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8233,83 +8258,83 @@ msgstr "" "Ez a módszer SSL kapcsolatot vagy RSA-val kódolt jelszót előállító " "nem kódolt kapcsolatot igényel a szerverhez kapcsolódás közben." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Adatbázisok exportálása a jelenlegi kiszolgálóról" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Táblák exportálása a \"%s\" adatbázisból" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Sorok exportálása a \"%s\" táblából" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Sablonok exportálása:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Új sablon:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Sablon neve" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Létrehozás" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Meglévő sablonok:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Sablon:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Frissítés" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Válasszon egy sablont" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Exportálás módja:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Gyors - csak minimális opció megjelenítése" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Egyedi - minden lehetséges opció megjelenítése" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Adatbázisok:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tábla:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formátum:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Formátum specifikus opciók:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8317,52 +8342,52 @@ msgstr "" "Görgessen lefelé, hogy kitöltse a kijelölt formátumhoz tartozó beállításokat " "és hogy figyelmen kívül hagyja a más formátumokhoz tartozó beállításokat." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Karakterkódolás-átalakítás:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Sorok:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Néhány sor kiírása" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Ettől a sortól kezdve:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Összes sor kiírása" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Kimenet:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Mentés a kiszolgáló %s könyvtárába" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Fájlnévsablon:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ lesz a kiszolgáló neve" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ lesz az adatbázis neve" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ lesz a tábla neve" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8374,100 +8399,100 @@ msgstr "" "átalakításokra kerül sor: %3$s. Más szöveg eredeti állapotában kerül " "megtartásra. Tekintse meg a %4$sFAQ%5$s oldalt a részletekért." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "használja ezt a későbbi exportálásokhoz" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "A fájl karakterkészlete:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Tömörítés:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip-elve" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip-elve" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "A kimenet megtekintése szövegként" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Adatbázisok exportálása különálló fájlokként" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Táblák exportálása különálló fájlokként" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Az exportált adatbázisok / táblák / oszlopok átnevezése" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "A kimenet mentése fájlként" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Táblák kihagyása, amelyek nagyobbak mint" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Adatbázis kiválasztása" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Tábla kiválasztása" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Új adatbázis neve" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Új tábla neve" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Régi oszlopnév" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Új oszlopnév" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az exportáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "a(z) %1$s a(z) %2$s ágból" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "nincs ág" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git revízió:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%2$s szerkesztette %1$s-on" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "szerző %2$s %1$s-on" @@ -8925,13 +8950,13 @@ msgstr "" "Dokumentáció és további információ a PBXT honlapján: %sPrimeBase XT Honlap:" "%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Kevés a hely a(z) %s fájl mentéséhez." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8939,78 +8964,78 @@ msgstr "" "Már létezik %s fájl a kiszolgálón, változtassa meg a fájlnevet, vagy állítsa " "be a felülírási opciót." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK történt.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "A következő struktúrákat vagy már létrehozták vagy megváltoztattál. Itt " "lehet:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Szerkezet tartalmának megtekintése a nevére való kattintással." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Bármelyik beállításának módosítása a megfelelő „Beállítások” hivatkozásra " "kattintva." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Szerkezet szerkesztése a „Szerkezet” hivatkozást követve." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Ugrás az adatbázishoz: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "%s beállításainak szerkesztése" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Ugrás a táblához: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s szerkezete" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Ugrás %s megtekintéséhez" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Csak egyedülálló táblák UPDATE és DELETE lekérdezései szimulálhatók." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9023,86 +9048,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Index készítése a(z)  %s oszlopokon" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Elrejtés" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Függvény" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "A hossza miatt ez az
oszlop talán nem szerkeszthető." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Vagy" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "webszerver feltöltési könyvtár:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Szerkesztés/Beszúrás" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "és utána" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, vagy a CTRL+nyilakkal bárhová " "léphet." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9113,31 +9139,31 @@ msgstr "" msgid "Value" msgstr "Érték" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sikerült!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Csak a szerkezet" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Szerkezet és adatok" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Csak az adatok" @@ -9146,14 +9172,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO INCREMENT érték hozzáadása" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Megszorítás hozzáadása" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Jogosultságok módosítása" @@ -9198,8 +9224,8 @@ msgstr "Eljárások:" msgid "Views:" msgstr "Nézetek:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Megjelenítés" @@ -9243,17 +9269,17 @@ msgid_plural "%s results found" msgstr[0] "%s eredmény található" msgstr[1] "%s eredmény található" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Gépeljen ezen elemek szűréséhez, vagy Enterrel keressen mindegyikre" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Gyors szűrő törlése" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Összes összecsukása" @@ -9268,7 +9294,7 @@ msgstr "Érvénytelen osztálynév: \"%1$s\" \"Node\" alapértelmezése használ msgid "Could not load class \"%1$s\"" msgstr "Nem sikerült betölteni a(z) „%1$s” osztályt" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Kinyitás / összecsukás" @@ -9287,7 +9313,7 @@ msgstr "új" msgid "Database operations" msgstr "Adatbázis műveletek" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Rejtett elemek megjelenítése" @@ -9392,11 +9418,11 @@ msgstr "" "Válasszon egy oszlopot, amelyet egynél több részre lehet szétvágni (a „nincs " "ilyen oszlop” választásakor a következő lépésre fog menni)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Válasszon egy…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Nincs ilyen oszlop" @@ -9676,8 +9702,8 @@ msgid "Rename database to" msgstr "Adatbázis átnevezése" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9723,181 +9749,181 @@ msgstr "(egyenként)" msgid "Move table to (database.table)" msgstr "Tábla áthelyezése (adatbázis.tábla)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Tábla átnevezése" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tábla megjegyzése" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tábla beállításai" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Tárolómotor" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Minden oszlopillesztés módosítása" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Tábla másolása (adatbázis.tábla)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "A másolt táblára váltás" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tábla karbantartása" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Tábla elemzése" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Tábla ellenőrzése" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Tábla ellenőrzőösszege" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Tábla töredezettségmentesítése" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "A(z) %s tábla kiírása megtörtént." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Tábla kiöblítése (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Tábla javítása" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Adat vagy tábla törlése" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Tábla kiürítése (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Tábla törlése (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Elemzés" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Ellenőrzés" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimalizálás" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Újraépítés" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Javítás" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Kiürítés" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Összefonás" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Partíció karbantartása" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "%s partíció" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Particionálás eltávolítása" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Nem helyezhető át ugyanabba a tábla!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Nem másolható ugyanabba a tábla!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" "A(z) %s tábla áthelyezésre került ide: %s. A jogosultságok módosítása " "megtörtént." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" "A(z) %s tábla átmásolásra került ide: %s. A jogosultságok módosítása " "megtörtént." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "A(z) %s tábla áthelyezése a(z) %s adatbázisba kész." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "A(z) %s tábla másolása %s néven megtörtént." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Üres a tábla neve!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Ennek a formátumnak nincsenek beállításai" @@ -9925,18 +9951,18 @@ msgstr "Szín megjelenítése" msgid "Only show keys" msgstr "Csak a kulcsok megjelenítése" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Üdvözli a %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9945,7 +9971,7 @@ msgstr "" "Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " "%1$stelepítőszkripttel%2$s el tudja készíteni." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9957,7 +9983,7 @@ msgstr "" "mezőt a config.inc.php fájlban, és győződjön meg róla, hogy ezek megfelelnek-" "e a MySQL kiszolgáló adminisztrátorától kapott információknak." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Kapcsolódási kísérlet ismétlése" @@ -9983,15 +10009,15 @@ msgstr "Felhasználónév:" msgid "Server Choice:" msgstr "Szerver választása:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "A megadott captcha helytelen, próbálja újra!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Adja meg a helyes captchat!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Önnek nem engedélyezett a bejelentkezés erre a MySQL kiszolgálóra!" @@ -10052,7 +10078,7 @@ msgstr "Adatkiírási beállítások" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" @@ -10061,7 +10087,7 @@ msgstr "A tábla adatainak kiíratása" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Esemény" @@ -10069,8 +10095,8 @@ msgstr "Esemény" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Meghatározás" @@ -10157,7 +10183,7 @@ msgstr "A mezőneveket tegye az első sorba:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Gép:" @@ -10688,7 +10714,7 @@ msgstr "Tartalomjegyzék" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11078,11 +11104,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Jelentkezzen be újra a phpMyAdminba a frissített beállítófájl betöltéséhez." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "nincs leírás" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11092,7 +11118,7 @@ msgstr "" "adatbázis létrehozásához. El kellene mennie bármelyik adatbázis „Műveletek” " "lapjára, hogy ott beállítsa a phpMyAdmin beállítástárolóját." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11101,39 +11127,39 @@ msgstr "" "%sHozzon létre%s egy „phpmyadmin” nevű adatbázist, és állítsa be ott a " "phpMyAdmin beállítástárolóját." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "A phpMyAdmin beállítástároló %slétrehozása%s a jelenlegi adatbázisban." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Hiányzó phpMyAdmin beállítástároló táblák %slétrehozása%s." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Mester replikáció" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "A kiszolgáló mesterként van beállítva egy többszörözési folyamatban." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Csatlakozott szolgák mutatása" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Szolgatöbbszöröző felhasználó hozzáadása" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Mester konfiguráció" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11148,19 +11174,19 @@ msgstr "" "és ezáltal csak bizonyos adatbázisok többszörözését végezheti el. Kérjük, " "válassza ki a módot:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Minden adatbázis replikálása, kivéve:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Adatbázisok figyelmen kívül hagyása, kivéve:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Kérjük válasszon adatbázist:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11168,7 +11194,7 @@ msgstr "" "Most szúrja be a következő sorokat a my.cnf fájl [mysqld] szakaszának " "végére, és utána indítsa újra a MySQL szervert." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11178,71 +11204,71 @@ msgstr "" "Ezt követően egy üzenet fogja tájékoztatni arról, hogy a szerver mesterként " "van beállítva." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Szolga replikáció" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Mesterkapcsolat:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Szolga SQL szál nem fut!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Szolga IO szál nem fut!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "A többszörözési folyamatban a kiszolgáló szolgaként van beállítva. Mit " "szeretne tenni:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Szolga státusz tábla megtekintése" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kontroll szolga:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Start" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Mondatvég" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Szolga újraindítása" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Csak SQL menet indítása" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Csak az SQL szál megállítása" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Csak IO menet indítása" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Csak az IO szál megállítása" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Elsődleges kiszolgáló megváltoztatása vagy újrakonfigurálása" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11251,24 +11277,24 @@ msgstr "" "Ez a kiszolgáló nincs beállítva szolgaként a többszörözési folyamatban. " "Szeretné beállítani?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Hibakezelés:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "A hibák átugrása nem szinkronizált mesterhez és szolgához vezethetnek!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Aktuális hiba átugrása" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "A következő %s hiba kihagyása." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11277,11 +11303,11 @@ msgstr "" "Ez a kiszolgáló nem mesterként van beállítva a többszörözési folyamatban. " "Szeretne beállítani?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Szolga beállítások" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11290,92 +11316,92 @@ msgstr "" "beállító fájlban (my.cnf). Ha nem, adja hozzá az alábbi sort a [mysqld] " "szakaszhoz:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Felhasználónév:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Felhasználónév" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Jelszó" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Mester állapot" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Másodlagos állapot" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Változó" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Gép" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" "Csak a --report-host=host_name-mel kezdődő szolgák láthatók ebben a listában." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Bármilyen gép" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Helyi" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ez a gép" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Bármilyen felhasználó" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Szöveges mező használata:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Géptábla használata" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11383,77 +11409,77 @@ msgstr "" "A géptábla használatakor ez a mező mellőzésre kerül, és a géptáblában lévő " "értékek kerülnek felhasználásra helyette." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Újraírás" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Jelszó előállítása:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "A többszörözés sikeresen elindult." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Hiba a többszörözés indításakor." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "A többszörözés sikeresen leállt." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Hiba a többszörözés leállításakor." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "A többszörözés sikeresen visszaállítva." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Hiba a többszörözés visszaállításakor." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Sikerült." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Hiba." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Ismeretlen hiba" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Nem lehet csatlakozni mester %s-hez." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nem olvasható a mester napló pozíció. Valószínűleg jogosultsági probléma " "lehet a mesteren." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Nem lehet módosítani a mestert!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "A mesterkiszolgáló sikeresen módosítva erre: %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11474,7 +11500,7 @@ msgstr "A(z) %1$s esemény módosult." msgid "Event %1$s has been created." msgstr "A(z) %1$s esemény létrejött." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Egy vagy több hiba történt a kérés feldolgozása közben:" @@ -11483,75 +11509,75 @@ msgstr "Egy vagy több hiba történt a kérés feldolgozása közben:" msgid "Edit event" msgstr "Esemény módosítása" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Részletek" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Eseménynév" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Módosítás erre: %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Végrehajtás ekkor" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Végrehajtás minden" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Kezdés" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Vége" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "befejezés során megőrzés" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Meghatározó" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "A meghatározónak „felhasznalonev@gepnev” formátumban kell lennie!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Meg kell adnia egy eseménynevet!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Meg kell adnia egy érvényes időköz értéket az eseményhez." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Meg kell adnia egy érvényes végrehajtási időt az eseményhez." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Meg kell adnia egy érvényes típust az eseményhez." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Meg kell adnia egy eseménymeghatározást." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Hiba a kérés feldolgozásában:" @@ -11572,7 +11598,7 @@ msgstr "Esemény ütemező állapot" msgid "The backed up query was:" msgstr "Az elmentett lekérdezés:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "visszaadás" @@ -11588,73 +11614,73 @@ msgstr "" "sikertelen lehet![/strong] Kérjük, használja a fejlettebb 'mysqli' " "kiterjesztést a problémák elkerülése érdekében." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Eljárás szerkesztése" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Érvénytelen eljárástípus: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "A(z) %1$s eljárás létrejött." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Elnézést, nem sikerült visszaállítani az eldobott eljárást." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" "A(z) %1$s eljárás módosítása megtörtént. A jogosultságok módosítva lettek." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "A(z) %1$s eljárás módosítása megtörtént." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Eljárás neve" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Paraméterek" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Irány" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Paraméter hozzáadása" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Utolsó paraméter eltávolítása" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Típus visszaadása" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Hossz/Értékek visszaadása" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Visszatérés beállításai" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Determinisztikus" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11662,25 +11688,25 @@ msgstr "" "Nincs elegendő jogosultsága a művelet végrehajtásához. További részletekért " "nézze meg a dokumentációt" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Biztonság típusa" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL-adathozzáférés" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Meg kell adnia egy eljárásnevet!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Érvénytelen rendezés lett a paraméternek adva: \"%s\"." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11688,37 +11714,37 @@ msgstr "" "Meg kell adnia hosszat/értékeket az ENUM, SET, VARCHAR és VARBINARY rutin " "paramétereihez." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Meg kell adnia egy nevet és egy típust minden rutin paraméterhez." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Meg kell adnia egy érvényes visszatérési típust a rutinhoz." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Meg kell adnia a rutin leírását." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "A(z) %s eljárás végrehajtási eredményei" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "Az eljáráson belüli utolsó utasítás %d sort érintett." msgstr[1] "Az eljáráson belüli utolsó utasítás %d sort érintett." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Eljárás végrehajtása" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Eljárás paraméterei" @@ -11740,32 +11766,32 @@ msgstr "A(z) %1$s eseményindító elkészült." msgid "Edit trigger" msgstr "Eseményindító szerkesztése" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Eseményindító neve" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Idő" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Meg kell adnia egy eseményindító nevet!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Meg kell adnia egy érvényes időzítést az eseményindítóhoz!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Meg kell adnia egy érvényes eseményt a eseményindítóhoz!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Meg kell adnia egy érvényes táblanevet!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Meg kell adnia egy eseményindító meghatározást." @@ -11890,92 +11916,92 @@ msgstr "Karakterkészletek és illesztések" msgid "Databases statistics" msgstr "Adatbázis-statisztika" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Nincsenek jogok." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Engedélyezi az összes felhasználó folyamatainak megtekintését." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nincs hatása ebben a MySQL verzióban." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11986,136 +12012,109 @@ msgstr "" "globális változók beállítása, vagy más felhasználók folyamatainak " "megszüntetése." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák zárolását." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Szükséges a szolgák többszörözéséhez." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " "helyek." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Lehetővé teszi eseményindítók létrehozását és eldobását." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Nincs" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Felhasználói csoport" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Nem igényel SSL-lel titkosított kapcsolatokat." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "SSL-lel titkosított kapcsolatokat igényel." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Egy érvényes X509 tanúsítványt igényel." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" "Megköveteli, hogy egy adott titkosító módszer használatban legyen a " "kapcsolatnál." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Megköveteli, hogy ettől a CA-tól kibocsátott érvényes X509 tanúsítvány " "legyen bemutatva." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Megköveteli, hogy ezzel a tárggyal rendelkező érvényes X509 tanúsítvány " "legyen bemutatva." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Erőforrás-korlátozások" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " "számát." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12123,117 +12122,112 @@ msgstr "" "Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " "adatbázist módosító parancsok számát." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Eljárás" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Engedélyezi az eljárás módosítását és eldobását." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Engedélyezi az eljárás végrehajtását." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Megjegyzés: a MySQL jogosultságnevek az angolból származnak." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Adminisztráció" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globális jogok" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globális" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " "hozzáadását." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Natív MySQL hitelesítés" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 jelszavas hitelesítés" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Natív MySQL hitelesítés" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12241,223 +12235,211 @@ msgstr "" "Egy fiók már létezik ugyanezzel a felhasználónévvel, de esetleg egy másik " "gépnévvel." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Gépnév:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Gépnév" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Hitelesítés bővítmény" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Jelszó-titkosítási eljárás" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s jogainak visszavonása megtörtént." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Felhasználói fiók hozzáadása" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Adatbázis a felhasználói fiók számára" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Az összes jogosultság megadása a(z) %s adatbázison." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "A(z) \"%s\" adatbázishoz hozzáférhető felhasználók" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "A felhasználó hozzáadása megtörtént." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Engedélyezés" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Nincs elegendő jogosultság a felhasználók megtekintéséhez." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Nem található felhasználó." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Bármi" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globális" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "adatbázis-specifikus" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "karakterhelyettesítő" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "tábla-specifikus" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Jogosultságok szerkesztése" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Visszavonás" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Felhasználói csoport szerkesztése" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… a régiek megőrzése." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… a régiek törlése a felhasználói táblákból." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… az összes aktív jog visszaállítása a régiekből, majd törlés." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Bejelentkezési adatok módosítása / Felhasználói fiók másolása" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Új felhasználói fiók létrehozása ezekkel a jogokkal, és …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Eljárásra jellemző jogosultságok" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "A kijelölt felhasználói fiókok eltávolítása" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Felhasználói csoport" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "A felhasználók összes jogának visszavonása, majd törlése." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s jogosultságai" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Felhasználó" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "új" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Jogok szerkesztése:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Felhasználói fiók" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12465,11 +12447,11 @@ msgstr "" "Megjegyzés: annak a felhasználónak a jogosultságait próbálja szerkeszteni, " "amellyel jelenleg be van lépve." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Felhasználói fiókok áttekintése" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12480,7 +12462,7 @@ msgstr "" "kapcsolódását, ha a fiókjuk gép része lehetővé tesz egy kapcsolatot bármely " "(%) gépről." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12493,7 +12475,7 @@ msgstr "" "használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " "%stöltse be újra a jogokat%s a folytatás előtt." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12506,11 +12488,11 @@ msgstr "" "által használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben a " "jogokat újra kell tölteni, de jelenleg nincs RELOAD joga." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." @@ -12819,12 +12801,12 @@ msgstr "Parancs" msgid "Progress" msgstr "Folyamat" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Szűrők" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Csak az aktívak megjelenítése" @@ -12845,12 +12827,12 @@ msgstr "percenként:" msgid "per second:" msgstr "másodpercenként:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Utasítások" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12874,7 +12856,7 @@ msgstr "Formázatlan értékek megjelenítése" msgid "Related links:" msgstr "Kapcsolódó hivatkozások:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12882,11 +12864,11 @@ msgstr "" "A kapcsolatok száma, amelyek megszakadtak, mert a kliens kilépett anélkül, " "hogy megfelelően lezárta volna a kapcsolat." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "A MySQL-kiszolgálóhoz való csatlakozás sikertelen kísérleteinek száma." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12896,19 +12878,19 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "A MySQL-kiszolgálóhoz való (sikeres vagy sikertelen) csatlakozás " "kísérleteinek száma." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12920,11 +12902,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12932,7 +12914,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12940,7 +12922,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12948,23 +12930,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12974,7 +12956,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12985,7 +12967,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12993,7 +12975,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13003,7 +12985,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13011,7 +12993,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY … DESC optimalizálásához használják." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13023,7 +13005,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13035,35 +13017,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13073,7 +13055,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13085,11 +13067,11 @@ msgstr "" "Ez az érték Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data értékként is számolható." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13098,7 +13080,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13106,11 +13088,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13118,7 +13100,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13133,53 +13115,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13187,35 +13169,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsync() írások száma." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13224,51 +13206,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam milliszekundumban." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő milliszekundumban." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges maximális időtartam milliszekundumban." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13276,7 +13258,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13284,7 +13266,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13293,15 +13275,15 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Használt kulcs gyorsítótár százalékban (számított érték)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13312,7 +13294,7 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13320,21 +13302,21 @@ msgstr "" "Kulcs gyorsítótár-tévesztés számított mértéke a fizikai olvasás olvasási " "kérésekhez való viszonyítása alapján (számított érték)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Fizikai írás százaléka az írási kérésekhez viszonyítva (számított érték)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13345,7 +13327,7 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13353,11 +13335,11 @@ msgstr "" "A kapcsolatok maximális száma, amely már egyidejűleg használatban van a " "szerver indítása óta." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13365,21 +13347,21 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagyok, akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13389,19 +13371,19 @@ msgstr "" "töredezettség állhat fenn, amelyet a FLUSH QUERY CACHE paranccsal lehet " "orvosolni." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13414,7 +13396,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13422,19 +13404,19 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözés állapota (még nincs megvalósítva)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13442,11 +13424,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13455,7 +13437,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13463,15 +13445,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13479,11 +13461,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13491,14 +13473,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13508,23 +13490,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor fontolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Azonnali táblazárolás alkalmainak száma." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13536,7 +13518,7 @@ msgstr "" "előbb optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy " "táblákat, vagy használja a többszörözést." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13546,11 +13528,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13561,11 +13543,11 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Szálkészlet-gyorsítótár találati aránya (számított érték)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." @@ -13594,37 +13576,37 @@ msgstr "Adatbázis level fülek" msgid "Table level tabs" msgstr "Tábla level fülek" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Felhasználók mutatása" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Felhasználói csoport hozzáadása" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "'%s' Felhasználói csoport szerkesztése" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Felhasználói csoport menü hozzárendelések" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Csoport neve:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Szerver level fülek" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Adatbázis level fülek" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tábla level fülek" @@ -13727,7 +13709,7 @@ msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison" msgid "Run SQL query/queries on table %s" msgstr "SQL lekérdezés(ek) futtatása a(z) %s táblán" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Törlés" @@ -13812,112 +13794,112 @@ msgstr "Kikapcsolás most" msgid "Version" msgstr "Verzió" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Létrehozva" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Frissítve" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Verzió törlése" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Nyomkövetési jelentés" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Szerkezeti pillanatkép" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktív" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "nem aktív" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Nyomkövetési utasítások" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Nyomkövetési adat sor törlése a jelentésből" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nincs adat" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%1$s mutatása %2$s és %3$s közti dátummal és %4$s %5$s felhasználóval" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL kiírás (fájl letöltés)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL kiírás" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Ez az opció ki fogja cserélni a táblát és a tartalmazott adatot." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL végrehajtás" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportálás: %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Adat manipuláló utasítás" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Adat definiáló utasítás" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Dátum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Felhasználónév" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s verzió pillanatfelvételre (SQL kód)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nincs" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Adatdefiníció nyomonkövetése sikeresen törölve" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Adatmanipuláció nyomonkövetése sikeresen törölve" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13925,62 +13907,62 @@ msgstr "" "A halmaz futtatható ideiglenes tábla létrehozásával és használatával. " "Győződjön meg arról, hogy van erre jogosultsága." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Kommentelje ki ezt a két sort ha nincs rá szüksége." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Az SQL utasítások exportálva lettek. Másolja ki a halmazt vagy futtassa." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Követési jelentés '%s' táblához" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s nyomkövetése aktiválva lett %2$s verzióban." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s nyomkövetése deaktiválva lett %2$s verzióban." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "%1$s / %2$s verzió törölve lett." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s verzió létrejött, a %2$s nyomonkövetése aktív." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nem követett táblák" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tábla nyomon követése" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Nyomon követett táblák" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Legutolsó verzió" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Nyomkövetés törlése" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Verziók" @@ -13988,7 +13970,7 @@ msgstr "Verziók" msgid "Manage your settings" msgstr "Beállítások kezelése" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "A módosítások mentése megtörtént." @@ -14014,7 +13996,7 @@ msgstr "Hiba a ZIP archívumban:" msgid "No files found inside ZIP archive!" msgstr "Nem található fájl a ZIP archívumban!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Végzetes hiba: a navigáció csak AJAX-on keresztül hozzáférhető" @@ -14022,55 +14004,55 @@ msgstr "Végzetes hiba: a navigáció csak AJAX-on keresztül hozzáférhető" msgid "Cannot save settings, submitted form contains errors!" msgstr "A beállítások nem menthetők, az elküldött űrlap hibákat tartalmaz!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin beállítás kódrészlet" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Illessze be a config.inc.php fájlba" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nem importálhatók a beállítások" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "A beállítás rossz adatot tartalmaz néhány mezőben." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Szeretné importálni a megmaradt beállításokat?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Mentés dátuma: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importálás fájlból" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importálás a böngészőből" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "A beállítások a böngészője helyi tárolójából lesznek importálva." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Nincsenek elmentett beállításai!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Az ön web böngészője nem támogatja ezt a szolgáltatást" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Egyesítés a jelenlegi beállítással" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14079,23 +14061,23 @@ msgstr "" "További beállításokat állíthat be a config.inc.php modosításával, pl. " "%sBeállító parancsfájl%s használatával." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Mentés PHP-fájlként" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Mentés a böngésző tárolójába" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "A beállítások a böngészője helyi tárolójába lesznek mentve." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "A meglévő beállítások felülíródnak!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Alaphelyzetbe állíthatja az összes beállítását és visszaállíthatja azokat az " @@ -14105,12 +14087,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nincs jog" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14118,20 +14100,20 @@ msgstr "" "A felhasználónév és a kiszolgálónév nem változott. Ha csak a jelszót " "szeretné megváltoztatni, akkor használja a „Jelszócsere” lapot." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Nincs elegendő jogosultság a kiszolgáló állapotának megtekintéséhez." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Nincs elegendő jogosultság a tanácsadó megtekintéséhez." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Sikerült leállítani a(z) %s. szálat." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14139,16 +14121,16 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" "Nincs elegendő jogosultság a lekérdezés statisztikáinak megtekintéséhez." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Nincs elegendő jogosultság az állapotváltozók megtekintéséhez." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Letöltés" @@ -14158,11 +14140,11 @@ msgstr "" "Helytelen űrlapbeállítás, ellenőrizze a $formsets tömböt a setup/frames/form." "inc.php fájlban!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "A beállítások nem tölthetők be vagy menthetők" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14172,7 +14154,7 @@ msgstr "" "webszerver által írható [em]config[/em] mappát a phpMyAdmin felső szintű " "könyvtárában. Különben csak letölteni vagy megjeleníteni tudja majd azt." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14180,24 +14162,27 @@ msgstr "" "Ön nem biztonságos kapcsolatot használ, valamennyi adat (beleértve a " "bizalmasakat, mint a jelszavak) átvitele titkosítatlanul történik!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Ha a szervert a HTTPS-kérések fogadására is beállították, akkor biztonságos " "kapcsolat használatához kövesse [a@%s]ezt a hivatkozást[/a]." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Veszélyes kapcsolat" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Beállítások elmentve." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14206,59 +14191,59 @@ msgstr "" "szintű könyvtárában, másolja át a gyökérkönyvtárba és törölje a config " "könyvtárat." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "A beállítások nincsenek elmentve!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Áttekintés" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "A rejtett üzenetek megjelenítése (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Nincsenek konfigurált szerverek" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Új szerver" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Alapértelmezett nyelv" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "válassza ki a felhasználó" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- nincs -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Alapértelmezett szerver" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Sorvége" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Nézet" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Betöltés" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin honlap" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Adományozás" @@ -14294,7 +14279,7 @@ msgstr "A hibák figyelmen kívül hagyása" msgid "Show form" msgstr "Űrlap megjelenítése" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14302,15 +14287,15 @@ msgstr "" "A verzió beolvasása nem sikerült. Lehet, hogy ön kapcsolat nélküli módban " "dolgozik, vagy a frissítő szerver nem válaszol." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Érvénytelen verzió karakterlánc érkezett a szerverről" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "A verzió karakterlánc nem elemezhető" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14319,7 +14304,7 @@ msgstr "" "Ön Git verziót használ, futtassa a [kbd]git pull[/kbd] parancsot :-)" "[br]Legújabb stabil verzió: %s, kiadás dátuma: %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Nem jelent meg újabb stabil verzió" @@ -14332,12 +14317,12 @@ msgstr "Hibás adat" msgid "Wrong data or no validation for %s" msgstr "Hibás adatok vagy nincs ellenőrzés ehhez: %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Nem létezik '%s' nevű adatbázis." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Már létezik %s nevű tábla!" @@ -14350,29 +14335,29 @@ msgstr "Tábla kiírás (vázlat) megtekintése" msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Sor: %1$s, oszlop: %2$s, hiba: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Nincs sor kijelölve." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s követése aktiválva van." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Nyomkövető verziók sikeresen törölve." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Nincsenek verziók kijelölve." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL utasítások végrehajtva." @@ -14542,7 +14527,7 @@ msgid "List of available transformations and their options" msgstr "Elérhető átalakítások és azok beállításainak listája" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Böngésző megjelenítés átalakítás" @@ -14564,7 +14549,7 @@ msgstr "" "vagy 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Bemenet átalakítás" @@ -14996,17 +14981,17 @@ msgid "Size" msgstr "Méret" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Létrehozás" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Utolsó frissítés" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Utolsó ellenőrzés" @@ -15048,6 +15033,12 @@ msgstr "" "A böngészőjének van phpMyAdmin beállítása ehhez a tartományhoz. Szeretné " "importálni azt a jelenlegi munkamenethez?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Nyomkövetés törlése" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Jogosultságok hozzáadása a következő adatbázisokon:" @@ -15066,10 +15057,44 @@ msgstr "Jogosultságok hozzáadása a következő eljáráshoz:" msgid "Add privileges on the following table:" msgstr "Jogok hozzáadása a következő táblán:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "új" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Nincs" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "A kijelölt felhasználói fiókok eltávolítása" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "A felhasználók összes jogának visszavonása, majd törlése." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Erőforrás-korlátozások" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" @@ -15100,7 +15125,7 @@ msgstr "Bővítmény" msgid "Author" msgstr "Szerző" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "letiltott" @@ -15256,7 +15281,7 @@ msgstr "Feldolgozó:" msgid "Comment:" msgstr "Megjegyzés:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Húzza az újrarendezéshez" @@ -15290,27 +15315,27 @@ msgstr "" msgid "Foreign key constraint" msgstr "Idegen kulcs megszorítás" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Megszorítás hozzáadása" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Belső kapcsolatok" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Belső kapcsolat" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Nincs szükség belső kapcsolatra, ha létezik megfelelő IDEGEN KULCS kapcsolat." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Válassza ki a megjelenítendő oszlopot:" @@ -15363,11 +15388,11 @@ msgstr "Eredeti szöveg" msgid "Replaced string" msgstr "Cserélt szöveg" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Csere" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "További keresési feltételek" @@ -15439,7 +15464,7 @@ msgid "at beginning of table" msgstr "a tábla elejénél" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partíciók" @@ -15463,24 +15488,24 @@ msgstr "Adathossz" msgid "Index length" msgstr "Indexhossz" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Partíciós tábla" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Particionálás szerkesztése" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Nézet szerkesztése" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Területhasználat" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Hatásos" @@ -15505,31 +15530,31 @@ msgstr "Táblaszerkezet javítása" msgid "Track view" msgstr "Nyomkövetés nézet" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Sor statisztikája" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statikus" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamikus" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "particionált" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Sor hossza" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Sor mérete" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Következő automatikus index" @@ -15542,44 +15567,44 @@ msgstr "A(z) %s oszlop eldobása megtörtént." msgid "Click to toggle" msgstr "Kattintson a váltáshoz" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Téma" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Több téma letöltése!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Létező MIME-típusok" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Elérhető böngésző megjelenítési átalakítások" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Elérhető beviteli átalakítások" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Leírás" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Átvitel a céloldalra." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Önnek nincs elég joga ahhoz, hogy épp most itt tartózkodjon!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "A profil frissítése megtörtént." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "A jelszó túl hosszú!" @@ -15650,7 +15675,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15671,17 +15696,17 @@ msgid "Unrecognized data type." msgstr "Felismerhetetlen adattípus." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Egy álnév várt." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Egy álnév korábban már megtalálva." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Váratlan pont." @@ -15734,24 +15759,24 @@ msgstr "A határoló előtt szóközö(ke)t vártunk." msgid "Expected delimiter." msgstr "Határolót vártunk." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "A(z) %1$s záró idézés várt." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Változónév várt." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Váratlan utasítás kezdet." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Felismerhetetlen utasítástípus." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Nem volt korábban elindított tranzakció." @@ -15768,10 +15793,16 @@ msgstr "Váratlan jelsor." msgid "This type of clause was previously parsed." msgstr "A kikötés ezen típusa korábban fel lett dolgozva." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Felismerhetetlen kulcsszó." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Váratlan utasítás kezdet." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Az entitás neve várt." @@ -15812,7 +15843,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "szigorú hiba" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "A nézet neve nem lehet üres" @@ -17112,6 +17143,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "A concurrent_insert 0-ra van állítva" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Natív MySQL hitelesítés" + #~ msgid "Try to connect without password." #~ msgstr "Kapcsolódási kísérlet jelszó nélkül." diff --git a/po/hy.po b/po/hy.po index 3825ba0b64..53a73c4de6 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-12-18 18:19+0000\n" "Last-Translator: Andrey Aleksanyants \n" "Language-Team: Armenian Are you sure you " "want to continue?" @@ -1932,51 +1937,51 @@ msgstr "" "Այս գործողությունը կարող է փոխել որոշ սյունակների սահմանումները։
Համոզվա՞ծ եք, որ ցանկանում եք շարունակել։" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Շարունակել" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Ավելացնել առաջնային բանալի" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Առաջնային բանալին ավելացվեց։" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Անցում դեպի հաջորդ քայլ …" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "'%s' աղյուսակի կարգավորման առաջին քայլը ավարտված է։" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Քայլի ավարտ" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Կարգավորման երկրորդ քայլ (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Պատրաստ" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Հաստատեք մասնակի կախվածությունները" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Ընտրած մասնակի կախվածությունները հետևյալ են՝" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1984,21 +1989,21 @@ msgstr "" "Նշում՝ a, b -> d,f ենթադրում է, որ a և b սյունակների համակցված արժեքները " "կարող են որոշել d և f սյունակների արժեքները։" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Ընտրած մասնակի կախվածություններ չկան։" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Ցուցադրեք ինձ հնարավոր մասնակի կախվածությունները՝ աղյուսակի տվյալների հիման " "վրա" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Թաքցնել մասնակի կախվածությունների ցանկը" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2006,181 +2011,181 @@ msgstr "" "Խնդրում ենք սպասել։ Սա կարող է տևել մի քանի վայրկյան՝ կախված տվյալների " "ծավալից և աղյուսակի սյունակների քանակից։" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Քայլ" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Կկատարվեն հետևյալ գործողությունները՝" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "ՋՆՋԵԼ %s սյունակները %s աղյուսակից" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Ստեղծել հետևյալ աղյուսակը" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Կարգավորման երրորդ քայլ (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Հաստատել անցողական կախվածությունները" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Ընտրած կախվածությունները հետևյալ են՝" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Ընտրած կախվածություններ չկան։" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Պահպանել" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Թաքցնել որոնման եզրերը" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Ցուցադրել որոնման եզրերը" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Որոնման ընդգրկույթ" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Սյունակի առավելագույնը՝" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Սյունակի նվազագույնը՝" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Նվազագույն արժեքը՝" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Առավելագույն արժեքը՝" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Թաքցնել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Ցուցադրել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Ամեն կետը ներկայացնում է տվյալների տողը։" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Մկնիկը կետի վրա պահելուց կցուցադրվի դրա պիտակը։" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Խոշորացնելու համար՝ մկնիկով ընտրեք գծապատկերի հատվածը։" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Կտտացրեք 'Վերակայել չափը' կոճակը՝ սկզբնական չափերին վերադառնալու համար։" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Կտտացրեք տվյալների կետը՝ տվյալների տողը դիտելու և հավանաբար խմբագրելու համար։" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Գծագիրը կարող է չափափոխվել՝ այն ներքևի աջ անկյան երկայնքով քաշելու դեպքում։" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Ընտրեք երկու սյունակ" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Ընտրեք երկու տարբեր սյունակ" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Տվյալների կետի պարունակությունը" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Անտեսել" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Պատճենել" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Կետ" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Գիծ" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Բազմանկյուն" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Երկրաչափություն" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Ներքին ուրվագիծ" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Արտաքին ուրվագիծ" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Ցանկանու՞մ եք պատճենել ծածկագրման բանալին։" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Ծածկագրման բանալի" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2188,24 +2193,24 @@ msgstr "" "Ցուցադրում է, որ դուք կատարել եք փոփոխություններ այս էջում։ Դրանք չեղարկելու " "համար ձեզանից հաստատում կպահանջվի" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Ընտրեք հղման բանալին" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Ընտրեք արտաքին բանալին" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Ընտրեք առաջնային բանալիի կամ յուրահատուկ բանալիի սյունակը։" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Ընտրեք սյունակը՝ ցուցադրելու համար" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2213,76 +2218,76 @@ msgstr "" "Դուք չեք պահպանել դասավորության մեջ կատարած փոփոխությունները։ Առանց " "պահպանման դրանք չեղակրվելու են։ Շարունակե՞լ։" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Էջի անուն" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Պահպանել էջը" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Պահպանել էջը որպես" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Բացել էջը" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Ջնջել էջը" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Առանց վերնագրի" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Ընտրեք հաջորդ էջը" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Տրամադրեք վավերական էջի անունը" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Ցանկանու՞մ եք պահպանել փոփոխությունները ընթացիկ էջում։" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Էջը հաջողությամբ ջնջվեց" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Կապակցումների ուրվագրի արտահանում" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Փոփոխությունները պահպանվեցին" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ավելացնել հարաչափ \"%s\" սյունակի համար։" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "ստեղծվել է %d առարկա։" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Կատարել" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Սեղմեք Esc ստեղնը՝ խմբագրումը չեղարկելու համար։" -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2290,41 +2295,41 @@ msgstr "" "Դուք խմբագրել եք որոշ տվյալներ, և դրանք դեռ չեն պահպանվել։ Համոզվա՞ծ եք, որ " "ցանկանում եք լքել այս էջը՝ առանց տվյալների պահպանման։" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Քաշեք՝ վերադասակարգելու համար։" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Կտտացրեք՝ այդյունքները այս սյունակով դասակարգելու համար։" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Կտտացրեք՝ նշելու/ապանշելու համար։" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Երկկտտացրեք՝ սյունակի անունը պատճենելու համար։" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Կտտացրեք ելնող սլաքը՝
սյունակի տեսանելիությունը փոխարկելու համար։" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Ցուցադրել բոլորը" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2333,13 +2338,13 @@ msgstr "" "պահպանելուց հետո ցանցավորման խմբագրման, նշատուփի, խմբագրման և ջնջման " "հղումների հետ կապված հատկությունները կարող են չաշխատել։" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Տրամադրեք վավերական տասնվեցերորդական տող։ Վավերական նշաններ են հանդիսանում " "0-9, A-F։" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2347,103 +2352,103 @@ msgstr "" "Իսկապե՞ս եք ցանկանում ցուցադրել բոլոր տողերը։ Մեծ աղյուսակի դեպքում դա կարող " "է խանգարել դիտարկչի աշխատանքը։" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Սկզբնական երկարություն" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "չեղարկել" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Ընդհատված" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Հաջողում" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Ներմուծել կարգավիճակը" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Քաշեք ֆայլերը այստեղ" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Սկզբից նշեք տվյալների բազան" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Տպել" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Դուք կարող եք խմբագրել արժեքների մեծ մասը՝
դրանց վրա անմիջապես " "երկկտտացնելով։" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Դուք կարող եք նաև խմբագրել տվյալների մեծ մասը
անմիջապես դրանց վրա " "կտտացնելով։" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Անցնել հղմանը՝" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Պատճենել սյունակի անունը։" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Աջ-կտտացրեք սյունակի անունը՝ այն պատճենելու համար։" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Ստեղծել գաղտնաբառը" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Ստեղծել" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Ավելին" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Ցուցադրել փեղկը" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Թաքցնել փեղկը" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Ցուցադրել թաքնված նավարկման ստորակարգման տարրերը։" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Կապել հիմնական փեղկին" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Ապակապել հիմնական փեղկից" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Հարցված էջը չի գտնվել պատմության մեջ, հնարավոր է որ այն սպառվել է։" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2453,27 +2458,27 @@ msgstr "" "այն։ Ամենավերջին տարբերակն է՝ %s, թողարկված՝ %s։" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", վերջին կայուն տարբերակն է՝" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "արդի է" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Ստեղծել ներկայացում" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2481,15 +2486,15 @@ msgstr "" "Տեղի է ունեցել JavaScript-ի ճակատագրական սխալը։ Ցանկանու՞մ եք ուղարկել սխալի " "զեկույցը։" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Փոխել զեկուցման կայանքները" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Ցուցադրել զեկույցի մանրամասները" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2497,7 +2502,7 @@ msgstr "" "Ձեր արտահանումը թերի է՝ PHP-ի մակարդակում կատարման ժամանակի ցածր սահմանաչափի " "պատճառով։" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2507,60 +2512,60 @@ msgstr "" "ժամանակ որոշ դաշտերը կարող են անտեսվել՝ PHP-ի կազմաձևի max_input_vars արժեքի " "պատճառով։" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Սպասարկչում հայտնաբերվել են որոշակի սխալներ։" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Նայեք ընթացիկ պատուհանի ներքևի մասը։" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Անտեսել բոլորը" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Ձեր կայանքներին համապատասխան դրանք այժմ ներառվում են, խնդրում ենք սպասել։" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Կատարե՞լ այս հարցումը ևս մեկ անգամ։" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Իսկապե՞ս եք ցանկանում ջնջել այս էջանիշը։" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" "SQL-ի վրիպազերծման տեղեկությունները ստանալու ընթացքում տեղի է ունեցել սխալ։" -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s հարցում կատարվեց %s անգամ %s վայրկյանում։" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "փոխանցվեց %s փաստարկ" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Ցուցադրել փաստարկները" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Թաքցնել փաստարկները" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Տևողությունը՝" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2569,355 +2574,375 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Կրկնապատկել տվյալների բազան" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Ավելացնել աղյուսակին նախածանցը՝" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix:" msgid "Replace table with prefix" msgstr "Փոխարինել աղյուսակի նախածանցը՝" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Կրկնապատկել աղյուսակը նախածանցով" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Նախորդ" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Հաջորդ" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Այսօր" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Հունվարի" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Փետրվարի" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Մարտի" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Ապրիլի" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Մայիսի" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Հունիսի" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Հուլիսի" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Օգոստոսի" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Սեպտեմբերի" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Հոկտեմբերի" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Նոյեմբերի" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Դեկտեմբերի" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Հնվ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Փտվ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Մրտ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Ապր" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Մյս" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Հնս" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Հյս" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Օգս" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Սպտ" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Հկտ" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Նյմ" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Դկտ" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Կիրակի" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Երկուշաբթի" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Երեքշաբթի" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Չորեքշաբթի" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Հինգշաբթի" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Ուրբաթ" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Շաբաթ" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Կիր" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Երկ" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Երք" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Չրք" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Հնգ" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Ուր" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Շբթ" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Կի" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Եկ" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Եք" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Չք" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Հն" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Ու" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Շբ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Շաբ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "թ." -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Ժամ" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Րոպե" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Վայրկյան" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Այս դաշտը պարտադիր է" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Ուղղեք այս դաշտը" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Տրամադրեք վավերական էլ-փոստի հասցեն" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Տրանադրեք վավերական URL-ը" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Տրամադրեք վավերական ամսաթիվը" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Տրանադրեք վավերական ամսաթիվը ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Տրամադրեք վավերական թիվը" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Տրամադրեք վավերական վարկային քարտի համարը" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Մուտքագրեք միայն թվանշանները" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Մուտքագրեք նույն արժեքը ևս մեկ անգամ" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ ավել" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ պակաս" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Խնդրում ենք մուտքագրել արժեքը՝ {0}-ի և {1}-ի միջև երկարությամբ" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ի և {1}-ի միջև" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից պակաս կամ հավասար" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից ավել կամ հավասար" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Խնդրում ենք վավերական ամսաթիվը և ժամանակը" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Խնդրում ենք մուտքագրել վավերական տասնվեցերորդական արժեքը" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Սխալ" @@ -2982,20 +3007,20 @@ msgid "Charset" msgstr "Կոդավորում" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Համադրում" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Երկուական" @@ -3190,7 +3215,7 @@ msgid "Czech-Slovak" msgstr "Չեխոսլովակերեն" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "անհայտ" @@ -3244,26 +3269,26 @@ msgstr "" msgid "Font size" msgstr "Տառաչափ" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Առանց էջանիշերի" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL հարցման կառավարակետ" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3271,26 +3296,26 @@ msgstr "" "Սպասարկիչի չի պատասխանում (կամ էլ սպասարկչի տեղային բնակը պատշաճ կազմաձևած " "չէ)։" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Սպասարկիչը չի պատասխանում։" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Խնդրում ենք ստուգել տվյալների բազան պարունակող պանակի արտոնությունները։" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Մանրամասները …" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Բացակայող հարաչափը՝" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Չհաջողվեց միանալ որպես controluser, ինչպես այն սահմանված է կազմաձևի մեջ։" @@ -3385,110 +3410,105 @@ msgstr "Զետեղել՝" msgid "Del:" msgstr "Ջնջել՝" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "%s տվյալների բազային ուղղված SQL հարցումը՝" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Կատարել հարցումը" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Պահպանված էջանիշերում որոնում՝" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Նոր էջանիշ" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Ստեղծել էջանիշ" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Արդիացնել էջանիշը" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Ջնջել էջանիշը" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "բառերից ցանկանցածը" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "բոլոր բառերը" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "ըստ ամբողջական արտահայտության" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "որպես կանոնավոր արտահայտություն" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "«%s» %s որոնման արդյունքները՝" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Ընդամենը՝ %s համընկնում" msgstr[1] "Ընդամենը՝ %s համընկնում" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s համընկնում %2$s-ում" msgstr[1] "%1$s համընկնում %2$s-ում" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Դիտարկում" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Ջնջե՞լ համընկնումները %s աղյուսակի համար։" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Որոնումը տվյալների բազայում" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Բառեր կամ արժեքներ՝ որոնելու համար (դերանշան՝ \"%\")՝" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Գտնել՝" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Բառերն առանձնացվում են բացատներով (« »)։" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Աղյուսակներում՝" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Ապանշել բոլորը" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Սյունակում՝" @@ -3508,30 +3528,30 @@ msgstr "Զտել տողերը" msgid "Search this table" msgstr "Որոնել այս աղյուսակում" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Սկիզբ" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Նախորդ" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Հաջորդ" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Վերջ" @@ -3540,7 +3560,7 @@ msgstr "Վերջ" msgid "All" msgstr "Բոլորը" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Տողերի քանակը՝" @@ -3549,8 +3569,8 @@ msgstr "Տողերի քանակը՝" msgid "Sort by key" msgstr "Դասակարգել ըստ բանալիի" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3572,10 +3592,10 @@ msgstr "Դասակարգել ըստ բանալիի" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Կայանքներ" @@ -3615,29 +3635,29 @@ msgstr "Գրվածք (Well Known Text)" msgid "Well Known Binary" msgstr "Երկուական (Well Known Binary)" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Տողը ջնջվեց։" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Ավարտել" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Կարող է մոտավոր լինել։ Դիմեք [doc@faq3-11]FAQ 3.11[/doc]։" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Ձեր SQL հարցումը հաջողությամբ կատարվեց։" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3646,73 +3666,73 @@ msgstr "" "Այս ներկայացումը ունի առնվազն այս տողերի քանակը։ Խնդրում ենք դիմել " "%sփաստաթղթերին%s։" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s -ից %2s տողերի ցուցադրում" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "Ընդամենը %1$d,%2$d հարցման մեջ" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "Ընդամենը %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Հարցումը տևեց %01.4f վայրկյան։" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Ներառյալ նշվածները՝" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Նշել բոլորը" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Հարցման արդյունքների օգտագործումը" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Ցուցադրել գծապատկերը" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Տեսողացնել GIS տվյալները" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Հղումներ չեն գտնվել։" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Չկա" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3720,25 +3740,25 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Չափազանց մեծ սխալների քանակը, որոշները չեն ցուցադրվում։" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Զեկույց" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Հաջորդ անգամ զեկույցը ինքնաշխատ ուղարկել" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Ֆայլը՝ վերբեռնված ֆայլ չէր։" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Վերբեռնված ֆայլը գերազանցում է php.ini-ում նշված upload_max_filesize " "հարաչափի սահմանաչափը։" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3746,47 +3766,47 @@ msgstr "" "Վերբեռնված ֆայլը գերազանցում է HTML ձևի մեջ նշված MAX_FILE_SIZE հարաչափի " "սահմանաչափը։" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Վերբեռնված ֆայլը միայն մասնակի է վերբեռնվել։" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Բացակայում է ժամանակավոր պանակը։" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Չհաջողվեց գրել ֆայլը սկավառակի վրա։" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Ֆայլի վերբեռնումը կասեցվել է ընդլայնման պատճառով։" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Ֆայլի վերբեռման անհայտ սխալ։" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Չհաջողվեց կարդալ ֆայլը։" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Վերբեռնված ֆայլի տեղափոխման սխալ, դիմեք [doc@faq1-11]FAQ 1.11[/doc]։" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Վերբեռնված ֆայլի տեղափոխման սխալ։" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Չհաջողվեց կարդալ վերբեռնված ֆայլը։" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3795,28 +3815,28 @@ msgstr "" "Դուք փորձեցիք բեռնել չաջակցվող սեղմումով (%s) ֆայլ։ Այս եղանակի աջակցումը " "կամ չի կիչառվում, կամ էլ կասեցված է ձեր կազմաձևի մեջ։" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Այս պահին մեկնարկված է Git %1$s խմբագրությունը %2$s ճյուղից։" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git-ի վերաբերյալ տեղեկությունները բացակայում են։" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Բացել phpMyAdmin-ը նոր պատուհանում" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Տպման տարբերակը" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Կտտացրեք փեղկի վրա՝ դեպի էջի վերևը ոլորելու համար" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript-ը պետք է միացրած լինի այս պահից սկսած։" @@ -3825,20 +3845,20 @@ msgid "No index defined!" msgstr "Ցուցակագիրը սահմանված չէ։" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Ցուցակագրեր" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3848,59 +3868,59 @@ msgstr "Ցուցակագրեր" msgid "Action" msgstr "Գործողություն" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Բանալիի անվանումը" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Յուրահատուկ" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Փաթեթավորված" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Բազմության հզորություն" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Մեկնաբանություն" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Առաջնային բանալին ջնջվեց։" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "%s ցուցակագիրը ջնջվեց։" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Ջնջել" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3909,19 +3929,19 @@ msgstr "" "%1$s և %2$s ցուցակարգերը նույնն են, այդպես որ դրանցից մեկը հնարավոր է " "հեռացնել։" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "էջի համարը՝" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Լեզու" @@ -3947,11 +3967,11 @@ msgstr "Սպասարկիչ" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3970,14 +3990,15 @@ msgid "View" msgstr "Ներկայացում" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3986,8 +4007,8 @@ msgid "Table" msgstr "Աղյուսակ" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3995,45 +4016,45 @@ msgstr "Աղյուսակ" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Որոնում" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Զետեղել" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Արտոնություններ" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Գործողություններ" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Հետագծում" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4049,16 +4070,16 @@ msgstr "Ձգաններ" msgid "Database seems to be empty!" msgstr "Տվյալների բազան դատարկ է" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Հարցում" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Գործընթացներ" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4066,20 +4087,20 @@ msgstr "Գործընթացներ" msgid "Events" msgstr "Իրադարձություններ" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Ձևավորող" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Կենտրոնական սյունակներ" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Տվյալների բազաներ" @@ -4088,53 +4109,53 @@ msgid "User accounts" msgstr "Օգտվողների հաշիվներ" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Երկուական մատյան" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Կրկնապատկում" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Փոփոխականներ" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Կոդավորումներ" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Պահպանման տեսակներ" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Խրվակներ" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "ազդվել է %1$d տող։" msgstr[1] "ազդվել է %1$d տող։" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d տող ջնջվեց։" msgstr[1] "%1$d տող ջնջվեց։" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4182,27 +4203,27 @@ msgstr "Ընտրյալ աղյուսակներ" msgid "Favorites" msgstr "Ընտրյալները" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Տրամադրեք անուն՝ էջանշված որոնման համար։" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Բացակայում են տեղեկություններ՝ էջանշված որոնումը պահպանելու համար։" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Այս անունով միույթը արդեն իսկ առկա է։" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Բացակայում են տեղեկություններ՝ որոնումը ջնջելու համար։" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Բացակայում են տեղեկություններ՝ որոնումը բեռնելու համար։" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Որոնումը բեռնելու սխալ։" @@ -4264,7 +4285,7 @@ msgstr "Ցուցադրել բաց աղյուսակների ցանկը" msgid "Show slave hosts" msgstr "Ցուցադրել ենթարկվող խնամորդները" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Ցուցադրել հիմնական սպասարկչի կարգավիճակը" @@ -4318,14 +4339,14 @@ msgid_plural "%d minutes" msgstr[0] "%d րոպե" msgstr[1] "%d րոպե" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Աղյուսակների պահպանման այս տեսակի համար մանրակրկիտ կարգավիճակի " "տեղեկությունները բացակայում են։" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." @@ -4333,65 +4354,65 @@ msgstr "" "%s-ը հանդիսանում է տվյալ MySQL սպասարկչում աղյուսակների պահպանման լռելյայն " "տեսակը։" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s աղյուսակների տասակը աջակցվում է այս MySQL սպասարկչում։" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s աղյուսակների տեսակը կասեցվել է այս MySQL սպասարկչում։" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Այս MySQL սպասարկիչը չի աջակցում աղյուսակների պահպանման %s տեսակը։" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Աղյուսակի անհայտ կարգավիճակ՝" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "`%s` ելակետային տվյալների բազան չի գտնվել։" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "`%s` նպատակային տվյալների բազան չի գտնվել։" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Անվավեր տվյալների բազան՝" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Անվավեր աղյուսակի անունը՝" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Չհաջողվեց վերանվանել աղյուսակը %1$s-ից %2$s։" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s աղյուսակը վերանվանվել է %2$s-ին։" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Չհաջողվեց պահպանել աղյուսակի միջերեսի նախընտրանքները։" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4399,19 +4420,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Առաջնային բանալիի անունը պետք է լինի \"PRIMARY\"։" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Հնարավոր չէ՝ վերանվանել ցուցակագիրը PRIMARY անունով։" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Ցուցակագրի մասերը սահմանված չեն։" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s-ի արտաքին բանալիի ստեղծման սխալ (ստուգեք տվյալների տեսակները)" @@ -4699,7 +4720,7 @@ msgid "Date and time" msgstr "Ամսաթիվ և ժամանակ" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4714,126 +4735,126 @@ msgstr "Տարածական" msgid "Max: %s%s" msgstr "Առավելագույնը՝ %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Վերլուծման ժամանակ գտնվել է %d սխալ։" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL-ի պատասխանը՝ " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL-ի վերլուծում" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Զանցել SQL-ի վերլուծումը" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Առանց PHP կոդի" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Կատարել հարցումը" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Ստեղծել PHP կոդը" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Թարմացնել" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Հարցումների հսկում" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Ներտող խմբագրում" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Կիր" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Yթ. ժ. %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s օր, %s ժամ, %s րոպե և %s վայրկյան" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Բացակայող հարաչափը՝" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Զանցել \"%s\" տվյալների բազային։" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Զննել համակարգիչը՝" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Վերբեռնումների համար նախատեսված պանակը անհասանելի է։" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Վերբեռնելու ֆայլեր չկան։" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Դատարկել" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Կատարել" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Օգտվողներ" @@ -4847,7 +4868,7 @@ msgstr "րոպեում" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "ժամում" @@ -4855,12 +4876,12 @@ msgstr "ժամում" msgid "per day" msgstr "օրում" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Որոնում՝" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4868,7 +4889,7 @@ msgstr "Որոնում՝" msgid "Description" msgstr "Նկարագրություն" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Օգտագործել այս արժեքը" @@ -4909,22 +4930,22 @@ msgstr "ԱՅՈ" msgid "NO" msgstr "ՈՉ" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Անուն" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Երկարությունը/Արժեքները" @@ -4933,7 +4954,7 @@ msgstr "Երկարությունը/Արժեքները" msgid "Attribute" msgstr "Հատկանիշ" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4950,11 +4971,11 @@ msgstr "Ավելացնել սյունակ" msgid "Select a column." msgstr "Ընտրեք սյունակը։" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Ավելացնել նոր սյունակ" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4962,7 +4983,7 @@ msgstr "Ավելացնել նոր սյունակ" msgid "Attributes" msgstr "Հատկանիշներ" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4972,28 +4993,28 @@ msgstr "" "դրույթը անհամատեղելի է phpMyAdmin-ի հետ և կարող է հանգեցնել որոշ տվյալների " "վնասմանը։" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s սպասարկչի համար նշված խնամորդի անունը անվավեր է։ Խնդրում ենք կատարել " "ուղղումներ ձեր կազմաձևի ֆայլում։" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Սպասարկիչ %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Կազմաձևի ֆայլում նշված վավերացման եղանակը անվավեր է՝" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5005,20 +5026,20 @@ msgstr "" "[/em]-ի համար։ Տվյալ պահին phpMyAdmin-ը օգտագործում է սպասարկչի լռելյայն " "ժամային գոտին։" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Անհրաժեշտ է արդիացնել %s-ը %s կամ բարձր տարբերակին։" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Սխալ՝ հետքանշիչի անհամապատասխանություն" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS վրագրելու փորձ" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "հնարավոր խոցելիություն" @@ -5584,7 +5605,7 @@ msgid "Compress on the fly" msgstr "Թռուցիկ սեղմում" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Կազմաձևի ֆայլ" @@ -5690,12 +5711,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Կատարման առավելագույն ժամանակը" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Օգտագործել %s արտահայտությունը" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Պահպանել որպես ֆայլ" @@ -5705,7 +5726,7 @@ msgstr "Ֆայլի կոդավորում" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Ձևաչափ" @@ -5830,7 +5851,7 @@ msgid "Save on server" msgstr "Պահպանել սպասարկչում" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5843,7 +5864,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Ավելացնել AUTO_INCREMENT" @@ -5852,7 +5873,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL համատեղելիության եղանակ" @@ -5882,7 +5903,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Ավելացնել %s" @@ -6048,7 +6069,7 @@ msgid "Customize the navigation tree." msgstr "Կազմաձևել նավարկման ծառը։" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Սպասարկիչներ" @@ -6899,7 +6920,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Օգտագողծվող վավերացման եղանակը։" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Վավերացման տեսակը" @@ -7546,7 +7567,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Ստուգել արդիացման առկայությունը" @@ -7554,10 +7575,10 @@ msgstr "Ստուգել արդիացման առկայությունը" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Տարբերակի ստուգում" @@ -7692,24 +7713,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "OpenDocument-ի ձևաչափ" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s աղյուսակը դատարկվել է։" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "%s ներկայացումը ջնջվեց։" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "%s աղյուսակը ջնջվեց։" @@ -7723,12 +7744,12 @@ msgid "Position" msgstr "Դիրք" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Իրադարձության տեսակը" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Սպասարկչի ID" @@ -7737,7 +7758,7 @@ msgid "Original position" msgstr "Սկզբնական դիրքը" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Տեղեկություններ" @@ -7751,42 +7772,42 @@ msgstr "" msgid "Show Full Queries" msgstr "Ցուցադրել հարցումները ամբողջությամբ" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Տվյալների բազաներ չկան" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s տվյալների բազան ստեղծված է։" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d տվյալների բազա հաջողությամբ ջնջվեց։" msgstr[1] "%1$d տվյալների բազա հաջողությամբ ջնջվեցին։" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Տողեր" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Ընդամենը" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7813,34 +7834,34 @@ msgstr "" msgid "Enable statistics" msgstr "Միացնել վիճակագրումը" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Սպասարկչի փոփոխականները և կայանքները դիտելու համար արտոնությունները բավարար " "չեն։ %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Արժեքի սահմանունը ձախողվեց" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Տվյալներ ստանալու համար որևէ SQL հարցում չի տրվել։" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Ցուցադրելու տվյալներ չկան" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s աղյուսակը հաջողությամբ փոխվել է։" @@ -7883,7 +7904,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Հարցման սխալ" @@ -7900,12 +7921,12 @@ msgstr "Փոխել" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Ցուցակագիր" @@ -7926,13 +7947,13 @@ msgstr "Ամբողջ գրվածքով" msgid "Distinct values" msgstr "Հատուկ արժեքները" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Առանց փոփոխությունների" @@ -7952,165 +7973,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Առանց գաղտնաբառի" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Գաղտնաբառ՝" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Հաստատել՝" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Ընթացիկ սպասարկչից տվյալների բազաների արտահանումը" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "\"%s\" տվյալների բազայից աղյուսակների արտահանում" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "\"%s\" աղյուսակից տողերի արտահանում" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Արտահանել ձևանմուշները՝" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Նոր ձևանմուշ՝" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Ձևանմուշի անունը" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Ստեղծել" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Առկա ձևանմուշներ՝" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Ձևանմուշ՝" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Արդիացում" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Ընտրեք ձևանմուշը" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Արտահանման եղանակը՝" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Արագ՝ ցուցադրել նվազագույն կայանքները" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Ընտելական՝ ցուցադրել բոլոր առկա կայանքները" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Տվյալների բազաներ՝" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Աղյուսակներ՝" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Ձևաչափը՝" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Կոդավորման փոխարկումը՝" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Տողեր՝" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Արտածում՝" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ կփոխարինվի սպասարկչի անունով" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ կփորախինվի տվյալների բազայի անունով" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ կփորախինվի աղյուսակի անունով" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8118,98 +8143,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "օգտագործել հետագա արտահանուների համար" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Ֆայլի կոդավորում՝" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Սեղմումը՝" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Ցուցադրել արտածումը գրվածքի տեսքով" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Արտահանել տվյալների բազաները՝ առանձին ֆայլերի տեսքով" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Զանցցել այղուսակներ, որոնց չափը ավվելի մեծ է, քան" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Ընտրեք տվյալների բազան" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Ընտրեք աղյուսակը" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Նոր տվյալների բազայի անունը" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Նոր աղյուսակի անունը" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Սյունակի նախորդ անունը" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Նոր սյունակի անունը" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s-ը %2$s ճյուղից" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "ճյուղ չկա" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "ստեղծվել է %1$s, %2$s-ի կողմից" @@ -8610,86 +8635,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[Տեղի է ունեցել ՀԵՏԴԱՐՁ]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Խմբագրել կայանքներ %s-ի համար" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Անցնել աղյուսակին՝ %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s-ի կառուցվածքը" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Անցնել ներկայացնամնը (VIEW)՝ %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8702,86 +8727,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Թաքցնել" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Գործառույթ" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Երկուական տվյալներ - չեն խմբագրվում" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Կամ" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Խմբագրել/Զետեղել" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "և հետո" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Զետեղել որպես նոր տող" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Զետեղել որպես նոր տող և անտեսել սխալներ" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Ցուցադրել զետեղման հարցումը" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Վերադառնալ նախորդ էջին" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Զետեղել մեկ այլ նոր տող" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Խմբագրել հաջորդ տողը" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Օգտագործեք TAB ստեղնը՝ արժեքների դաշտերի միջև տեղափոխվելու, կամ CTRL+սլաքեր՝ " "ցանկացած տեղ տեղափոխվելու համար։" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8792,31 +8818,31 @@ msgstr "" msgid "Value" msgstr "Արժեքը" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL հարցման ցուցադրում" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Զետեղված տողի id՝ %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Հաջողում" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Միայն կառուղվածքը" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Կառուցվածքն ու տվյալները" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Միայն տվյալները" @@ -8827,14 +8853,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Ավելացնել AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Ավելացնել սահմանափակում" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Կարգավորել արտոնությունները" @@ -8879,8 +8905,8 @@ msgstr "Ընթացակարգեր՝" msgid "Views:" msgstr "Ներկայացումներ՝" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Ցուցադրել" @@ -8921,17 +8947,17 @@ msgid_plural "%s results found" msgstr[0] "գտնվել է %s արդյունք" msgstr[1] "գտնվել է %s արդյունք" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Կոծկել բոլորը" @@ -8946,7 +8972,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Չհաջողվեց բեռնել \"%1$s\" դասը" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Ընդարձակել/Կոծկել" @@ -8965,7 +8991,7 @@ msgstr "Նոր" msgid "Database operations" msgstr "Տվյալների բազայի հետ գործողություններ" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Ցուցադրել թաքնված տարրերը" @@ -9064,11 +9090,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Ընտրեք ցանկացած մեկը …" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Նման սյունակ չկա" @@ -9302,8 +9328,8 @@ msgid "Rename database to" msgstr "Վերանվանել տվյալների բազան" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9347,177 +9373,177 @@ msgstr "(եզակի)" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Վերանվանել աղյուսակը" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Աղյուսակի մեկնաբանությունը" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Աղյուսակի կայանքները" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Պահպանման տեսակը" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Փոխել բոլոր սյունակների համադրումները" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Փոխարկվել կրկնապատկված աղյուսակին" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Աղյուսակի սպասարկում" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Վերլուծել աղյուսակը" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Ստուգել աղյուսակը" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Ստուգել աղյուսակի ստւգագումարը" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Ապամասնատել աղյուսակը" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Օպտիմիզացնել աղյուսակը" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Վերականգնել աղյուսակը" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Ջնջել տվյալները կամ աղյուսակը" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Դատարկել աղյուսակը (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Ջնջել աղյուսակը (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Վերլուծել" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Ստուգում" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Բարելավվում" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Վերակառուցում" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Միավորել" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Մասնաբաժինների սպասարկում" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Մասնաբաժին %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Հեռացնել մասնաբաժանումը" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Հնարավոր չէ տեղափոխել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Հնարավոր չէ կրկնապատկել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s աղյուսակը տեղափոխվել է %s։" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s աղյուսակը կրկնապատկվել է %s։" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Աղյուսակի անունը նշված չէ։" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Այս ձևաչափի համար կայանքներ չկան" @@ -9544,25 +9570,25 @@ msgstr "Ցուցադրման գույնը" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Հնարավար չէ միանալ՝ անվավեր կայանքներ։" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Բարի գալուստ %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9570,7 +9596,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Կրկնել միանալու փորձը" @@ -9595,15 +9621,15 @@ msgstr "Օգտանուն՝" msgid "Server Choice:" msgstr "Սպասարկչի ընտրությունը՝" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9664,7 +9690,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9673,7 +9699,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Իրադարձություն" @@ -9681,8 +9707,8 @@ msgstr "Իրադարձություն" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Սահմանում" @@ -9768,7 +9794,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Խնամորդը՝" @@ -10266,7 +10292,7 @@ msgstr "Բովանդակության աղյուսակը" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Լրացուցիչ" @@ -10586,58 +10612,58 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "նկարագրություն չկա" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Հիմնական սպասարկչի կրկնապատկում" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Այս սպասարկիչը կազմաձևած է որպես հիմնական կրկնապատկման գործընթացի համար։" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Ցուցադրել միացրալ ենթարկվող սպասարկիչները" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Ավելացնել կրկնապատկման ենթարկվող օգտվողին" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Հիմնական սպասարկչի կազմաձևում" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10652,25 +10678,25 @@ msgstr "" "ընտրելով կրկնապատկման համար մի քանիսը։ Խնդրում ենք նշել ձեր նախընտրելի " "եղանակը՝" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -10680,71 +10706,71 @@ msgstr "" "կոճակը, ինչից հետո դուք պետք է տեսնեք տեղեկություն՝ որ տվյալ սպասարկիչը " "կազմաձևած է որպես հիմնական։" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Ենթարկվող սպասարկչի կրկնապատկում" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Հիմնական միացում՝" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Ենթարկվող SQL հոսքը մեկնարկված չէ։" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Սպասարկիչը կազմաձևած է որպես ենթարկվող՝ կրկնապատկման գործընթացի համար։ Նշեք " "գործողությունը՝" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Ամբողջական մեկնարկում" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Ամբողջական կանգ" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Վերակայել ենթարկվող սպասարկիչը" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Կանգնեցնել միայն SQL հոսքը" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Կանգնեցնել միայն ներածման/արտածման հոսքը" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Փոփոխել կամ վերակազմաձևել հիմնական սպասարկիչը" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10753,24 +10779,24 @@ msgstr "" "Այս սպասարկիչը կազմաձևած չէ որպես ենթարկվող՝ կրկնապատկման գործընթացի համար։ " "Ցանկանու՞մ եք կազմաձևել այն։" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Սխալների կառավարում՝" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Անտեսել ընթացիկ սխալը" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Անտեսել հաջորդ %s սխալները։" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10779,175 +10805,175 @@ msgstr "" "Այս սպասարկիչը կազմաձևած չէ որպես հիմնական՝ կրկնապատկման գործընթացի համար։ " "Ցանկանու՞մ եք կազմաձևել այն։" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Օգտանուն՝" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Օգտանուն" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Գաղտնաբառ" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Միացք՝" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Հիմնական սպասարկչի կարգավիճակը" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slave կարգավիճակ" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Փոփոխական" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Խնամորդ" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Ցանկացած խնամորդ" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Տեղային" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Յաս խնամորդը" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Ցանկացած օգտվող" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Օգտագործել գրվածքի դաշտը՝" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Օգտագործել խնամորդի աղյուսակը" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Հաստատել" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Ստեղծել գաղտնաբառը՝" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Կրկնապատկումը հաջողությամբ մեկնարկվեց։" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Կարկնապատկումը մեկնարկելու սխալ։" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Կրկնապատկումը հաջողությամբ կանգնեցվեց։" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Կրկնապատկումը կանգնեցնելու սխալ։" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Կրկնապատկումը հաջողությամբ վերակայվեց։" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Կրկնապատկումը վերակայելու սխալ։" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Հաջողում։" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Սխալ։" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Անհայտ սպալ" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Չհաջողվեց միանալ հիմնական սպասարկչին %s։" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Հնարավոր չէ փոխել հիմնական սպասարկիչը։" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Հիմնական սպասարկիչը հաջողությամբ փոխվեց %s-ին։" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10968,7 +10994,7 @@ msgstr "%1$s Իրադարձությունը փոփոխվեց։" msgid "Event %1$s has been created." msgstr "%1$s իրադարձությունը ստեղծվեց։" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Ձեր հարցումը կատարելու ժամանակ առաջացել են մեկ կամ ավել սխալներ՝" @@ -10977,76 +11003,76 @@ msgstr "Ձեր հարցումը կատարելու ժամանակ առաջացե msgid "Edit event" msgstr "Խմբագրել իրադարձությունը" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Մանրամասները" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Իրադարձության անուն" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Փոխել %s-ի" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Կատարել" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Կատարել ամեն" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Սկիզբ" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Վերջ" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Վերջացնելուց պահպանել" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Սահմանիչ" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Սահմանիչը պետք է համապատասխանի \"օգտանուն@խնամորդի_անուն\" ձևաչափին։" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Դուք պետք է տրամադրեք իրադարձության անունը։" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" "Դուք պետք է տրամադրեք իրադարձության համար վավերական կատարելու ժամանակը։" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Դուք պետք է տրամադրեք իրադարձության վավերական տեսակը։" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Դուք պետք է տրամադրեք իրադարձության սահմանումը։" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Հարցումը կատարելու սխալ՝" @@ -11067,7 +11093,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Վերադարձնում է" @@ -11079,132 +11105,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Խմբագրել գործընթացը" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "%1$s գործընթացը ստեղծվել է։" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "%1$s գործընթացը փոփոխվել է։" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Գործընթացի անունը" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Հարաչափեր" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Ուղղություն" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Ավելացնել հարաչափ" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Կողմնորոշիչ է" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Անվտանգության տեսակը" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL տվյալների մատչում" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Դուք պետք է տրամադրեք գործընթացի անունը։" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Դուք պետք է տրամադրեք գործընթացի սահմանումը։" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, php-format msgid "%d row affected by the last statement inside the procedure." msgid_plural "%d rows affected by the last statement inside the procedure." msgstr[0] "Ընթացակարգի վերջին արտահայտությունով ընդգրկվել է %d տող։" msgstr[1] "Ընթացակարգի վերջին արտահայտությունով ընդգրկվել է %d տող։" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Կատարել գործընթացը" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Գործընթացի հարաչափերը" @@ -11226,32 +11252,32 @@ msgstr "%1$s ձգանը ստեղծվեց։" msgid "Edit trigger" msgstr "Խմբագրել ձգանը" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Ձգանի անունը" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Ժամանակ" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Դուք պետք է տրամադրեք ձգանի անունը։" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Դուք պետք է տրամադրեք աղյուսակի վավերական անունը։" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Դուք պետք է տրամադրեք ձգանի սահմանումը։" @@ -11376,218 +11402,190 @@ msgstr "Կոդավորումները և համադրումները" msgid "Databases statistics" msgstr "Տվյալների բազաների վիճակագրությունը" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Արտոնություններ չկան։" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Ներառում է բոլոր արտոնությունները բացառությամբ GRANT-ի։" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Թույլատրում է տվյալների կարդալը։" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Թույլատրում է տվյալների զետեղումը և փոխարինումը։" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Թույլ է տալիս տվյալների փոփոխումը։" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Թույլատրում է տվյալների ջնջումը։" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Թույլատրում է նոր տվյալների բազաների և աղյուսակների ստեղծումը։" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Թույլատրում է տվյալների բազաների և աղյուսակների ջնջումը։" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Թույլատրում է սպասարկչի անջատելը։" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Թույլատրում է բոլոր օգտվողների ընթացքների դիտումը։" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Թույլատրում է ցուցակագրերի ստեղծումը և ջնջումը։" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Թույլատրում է ժամանակավոր աղյուսակների ստեղծումը։" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Թույլատրում է աղյուսակների կողպումը՝ տվյալ հոսքի համար։" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Անհրաժեշտ է ենթարկվող սպասարկիչներին՝ կրկնապատկման ժամանակ։" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Թուլյատրում է հարցնել հիմնական և ենթարկվող սպասարկիչների տեղակայումը։" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Թույլատրում է նոր ներկայացումների ստեղծումը։" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Թույլատրում է ձգանների ստեղծումը և ջնջումը։" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Թույլատրում է SHOW CREATE VIEW հարցումների կատարումը։" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Թույլատրում է պահված գործընթացների ստեղծումը։" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Թույլատրում է օգտվողների հաշիվների ստեղծումը, ջնջումը և անվանափոխումը։" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Թույլատրում է պահված գործընթացների կատարումը։" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Չկա" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Օգտվողների խումբ" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Չի պահանջում SSL ծածկագրմամբ միացում։" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Պահանջում է SSL ծածկագրմամբ միացումը։" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Պաշարների օգտագործման սահմանափակումները" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Նշում՝ այս կայանքների համար 0 (զրոյի) նշանակումը հանում է բոլոր " -"սահմանափակումները։" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Սահմանափակում է օգտվողից սպասարկչին մեկ ժամվա ընթացքում ուղարկվող " "հարցումների առավելագույն քանակը։" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -11595,362 +11593,343 @@ msgstr "" "Սահմանափակում է օգտվողից մեկ ժամվա ընթացքում ուղարկվող աղյուսակների կամ " "տվյալների բազաների փոփոխման հարցումների առավելագույն քանակը։" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Սահմանափակում է օգտվողից մեկ ժամվա ընթացքում նոր միացումների բացման " "առավելագույն քանակը։" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Սահմանափակում է մեկ օգտվողի մասով միաժամանակ միացումների առավելագույն քանակը։" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Գործընթաց" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Թույլատրում է տվյալ գործընթացի փոփոխումը և ջնջումը։" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Թույլատրում է տվյալ գործընթացի կատարումը։" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" "Նշում՝ MySQL-ի արտոնությունների անվանումները ցուցադրվում են Անգլերենով։" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Կառավարում" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Ընդհանրական արտոնություններ" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Ընդհանրական" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Թույլատրում է նոր աղյուսակների ստեղծումը։" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Թույլատրում է աղյուսակների ջնջումը։" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "MySQL-ի բնականոն վավերացումը" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 գաղտնաբառով վավերացումը" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "MySQL-ի բնականոն վավերացումը" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Հաշվի հավատարմագրերը" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Օգտագործել գրվածքի դաշտը" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Խնամորդի անունը՝" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Խնամորդի անունը" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Վավերացման խրվակ" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Դուք չեղարկեցիք արտոնությունները %s-ի համար։" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Ավելացնել օգտվողի հաշիվ" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Տվյալների բազա՝ օգտվողի հաշվի համար" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Ստեղծել տվյալների բազան նույն անունով և շնորհել բոլոր արտոնությունները։" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Շնորհել բոլոր արտոնությունները դերանշանին համապատասխանող օգտանուններին " "(օգտանուն\\_%)։" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Ստուգել արտոնությունները \"%s\" տվյալների բազայի համար։" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Օգտվողներ՝ \"%s\" մատչման հնարավորությումբ" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Օգտվողը ավելացվեց։" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Շնորհել" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Օգտնողներին դիտելու համար արտոնությունները բավարար չեն։" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Օգտվողը չի գտնվել։" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Ցանկացած" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "ընդհանրական" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "դերանշան" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Խմբագրել արտոնությունները" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Հետարկել" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Խմբագրել օգտվողների խումբը" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… պահել ավելի հինը։" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… ջնջել օգտվողների աղյուսակներից ավելի հինը։" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Գործընթացին բնորոշ արտոնություններ" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Ջնջել նշված օգտվողների հաշիվները" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Օգտվողների խումբ" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Ջնջել տվյալների բազաները, որոնց անունները համընկնում են օգտվողների անունների " -"հետ։" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Արտոնությունների վերաբեռնում" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s-ի ջնջում" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "%s օգտվողը արդեն իսկ առկա է։" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Արտոնություններ %s-ի համար" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Օգտվող" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Նոր" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Խմբագրել արտոնությունները՝" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Օգտվողի հաշիվ" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Օգտվողների հաշիվների ակնարկում" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11959,7 +11938,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11968,11 +11947,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12249,12 +12228,12 @@ msgstr "Հրահանգ" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Զտիչներ" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Ցուցադրել միայն գործունը" @@ -12275,12 +12254,12 @@ msgstr "րոպեում՝" msgid "per second:" msgstr "վայրկյանում՝" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Արտահայտություններ" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12304,33 +12283,33 @@ msgstr "Ցուցադրել չկազմաձևած արժեքները" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12338,78 +12317,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12417,7 +12396,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12425,42 +12404,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12468,33 +12447,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12503,242 +12482,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Կարդացած էջերի քանակը։" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Բացված աղյուսակների քանակը։" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12746,101 +12725,101 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Այն հանդիսանում է ON, եթե տվյալ սպասարկիչը ենթարկվող է, որը միացրած է " "հիմնականին։" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Դասակարգված տողերի քանակը։" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12848,18 +12827,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12867,11 +12846,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12900,37 +12879,37 @@ msgstr "Տվյալների բազայի մակարդակի ներդիրներ" msgid "Table level tabs" msgstr "Աղյուսակի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Դիտել օգտվողներին" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Ավելացնել օգտվողների խումբ" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Խմբագրել '%s' օգտվողների խումբը" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Օգտվողների խմբի ընտրացանկի վերագրումները" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Խմբակի անունը՝" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Սպասարկչի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Տվյալների բազայի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Աղյուսակի մակարդակի ներդիրներ" @@ -13025,7 +13004,7 @@ msgstr "Կատարել SQL հարցում(ներ)ը %s տվյալների բազ msgid "Run SQL query/queries on table %s" msgstr "Կատարել SQL հարցում(ներ)ը %s աղյուսակին" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Մաքրել" @@ -13110,172 +13089,172 @@ msgstr "Կասեցնել" msgid "Version" msgstr "Տարբերակ" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Ստեղծված" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Թարմացված" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Ջնջել տարբերակը" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Հետագծման զեկույց" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Կառուցվածքի պատկերը" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "գործուն" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "կասեցված" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Հետագծվող արտահայտությունները" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Տվյալներ չկան" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL կատարում" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Արտահանել որպես %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Ամսաթիվ" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Օգտանուն" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Չկա" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Հետագծման զեկույց `%s` աղյուսակի համար" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "%1$s տարբերակը %2$s-ից ջնջվել է։" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Չհետագծվող աղյուսակներ" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Հետագծել աղյուսակը" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Հետագծվող աղյուսակներ" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Վերջին տարբերակը" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Վերացնել հետագծումը" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Տարբերակներ" @@ -13283,7 +13262,7 @@ msgstr "Տարբերակներ" msgid "Manage your settings" msgstr "Անձնական կայանքներ" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Կազմաձևը պահպանվեց։" @@ -13310,7 +13289,7 @@ msgstr "ZIP ֆայլի սխալ՝" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13318,57 +13297,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin-ի պաշտոնական ուղեցույց" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Չհաջողվեց ներմուծել կազմաձևի կայանքները" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Պահպանված է՝ @DATE@-ում" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Ներմուծում ֆայլից" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Ներմուծում դիտարկչի պահեստից" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Կայանքները ներմուծվելու են ձեր դիտարկչի տեղային շտեմարանից։" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Դուք չունեք որևէ պահպանված կայանքներ։" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Ձուլել ընթացիկ կազմաձևի հետ" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13377,25 +13356,25 @@ msgstr "" "Դուք կարող եք կարգավորել հավելյալ կայանքներ՝ config.inc.php ֆայլի խմբագրման " "միջոցով, օրինակ, օգտագործելով %sՏեղակայման սցենարը%s։" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Պահպանել որպես ֆայլ" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Պահպանել դիտարկչի տեղային շտեմարանում" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Կայանքները պահպանվելու են ձեր դիտարկչի տեղային շտեմարանում։" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Դուք կարող եք վերակայել ձեր կայանքները՝ վերադարձնելով դրանց սկզբնական " @@ -13405,47 +13384,47 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Արտոնություններ չկան" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Սպասարկչի կարգավիճակը դիտելու համար արտոնությունները բավարար չեն։" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Խորհրդատուին դիտելու համար արտոնությունները բավարար չեն։" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" "Հարցումների վիճակագրությունը դիտելու համար արտոնությունները բավարար չեն։" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" "Վիճակագրության փոփոխականները դիտելու համար արտոնությունները բավարար չեն։" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Ներբեռնել" @@ -13453,99 +13432,98 @@ msgstr "Ներբեռնել" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Հնարավոր չե բեռնել կամ պահպանել կազմաձևը" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Կազմաձևը պահպանվեց։" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Կազմաձևը պահպանվեց։" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Ակնարկ" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Նոր սպասարկիչ" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Լռելյայն լեզուն" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- նշված չէ -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Լռելյայն սպասարկիչը" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Տողի վերջ" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Ցուցադրել" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Բեռնել" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin-ի կայքէջ" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Աջակցել" @@ -13581,28 +13559,28 @@ msgstr "Անտեսել սխալները" msgid "Show form" msgstr "Ցուցադրել ձևը" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13615,12 +13593,12 @@ msgstr "Սխալ տվյալներ" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' տվյալների բազան գոյություն չունի։" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s աղյուսակը արդեն սիկ առկա է։" @@ -13633,29 +13611,29 @@ msgstr "" msgid "Invalid table name" msgstr "Անվավեր աղյուսակի անուն" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Ընտրած տողեր չկան։" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s-ի հետագծումը միացրած է։" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Ընտրած տարբերակներ չկան։" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13821,7 +13799,7 @@ msgid "List of available transformations and their options" msgstr "Առկա ձևափոխումների և դրանց կայանքների ցանկը" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Դիտարկչի ցուցադրման ձևափոխումը" @@ -13839,7 +13817,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Ներածման ձևափոխումը" @@ -14273,17 +14251,17 @@ msgid "Size" msgstr "Ծավալը" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Ստեղծում" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Վերջին թարմացումը" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Վերջին ստուգումը" @@ -14318,6 +14296,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Վերացնել հետագծումը" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Ավելացնել արտոնություններ հետևյալ տվյալների բազա(ներ)ի համար՝" @@ -14334,10 +14318,47 @@ msgstr "Ավելացնել արտոնություններ հետևյալ գոր msgid "Add privileges on the following table:" msgstr "Ավելացնել արտոնություններ հետևյալ աղյուսակի համար՝" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Նոր" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Չկա" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Ջնջել նշված օգտվողների հաշիվները" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Ջնջել տվյալների բազաները, որոնց անունները համընկնում են օգտվողների անունների " +"հետ։" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Պաշարների օգտագործման սահմանափակումները" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Նշում՝ այս կայանքների համար 0 (զրոյի) նշանակումը հանում է բոլոր " +"սահմանափակումները։" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14368,7 +14389,7 @@ msgstr "Խրվակ" msgid "Author" msgstr "Հեղինակ" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "կասեցված" @@ -14522,7 +14543,7 @@ msgstr "Վերլուծիչ՝" msgid "Comment:" msgstr "Մեկնաբանություն՝" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Քաշեք՝ վերադասակարգելու համար" @@ -14554,26 +14575,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Ավելացնել սահմանափակում" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Ներքին կապակցումներ" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Ներքին կապակցում" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14626,11 +14647,11 @@ msgstr "Սկզբնական տողը" msgid "Replaced string" msgstr "Փոխարինված տողը" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Փոխարինում" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Հավելյալ որոնման եղրեր" @@ -14699,7 +14720,7 @@ msgid "at beginning of table" msgstr "աղյուսակի սկզբում" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Մասնաբաժիններ" @@ -14723,24 +14744,24 @@ msgstr "Տվյալների երկարությունը" msgid "Index length" msgstr "Ցուցակագրի երկարությունը" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Մասնաբաժինների աղյուսակ" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Խմբագրել մասնաբաժանումը" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Խմբագրել ներկայացումը" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Տարածության օգտագործում" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Արդյունավետություն" @@ -14765,31 +14786,31 @@ msgstr "Բարելավել աղյուսակի կառուցվածքը" msgid "Track view" msgstr "Հետագծել ներկայացումը" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Տողի վիճակագրությունը" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "կայուն" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "մասնահատված" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Տողի երկարությունը" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Տողի չափ" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14802,44 +14823,44 @@ msgstr "%s սյունակը ջնջվեց։" msgid "Click to toggle" msgstr "Կտտացրեք՝ փոխարկելու համար" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Ոճ" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Այլ ոճեր" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Առկա MIME-տեսակներ" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Դիտարկչի ցուցադրման առկա ձևափոխումները" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Ներածման առկա ձևափոխումները" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Նկարագրություն" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Անցում դեպի նպատակային կայք։" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Հատկագիրը արդիացվեց։" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "The password is empty!" msgid "Password is too long!" @@ -14915,7 +14936,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14938,17 +14959,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Սպասվում էր այլանունը։" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15001,24 +15022,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Սպասվում էր %1$s փակող չակերտը։" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Սպասվում էր փոփոխականի անունը։" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15035,10 +15056,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected characters on line %s." +msgid "Unexpected ordering of clauses." +msgstr "Անսպասելի նշաններ %s տողում։" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15081,7 +15108,7 @@ msgstr "" msgid "strict error" msgstr "Հարցման սխալ" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16139,6 +16166,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert նշված է 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "MySQL-ի բնականոն վավերացումը" + #~ msgid "Try to connect without password." #~ msgstr "Փորձել կապ հաստատել առանց գաղտնաբառի։" diff --git a/po/ia.po b/po/ia.po index b852f2ed08..6d1ce1e31d 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-10 20:37+0000\n" "Last-Translator: Giovanni Sora \n" -"Language-Team: Interlingua " -"\n" +"Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.9\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -29,31 +29,31 @@ msgstr "" "information.\n" "." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Le lista central de columnas pro le base de datos currente es vacue." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Pulsa pro ordinar." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Monstrante rangos %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Commento del base de datos" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Commentos de tabella:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -65,13 +65,13 @@ msgstr "Commentos de tabella:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -82,9 +82,9 @@ msgstr "Commentos de tabella:" msgid "Column" msgstr "Columna" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -95,12 +95,12 @@ msgstr "Columna" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -112,9 +112,9 @@ msgstr "Columna" msgid "Type" msgstr "Typo" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -125,15 +125,15 @@ msgstr "Typo" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -144,14 +144,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Predefinite" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -161,7 +161,7 @@ msgstr "Predefinite" msgid "Links to" msgstr "Ligamines a" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -175,19 +175,19 @@ msgstr "Ligamines a" msgid "Comments" msgstr "Commentos" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primari" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -195,13 +195,13 @@ msgstr "Primari" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -209,17 +209,17 @@ msgstr "Primari" msgid "No" msgstr "No" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -228,13 +228,13 @@ msgstr "No" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -246,15 +246,15 @@ msgstr "Si" msgid "View dump (schema) of database" msgstr "Vide dump (schema) del base de datos" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Il non ha tabulas in le base de datos." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -263,8 +263,8 @@ msgid "Tables" msgstr "Tabellas" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -272,10 +272,10 @@ msgstr "Tabellas" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -288,27 +288,27 @@ msgstr "Structura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Datos" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Selige toto" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Le nomine del base de datos es vacue!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Le base de datos %1$s ha essite renominate como %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Le base de datos %1$s ha essite copiate como %2$s." @@ -321,27 +321,27 @@ msgstr "" "Le immagazinage de configuration de phpMyAdmin ha essite deactivate. " "%sDiscoperi perque%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Tu debe seliger al minus un columna de monstrar!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Commuta a %svisual builder%s (constructor visual)" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Accesso negate!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Datos traciante delite con successo." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -349,11 +349,11 @@ msgstr "" "Version %1$s esseva create pro tabellas seligite, traciar es active pro " "illos." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Necun tabellas seligite." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Registro de base de datos" @@ -395,131 +395,131 @@ msgstr "Mal typo!" msgid "Bad parameters!" msgstr "Mal parametros!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor pro le columna \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usa OpenStreetMaps como disposition o nivello basic" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Puncto:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Puncto %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Adde un puncto" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Linestring (catena de linea) %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Circulo externe:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Circulo interne %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Adde un linestring" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Adde un circulo interne" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polygono %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Adde un polygono" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Adde un geometria" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Vade" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Exito" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -527,19 +527,19 @@ msgstr "" "Selige \"GeomFromText\" (GeomExText) ex le columna \"Function\" e colla le " "catena a basso in le campo \"Value\" (Valor)." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Ha havite successo" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Fallite" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Parametros incomplete" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -548,15 +548,15 @@ msgstr "" "Probabilemente tu es essayante incargar un file troppo grande. Pro favor tu " "refere al %sdocumentation%s pro eluder iste limite." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Monstrante marcator de libro" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Le marcator de libro ha essite delite." -#: import.php:489 +#: import.php:486 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 " @@ -566,25 +566,25 @@ msgstr "" "file, o il ha superate le grandor maxime permittite per tu configuration de " "PHP pro incargar un file. Tu vide [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Il non es possibile cargar plugins de importar, pro favor tu verifica tu " "installation!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Marcator de libro %s create." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importation executate con successo, %d demanda executate." msgstr[1] "Importation executate con successo, %d demandas executate." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -593,7 +593,7 @@ msgstr "" "Tempore limite excedite, si tu vole terminar le importation, pro favor %stu " "invia de nove le mesme file%s e le processo initiara de nove." -#: import.php:632 +#: import.php:629 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." @@ -602,7 +602,7 @@ msgstr "" "significa que le tempore limite ponite in le configuration es troppo basse " "pro permitter a phpMyAdmin terminar le operation." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Commandos \"DROP DATABASE\" es dishabilitate." @@ -610,17 +610,17 @@ msgstr "Commandos \"DROP DATABASE\" es dishabilitate." msgid "Could not load the progress of the import." msgstr "Il non pote incargar le progression del importation." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Retro" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Servitor demo de phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -631,107 +631,107 @@ msgstr "" "non modifica usatores root, debian-sys-maint e pma. Altere information es " "disponibile in %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Preferentias general" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Modifica contrasigno" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Colliger de connexion de servitor" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Preferentias de apparentia" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Altere preferentias" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Servitor de base de datos" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Servitor:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Typo de servitor:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Version de servitor:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Version de protocollo:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Usator:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Insimul de characteres del servitor:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Servitor web" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Version del cliente de base de datos:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Extension de PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Version de PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Information de version:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentation" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Pagina initial o domo official" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Contribue" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Obtene supporto" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista de modificationes" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licentia" -#: index.php:443 +#: index.php:444 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 " @@ -741,7 +741,7 @@ msgstr "" "insimul de characteres multibyte. Sin le extension mbstring phpMyAdmin non " "pote divider catenas correctemente e on poterea obtener exitos inexpectate." -#: index.php:458 +#: index.php:459 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." @@ -750,7 +750,7 @@ msgstr "" "Debite a isto alcun characteristicas tal como reporto de error o controlo de " "version es dishabilitate." -#: index.php:473 +#: index.php:474 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 " @@ -762,7 +762,7 @@ msgstr "" "del validitate de cookie configurate in phpMyAdmin, debite a isto, tu " "authentication poterea expirar ante que lo que es configurate in phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -771,17 +771,17 @@ msgstr "" "cookie configurate in phpMyAdmin, pro iste ration, tu\n" "accesso expirara plus tosto que lo que es configurate in phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nunc on necessita un contrasigno pro le file de configuration " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "Le passphrase in configuration (blowfish_secret) es troppo curte." -#: index.php:528 +#: index.php:529 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 " @@ -794,7 +794,7 @@ msgstr "" "le securitate de tu servbitor poterea esser compromittite per personas non " "authorisate discargante tu configuration." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -803,14 +803,14 @@ msgstr "" "Le configuration de phpMyAdmin non es completemente configurate, alcun " "characteristicas additional ha essite deactivate. %sDiscoperi perque%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "O alternativemente va a le scheda de 'Operationes' de ulle base de datos " "pro configurar lo illac." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -819,7 +819,7 @@ msgstr "" "Tu biblioteca de PHP MySQL version %s differe ex tu version de vervitor " "MySQL %s. Isto poterea causar comportamentos imprevisibile." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -989,7 +989,7 @@ msgid "Save & close" msgstr "Salveguarda & claude" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Refixa" @@ -1021,7 +1021,7 @@ msgstr "Adde indice" msgid "Edit index" msgstr "Modifica indice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Adde %s columna(s) al indice" @@ -1046,10 +1046,10 @@ msgstr "Pro favor tu selige columna(s) pro le indice." msgid "You have to add at least one column." msgstr "Tu debe adder al minus un columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Vista preliminar SQL" @@ -1061,7 +1061,7 @@ msgstr "Simula query" msgid "Matched rows:" msgstr "Rangos coincidente trovate:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Query SQL:" @@ -1078,13 +1078,13 @@ msgstr "Le nomine de hospite es vacue!" msgid "The user name is empty!" msgstr "Le nomine de usator es vacue!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Le contrassigno es vacue!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Le contrasignos non es le mesme!" @@ -1092,8 +1092,8 @@ msgstr "Le contrasignos non es le mesme!" msgid "Removing Selected Users" msgstr "Removente usatores selectionate" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Claude" @@ -1115,19 +1115,19 @@ msgstr "Patrono ha essite delite." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Altere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1234,40 +1234,40 @@ msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1285,7 +1285,7 @@ msgstr "Demandas" msgid "Traffic" msgstr "Traffico" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Preferentias" @@ -1299,16 +1299,16 @@ msgid "Please add at least one variable to the series!" msgstr "Pro favor tu adde al minus un variabile al series!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Necun" @@ -1509,20 +1509,20 @@ msgstr "Analysante…" msgid "Explain output" msgstr "Explica le exito" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Stato" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Tempore" @@ -1611,10 +1611,10 @@ msgstr "" "refixa al configuration predefinite…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importa" @@ -1687,7 +1687,7 @@ msgstr "Il non trovava aucun parametros!" msgid "Cancel" msgstr "Cancella" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Preferentias referite al pagina" @@ -1727,8 +1727,8 @@ msgid "Error text: %s" msgstr "Texto de error: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Necun base de datos seligite." @@ -1766,7 +1766,7 @@ msgstr "Copiante base de datos" msgid "Changing charset" msgstr "Modificante insimul de characteres" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Habilita le verificationes sur le clave estranie" @@ -1794,77 +1794,82 @@ msgstr "Navigar" msgid "Deleting" msgstr "Delente" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Dele le correspondentias pro le tabula %s ?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Le definition del function immagasinate debe continer un declaration de " "RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exporta" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Il non ha alcun routine exportabile. Il pote esser que privilegios requirite " "es mancante." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Valores pro le columna %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Valores pro un nove columna" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Inserta cata valor in un campo separate." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Adde %d valor(es)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: si le file contine plus que un tabella, le datos essera fusionate in " "un tabella unic." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Cela quadro de query" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Monstra quadro de query" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1872,53 +1877,53 @@ msgstr "Monstra quadro de query" msgid "Edit" msgstr "Modifica" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Dele" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d non es un valide numero de rangos." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Naviga inter valores externe" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Nulle query auto-salveguardate" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Prende" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Selector de columnas" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Cerca in iste lista" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1928,15 +1933,15 @@ msgstr "" "central per le base de datos %s ha columnas non presente in le columna " "currente." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Vide cosas ulterior" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Tu es secur?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1944,51 +1949,51 @@ msgstr "" "Iste action pote modificar alcun definition de columnas.
Tu es secur que " "tu vole continuar?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continua" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Adde clave primari" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Clave primari addite." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Ducente te al proxime passo…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Le prime passo pro normalisar es complete pro tabella '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fin del passo" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Secunde passo de normalisation (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Facite" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirma dependentias partial" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Dependentias partial seligite es como il seque:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1996,20 +2001,20 @@ msgstr "" "Nota: a, b -> d,f implica que valore de columnas a e b combinate insimul " "pte determinar valores de columna d e columna f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Necun dependentias partial seligite!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Monstra me le possibile dependentias partial basate sur datos in le tabella" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Cela lista de dependentias partial" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2017,183 +2022,183 @@ msgstr "" "Mantene te firme! Il poterea prender alcun secundas in dependentia del " "grandor de datos e del computo de columna sur le tabella." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Passo" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Le sequente actiones essera executate:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP (abandona) columnas %s ab le tabella %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Crea le sequente tabella" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tertie passo de normalisation (2NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Confirma dependentias transitive" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Dependentias seligite es como il seque:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Necun dependentias seligite!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salveguarda" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Cela criterios de cerca" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Monstra criterios de cerca" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Extension de cerca" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Maximo de columna:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Minimo de columna:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minime valor:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maxime valor:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Cela criterios de cercar e de reimplaciar" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Monstra criterios de cercar e de reimplaciar" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Cata puncto representa un rango de datos." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Si on flotta sur un puncto, il monstrara su etiquetta." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" "Pro aggrandir per le zoom, selige un section del area del graphico con le " "mus." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Pulsa le button de refixar le zoom pro reverter al stato original." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Pulsa sur un puncto de datos pro vider e forsan modificar le rango de datos." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Le area de graphico pote esser redimensionate per traher lo verso le angulo " "in basso a dextera." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Selige duo columnas" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Selige duo columnas differente" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Contento del puncto de datos" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copia" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Puncto" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linestring (catena de linea)" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygono" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Circulo interne" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Circulo externe" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Tu vole copiar le clave de cryptation?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Clave de cryptation" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2201,24 +2206,24 @@ msgstr "" "Indicante que tu ha facite modificationes a iste pagina; tu essera demandate " "de confirmar ante abandonar modificationes" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Selige clave de referentia" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Selige clave estranie" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Pro favor selige le clave primari o un clave unic!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Selige columna de monstrar" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2226,76 +2231,76 @@ msgstr "" "Tu non ha salveguardate le modificationes in le disposition (layout). Istos " "essera perdite si tu non salveguarda los. Tu vole continuar?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nomine de pagina" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salveguarda pagina" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salveguarda pagina como" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Aperi pagina" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Dele pagina" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Untitled (Sin titulo)" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Pro favor selige un pagina pro continuar" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Pro favor inserta un nomine valide de pagina" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Tu vole salveguardar le modificationes del pagina currente?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "On ha delite successosemente le pagina" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exporta le schema relational" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modificationes ha essite salveguardate" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adde un option pro le columna \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objecto(s) create." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Invia" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Pressa le clave de escape pro cancellar le modification." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2303,15 +2308,15 @@ msgstr "" "Tu ha modificate alcun datos e illos non ha essite salveguardate. Tu es " "secur que tu vole abandonar iste pagina ante salveguardar le datos?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Trahe pro reordinar." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Pulsa pro ordinar exitos per iste columna." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2321,28 +2326,28 @@ msgstr "" "per) o pro commutar inter ASC/DESC.
- Ctrl+Clickr o Alt+Click (Mac: " "Shift+Option+Click) pro remover columna ab le clausula de ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Pulsa pro seliger/deseliger." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Duple pulsa pro copiar le nomine de columna." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Pulsa sur le flecha de disrolar
pro commutar le visibilitate del " "columna." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Monstra omnes" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2351,13 +2356,13 @@ msgstr "" "modificar, copiar, marcar, deler le grillia poterea non functionar post " "salveguardar." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Pro favor, tu inserta in valide catena hexadecimal. Characteres valide es " "0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2365,107 +2370,107 @@ msgstr "" "Vermente tu vole vider omne rangos? Pro un grande tabella isto poterea vader " "in crash le navigator." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Fortia original" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "cancella" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortate" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Successo" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Depone files hic" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Prime selige un base de datos" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprime" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Tu pote anque modificar plure de valores
per duple pulsar directemente " "super illos." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Tu anque pote modificar plure de valores
per pulsar directemente super " "illos." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Vade al ligamine:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copia nomine de columna." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Pulsa a dextere le nomine de columna pro copiar lo in tu tabuliero de " "systema." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Genera contrasigno" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Genera" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Altere" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Monstra pannello" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Cela pannello" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Monstra elementos de arbore de navigation celate." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Ligamine con pannello principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Leva ligamine ex pannello principal" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Il non trovava le pagina requirite in le chronologia, il poterea esser " "expirate." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2475,27 +2480,27 @@ msgstr "" "actualisation. Le version plus nove e %s, liverate le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", ultime version stabile:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "actualisate" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Invia reporto de errores" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Submitte reporto de error" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2503,15 +2508,15 @@ msgstr "" "Un error fatal de JavaScript ha occurrite. Tu vole inviar un reporto de " "error?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Modifica preferentias de reporto" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Monstra detalios de reporto" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2519,7 +2524,7 @@ msgstr "" "Tu exportation es incomplete, debite a un basse limite de tempore de " "execution al nivello de PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2529,62 +2534,62 @@ msgstr "" "alcun del campos poterea esser ignorate, debite al configuration de " "max_input_vars de PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Alcun errores ha essite relevate sur le servitor!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Pro favor tu al basso de iste fenestra." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignora Omne" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "A proposito de tu preferentias, illos es preste pro esser submittite " "currentemente, pro favor tu es patiente." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Executa novemente iste query?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Tu es vermente secur que tu vole deler iste marcator de libro?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" "Alcun error occurreva durante que on obteneva information super le debug de " "SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries executate %s vices in %s secundas." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) passate" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Monstra argumentos" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Cela argumentos" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Tempore utilisate:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2600,349 +2605,369 @@ msgstr "" "Website Data\" pote adjutar. In Safari, tal problema es solitemente causate " "per \"Navigation de Modo Private - i.e. Private Mode Browsing\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Copia tabellas in" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Adde prefixo de tabella" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Reimplacia tabella con prefixo" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia tabella con prefixo" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Mense previe" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Mense proxime" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hodie" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Januario" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Februario" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Martio" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "April" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maio" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Junio" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Julio" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Augusto" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Septembre" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Octobre" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembre" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Decembre" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Dominica" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Lunedi" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Martedi" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Mercuridi" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Jovedi" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Venerdi" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sabbato" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Jov" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sept" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendario-mense-anno" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "necun" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hora" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuta" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Secunda" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Iste campo es requirite" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Pro favor corrige iste campo" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Pro favor inserta un valide adresse de e-posta" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Pro favor inserta un valide URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Pro favor inserta un valide data" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Pro favor inserta un nomine valide data (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Pro favor inserta un numero valide" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Pro favor inserta un numero valide de carta de credito" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Pro favor inserta solmente digitos" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Pro favor inserta novemente le mesme valor" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Pro favor inserta plus que {0} characteres" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Pro favor inserta al minus {0} characteres" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Pro favor inserta un valor de longor de characteres inter {0} e {1}" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Pro favor inserta un valor inter {0} e {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Pro favor inserta un valor minor o equal a {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Pro favor inserta un major o equal a {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Pro favor inserta un data o tempore valide" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Pro favor inserta un valide ingresso HEX" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Error" @@ -3009,20 +3034,20 @@ msgid "Charset" msgstr "Insimul de characteres" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Collation" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binari" @@ -3217,7 +3242,7 @@ msgid "Czech-Slovak" msgstr "Tcheco-Slovaco" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "incognite" @@ -3265,26 +3290,26 @@ msgstr "" msgid "Font size" msgstr "Grandor de font" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Monstrante %1$d marcator de libro (ambe private e compartite)" msgstr[1] "Monstrante %1$d marcatores de libro (ambes private e compartite)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Necun marcator de libro o favorito" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Console de Query de SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Il falleva fixar connexion de collation configurate!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3292,25 +3317,25 @@ msgstr "" "Le servitor non es respondente (o le socket del servitor local non es " "configurate correctemente)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Le servitor non es respondente." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Pro favor, controla le permissiones del directorio continente le base de " "datos." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalios…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Parametros de connexion mancante!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connexion per usatores de controlo de usator (controluser) falleva como in " @@ -3406,110 +3431,105 @@ msgstr "Insere:" msgid "Del:" msgstr "Dele:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query sur base de datos %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Submitte Query" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Cerca de favoritos o marcatores de libros salveguardate:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nove marcator de libro o favorito" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Crea marcator de libro o favorito" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Actualisa marcator de libro" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Dele marcator de libro" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "al minus un del parolas" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "omne parolas" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "le phrase exacte" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "como expression regular" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Cerca exitos pro \"%s\"%s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s correspondentia" msgstr[1] "Total: %s correspondentias" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s correspondentia in %2$s" msgstr[1] "%1$s correspondentias in %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Naviga" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Dele le correspondentias pro le tabula %s ?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Cerca in le base de datos" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Parolas o valores de cercar (metacharacter: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Trova:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Parolas es separate per un character de spatio (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Intra tabulas:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Deselige toto" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Intra columna:" @@ -3529,30 +3549,30 @@ msgstr "Filtra rangos" msgid "Search this table" msgstr "Cerca in iste tabella" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Initio" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Previe" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Proxime" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Ultime" @@ -3561,7 +3581,7 @@ msgstr "Ultime" msgid "All" msgstr "Omnes" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Numero de rangos:" @@ -3570,8 +3590,8 @@ msgstr "Numero de rangos:" msgid "Sort by key" msgstr "Ordina per clave" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3593,10 +3613,10 @@ msgstr "Ordina per clave" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Optiones" @@ -3636,29 +3656,29 @@ msgstr "Well Known Text (Texto ben cognoscite)" msgid "Well Known Binary" msgstr "Well Known Binary (binari ben cognoscite)" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Le rango ha essite delite." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Remove" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Il pote esser approximate. Vide[doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Le demanda (query) SQL ha essite executate con successo." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3667,73 +3687,73 @@ msgstr "" "Iste vista ha al minus iste numero de rangos. Pro favor refere a " "%sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Monstrante rangos %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d in query" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Query prendeva %01.4f secundas." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Si seligite:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Marca omnes" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copia a area de transferentia" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operationes super exitos de query" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Monstra graphico" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Monstra datos de GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Ligamine non trovate!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Necun" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Converte a Kana" @@ -3741,24 +3761,24 @@ msgstr "Converte a Kana" msgid "Too many error messages, some are not displayed." msgstr "Nimie messages de error, alcun de illos non essera monstrate." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Reporta" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Invia automaticamente le reporto le proxime vice" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Le file non esseva un file incargate." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Le file incargate excedeva le parametro de upload_max_filesize in php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3766,48 +3786,48 @@ msgstr "" "Le file incargate excedeva le parametro MAX_FILE_SIZE que esseva " "specificate in le formulario HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Le file es solmente incargate de modo partial." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Un dossier temporari es mancante." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Il falleva scriber sur disco." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Le incargamento del file esseva stoppate per le extension errate." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Error incognite durante que il cargava un file." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "File es un ligamine symbolic" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Le file non pote esser legite!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Error quando on moveva le file incargate, vide [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Error quando on moveva le file incargate." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Il non pote leger le file incargate." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3817,28 +3837,28 @@ msgstr "" "supportate. Le supporto pro iste typo de compression poterea ancora non " "esser actuate o esser dishabilitate in tu configuration." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Currentemente executante revision de Git %1$s ex le ramo %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Information de git mancante!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Aperi nove fenestra de phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Vista pro imprimer" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Pulsa sur le barra pro rolar al culmine del pagina" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript debe esser habilitate passate iste puncto!" @@ -3847,20 +3867,20 @@ msgid "No index defined!" msgstr "Necun indice definite!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indices" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3870,59 +3890,59 @@ msgstr "Indices" msgid "Action" msgstr "Action" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nomine clave" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unic" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Comprimite" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalitate" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Commento" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Le clave primari ha essite delite." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indice %s ha essite delite." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Lassa cader" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3931,19 +3951,19 @@ msgstr "" "Il sembla que le indices %1$s e %2$s es equal e un de lor poterea esser " "removite." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Numero pagina:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignorante codice de linguage non supportate." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Linguage" @@ -3969,11 +3989,11 @@ msgstr "Servitor" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3992,14 +4012,15 @@ msgid "View" msgstr "Vista" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4008,8 +4029,8 @@ msgid "Table" msgstr "Tabula" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4017,45 +4038,45 @@ msgstr "Tabula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Cerca" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Inserta" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Permissiones" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operationes" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Traciamento" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4071,16 +4092,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Le base de datos sembla esser vacue!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Query" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4088,20 +4109,20 @@ msgstr "Routines" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designator" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnas central" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Base de datos" @@ -4110,53 +4131,53 @@ msgid "User accounts" msgstr "Contos de usator" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registro binari" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replication" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabiles" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Insimul de characteres" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugins" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d rango modificate." msgstr[1] "%1$d rangos modificate." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d rango delite." msgstr[1] "%1$d rangos delite." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4204,28 +4225,28 @@ msgstr "Tabellas favorite" msgid "Favorites" msgstr "Favoritos" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" "Pro favor provide un nomine pro iste cerca basate sur marcatores de libro." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Information mancante pro salveguardar le cerca de marcator de libro." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Un entrata con iste nomine ja existe." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Information mancante pro deler le cerca." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Information mancante pro cargar le cerca." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Error quando on cargava le cerca." @@ -4287,7 +4308,7 @@ msgstr "Monstra tabellas aperite" msgid "Show slave hosts" msgstr "Monstra hospites sclavo" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Monstra hospites patres (master)" @@ -4341,71 +4362,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minuta" msgstr[1] "%d minutas" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Il non ha information de stato detaliate disponibile pro iste motor de " "immagazinage." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s es le motor predefinite de immagazinage sur iste servitor MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s es disponibile sur iste servitor MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ha essite dishabilitate sur iste servitor MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Iste servitor MySQL non supporta lemotor de immagazinage %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Stato de tabella incognite:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Il non trovava base de datos de fonte '%s'!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Il non trovava base de datos objectivo '%s'!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Base de datos invalide:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Nomine de tabella invalide:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Il falleva renominar tabella ab %1$s a %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabella %1$s ha essite renominate a %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Il non pote salveguarda preferentias UI de tabella!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4414,7 +4435,7 @@ msgstr "" "Il falleva nettar preferentias de UI de tabella (vide $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4425,19 +4446,19 @@ msgstr "" "essera mantenite post que tu recarga iste pagina. Pro favor controla que le " "structura del tabella ha essite modificate." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Le nomine del clave primari debe esser \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Non pote renominar indice a PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nulle partes de indice definite!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4767,7 +4788,7 @@ msgid "Date and time" msgstr "Data e tempore" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Catena" @@ -4782,129 +4803,129 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Dimension maxime: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Analysis static:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d errores esseva trovate durante le analysis." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Message de MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Non explica SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Explication de Analysis a %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Sin codice PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Submitte query" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Crea codice PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Refresca" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profiling" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Modifica in linea (inline)" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y a %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s horas, %s minutas e %s secundas" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parametro mancante:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Salta al base de datos \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Le functionalitate %s es influentiate per un error cognoscite, tu vide %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Cerca in tu computator:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selige ex le directorio de incargamento de servitor web %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" "Le directorio que tu fixava pro le travalio de incargar non pote esser " "attingite." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Il non ha alcun file de incargar!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vacua" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Executa" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Usatores" @@ -4918,7 +4939,7 @@ msgstr "per minuta" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per hora" @@ -4926,12 +4947,12 @@ msgstr "per hora" msgid "per day" msgstr "per die" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Cerca:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4939,7 +4960,7 @@ msgstr "Cerca:" msgid "Description" msgstr "Description" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Usa iste valor" @@ -4980,22 +5001,22 @@ msgstr "SI" msgid "NO" msgstr "NO" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nomine" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Longitudine/Valores" @@ -5004,7 +5025,7 @@ msgstr "Longitudine/Valores" msgid "Attribute" msgstr "Attributo" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5021,11 +5042,11 @@ msgstr "Adde columna" msgid "Select a column." msgstr "Selige un columna." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Adde nove columna" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5033,7 +5054,7 @@ msgstr "Adde nove columna" msgid "Attributes" msgstr "Attributos" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5043,28 +5064,28 @@ msgstr "" "operation es incompatibile con phpMyAdmin e poterea causar alcun corruption " "de datos!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Indice de servitor invalide: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nomine de hospite pro le servitor %1$s invalide. Pro favor verifica tu " "configuration." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Servitor %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Methodo de authentication invalide fixate in le configuration:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5076,20 +5097,20 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin es currentemente usante le fuso horari " "predefinite de servitor de base de datos." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Tu deberea actualisar a version %s%s o successive." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Error: error de correspondentia in le indicio (token mismatch)" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de superscriber GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "possibile exploit" @@ -5699,7 +5720,7 @@ msgid "Compress on the fly" msgstr "Comprime immediatemente (al volo)" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "File de configuration" @@ -5810,12 +5831,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Maxime tempore de execution" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Usa le instruction %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Salveguarda como file" @@ -5825,7 +5846,7 @@ msgstr "Insimul de characteres del file" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formato" @@ -5950,7 +5971,7 @@ msgid "Save on server" msgstr "Salveguarda sur le servitor" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Superscribe file(s) existente" @@ -5963,7 +5984,7 @@ msgid "Remember file name template" msgstr "Memora patrono de nomine de file" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Adde valor de AUTO_INCREMENT" @@ -5972,7 +5993,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Include nomines de tabellas e columnas con virgulettas" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modo de compatibilitate de SQL" @@ -6003,7 +6024,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Adde %s" @@ -6175,7 +6196,7 @@ msgid "Customize the navigation tree." msgstr "Personalisa le arbore de navigation." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servitores" @@ -7093,7 +7114,7 @@ msgstr "Sphera HTTP" msgid "Authentication method to use." msgstr "Methodo de authentication de usar." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Typo de authentication" @@ -7841,7 +7862,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Habilita le scheda del Disveloppator in preferentias" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Verifica le ultime version" @@ -7851,10 +7872,10 @@ msgstr "" "Habilita le verifica del ultime version sur le pagina principal de " "phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Verifica de version" @@ -8002,24 +8023,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Lista de favoritos es complete!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabella %s ha essite vacuate." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Vista %s ha essite delite." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabella %s ha essite delite." @@ -8033,12 +8054,12 @@ msgid "Position" msgstr "Position" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Typo de evento" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID de servitor" @@ -8047,7 +8068,7 @@ msgid "Original position" msgstr "Position original" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Information" @@ -8061,42 +8082,42 @@ msgstr "Trunca Queries monstrate" msgid "Show Full Queries" msgstr "Monstra queries complete" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Necun base de datos" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Le base de datos %1$s ha essite create." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d base de datos ha essite delite con successo." msgstr[1] "%1$d bases de datos ha essite delite con successo." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rangos" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8123,34 +8144,34 @@ msgstr "" msgid "Enable statistics" msgstr "Habilita statisticas" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Tu non ha bastante privilegios pro vider variabiles e fixationes de " "servitor. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Il falleva fixar variabile" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Necun query de SQL esseva fixate pro extraher datos." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Necun columnas numeric presente in le tabella pro designar in graphic." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Necun dato de monstrar" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabella %1$s ha essite alterate successosemente." @@ -8193,7 +8214,7 @@ msgstr "La columnas ha essite movite successosemente." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Error de query" @@ -8212,12 +8233,12 @@ msgstr "Modifica" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indice" @@ -8238,14 +8259,14 @@ msgstr "Texto complete" msgid "Distinct values" msgstr "Valores distincte" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" "Le extension %s es mancante. Pro favor tu verifica tu configuration de PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Necun modification" @@ -8269,31 +8290,35 @@ msgstr "" "installation!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Necun contrasigno" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Contrasigno:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Re-typa:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hachage de contrasigno:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8303,83 +8328,83 @@ msgstr "" "cryptate que crypta le contrasigno per RSA'; durante que on connecte al " "servitor." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportante base de datos ex le servitor currente" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportante tabellas ex le base de datos \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportante rangos ex tabella \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Patronos de exportation:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nove patrono:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Nomine de patrono" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Crea" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Patronos existente:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Patrono:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Actualisa" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Selige un patrono" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Methodo de exportation:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rapide-monstra solo le optiones minime" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Personalisate-monstra omne optiones possibile" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Base de datos:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabulas:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formato:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Optiones specific de formato:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8387,52 +8412,52 @@ msgstr "" "Rola a basso pro completar le optiones pro le formato seligite e ignorar le " "optiones pro altere formatos." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Conversion de codifica:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rangos:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Executa le dump de alicun rango(s)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Rango de initiar a:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Le dump de omne rangos" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Exito:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Salveguarda sur servitor in le directorio %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Patrono de nomine de file:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ devenira le nomine de servitor" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ devenira le nomine de base de datos" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ devenira le nomine de tabella" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8444,99 +8469,99 @@ msgstr "" "sequente transformationes: %3$s. Altere texto essera mantenite assi como il " "es. Vide le %4$sFAQ%5$s pro detalios." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "usa isto pro exportationes futur" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Insimul de characteres de file:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compression:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "comprimite per zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "comprimite per gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Vide exito como texto" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exporta base de datos como files separate" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exporta tabellas como files separate" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Renomina base de datos/tabellas/columnas exportate" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Salveguarda exito in un file" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Salta tabellas plus grande que" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Selige un base de datos" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Selige tabella" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nomine de nove base de datos" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nomine de nove tabella" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Vetere nomine de columna" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nove nomine de columna" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Il non pote cargar plugins de exportar, pro favor verifica tu installation!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s ex ramo %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "necun ramo" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revision de Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "committite le %1$s per %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "create le %1$s per %2$s" @@ -8997,13 +9022,13 @@ msgstr "" "Documentation e ulterior information re PBXT pote esser trovate a " "%sPrimeBase XT Home Page%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spatio insufficiente pro salveguardar le file %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9011,76 +9036,76 @@ msgstr "" "Le file %s ja existe sur le servitor, cambia le nomine de file o marca le " "option de superscriber." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Le servitor web non ha permission de salveguardar le file %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Le discargamento (dump) ha essite salveguardate in file %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornava un insimul de exito vacue (i.e. zero rangos)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurreva.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le sequente structuras ha essite o create o alterate. Ci tu pote:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Vide contentos de un structura per pulsar super su nomine." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Modifica ulle de su preferentias per pulsar le correspondente ligamine de " "\"Optiones\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica le structura per sequer le ligamine de \"Structura\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Vade al base de datos: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Modifica preferentias per %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Vade a tabella: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Structura de %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Vade a vista: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "On pote simular solo queries de DELETE e UPDATE de singule tabella." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9093,86 +9118,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Crea un indice sur  %s columnas" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Cela" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Function" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Per su longitudine,
iste columna poterea non esser modificabile." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Dato binari - non modifica" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "O" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "directorio de incargamento de servitor web:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifica/Inserta" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua insertion con %s rangos" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "e alora" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "inserta como nove rango" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Inserta como nove rango e ignora errores" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Monstra query de insertar" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Vade a previe pagina" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Inserta un altere nove rango" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Vade retro a iste pagina" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Modifica nove rango" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Usa le clave TAB pro mover de valor a valor, o CTRL+flechas pro mover lo " "ubique." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9183,31 +9209,31 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Monstrante query de SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Insertate id de rango: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Successo!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Solmente le structura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Structura e datos" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Solmente datos" @@ -9216,14 +9242,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Adde valor de AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Adde vinculos" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Adapta permissiones" @@ -9268,8 +9294,8 @@ msgstr "Procedimentos:" msgid "Views:" msgstr "Vistas:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Monstra" @@ -9317,17 +9343,17 @@ msgstr[1] "" "Altere\n" "%s resultatos trovate" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Typa pro filtrar istos, pressa Enter pro cercar toto" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Netta filtro rapide" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Plica toto" @@ -9342,7 +9368,7 @@ msgstr "Invalide nomine de classe \"%1$s\", on usa le predefinite per \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Il non pote adder classe \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Expander/Collaber" @@ -9361,7 +9387,7 @@ msgstr "Nove" msgid "Database operations" msgstr "Operationes de base de datos" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Monstra elementos celate" @@ -9465,11 +9491,11 @@ msgstr "" "Selige un columna que pote esser dividite in plus que un (si on selige " "'necun tal columna', on movera al proxime passo)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Selige un…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Necun tal columna" @@ -9749,8 +9775,8 @@ msgid "Rename database to" msgstr "Renominar le base de datos como" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9796,177 +9822,177 @@ msgstr "(singularmente)" msgid "Move table to (database.table)" msgstr "Move le tabella in (database.table)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Renomina tabella como" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Commentos de tabella" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Optiones de tabella" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Motor de immagazinage" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Modifica omne collation de columna" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copia le tabella in (database.table)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Commuta a tabella copiate" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Mentenimento de tabella" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analysa tabella" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Verifica tabella" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Tabella de checksum" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmenta tabella" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabella %s ha essite initialisate." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Initialisa le tabella (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimiza tabella" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Repara tabella" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Dele datos o tabella" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Vacua le tabella (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Dele le tabella (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analysa" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Verifica" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimiza" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Reconstrue" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Repara" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Trunca" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Uni" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Mantenentia de partition" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Remove partitionemento" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Verifica le integritate referential:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "On non pote mover tabella sur se mesme!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "On non pote copiar tabella sur se mesme!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabella %s ha essite movite in %s. Privilegios ha essite adaptate." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabella %s ha essite copiate in %s. Privilegios ha essite adaptate." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabella %s ha essite movite in %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabella %s ha essite copiate in %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Le nomine de tabella es vacue!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Iste formato ha nulle optiones" @@ -9995,18 +10021,18 @@ msgstr "Monstra color" msgid "Only show keys" msgstr "Monstra solo claves" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Non pote connecter se: fixationes invalide." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Benvenite a %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10015,7 +10041,7 @@ msgstr "" "Tu probabilemente non creava un file de configuration. Tu poterea voler usar " "le %1$ssetup script%2$s pro crear un." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10027,7 +10053,7 @@ msgstr "" "le contrasigno in le file de configuration assecura que illos corresponde al " "information date per le administrator del servitor MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Reessaya a connecter te" @@ -10054,15 +10080,15 @@ msgstr "Nomine de usator:" msgid "Server Choice:" msgstr "Selection de servitor:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Le captcha insertate es errate, essaya de novo!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Pro favor inserta le captcha correcte!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" "Tu non ha le permisso de acceder con authentication a iste servitor MySQL!" @@ -10124,7 +10150,7 @@ msgstr "Optiones del dump del datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dump del datos per le tabella" @@ -10133,7 +10159,7 @@ msgstr "Dump del datos per le tabella" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Evento" @@ -10141,8 +10167,8 @@ msgstr "Evento" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definition" @@ -10230,7 +10256,7 @@ msgstr "Pone nomines de columnas in le prime rango:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Hospite:" @@ -10555,8 +10581,8 @@ msgstr "MIME" msgid "" "Update data when duplicate keys found on import (add ON DUPLICATE KEY UPDATE)" msgstr "" -"Actualisa datos quando il ha trovate claves duplicate quando on importa (" -"adde ON DUPLICATE KEY UPDATE)" +"Actualisa datos quando il ha trovate claves duplicate quando on importa " +"(adde ON DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 #: libraries/plugins/import/ImportOds.php:63 @@ -10758,7 +10784,7 @@ msgstr "Tabula de contentos" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11080,18 +11106,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11100,7 +11126,7 @@ msgstr "" "%sCreate%s un base de datos nominate 'phpmyadmin' e configura le " "configuration de immagazinage de phpMyAdmin ci." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11108,35 +11134,35 @@ msgstr "" "%sCrea%s le immagazinage de configuration de phpMyAdmin in le base de datos " "currente." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" "%sCreate%s mancante de tabellas de immagazinage de configuration de " "phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11145,293 +11171,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Connexion Master:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nomine de usator:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nomine de usator" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Contrasigno" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Porto:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabile" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Hospite" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Omne hospite" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Iste hospite" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Omne hospite" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Contrasigno generate:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Successo." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Error." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Error Incognite" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11452,7 +11478,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Uno o plure errores ha occurrite quando on processava tu requesta:" @@ -11461,75 +11487,75 @@ msgstr "Uno o plure errores ha occurrite quando on processava tu requesta:" msgid "Edit event" msgstr "Modifica evento" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detalios" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nomine de evento" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Initia" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -11550,7 +11576,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -11562,132 +11588,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametros" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Typo de securitate" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11709,32 +11735,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tempore" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11772,7 +11798,8 @@ msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format msgid "No routine with name %1$s found in database %2$s." -msgstr "Il non ha trovate alcun routine con nomine %1$s in base de datos %2$s." +msgstr "" +"Il non ha trovate alcun routine con nomine %1$s in base de datos %2$s." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11850,565 +11877,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Necun" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Gruppo de Usator" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Il non require connexiones cryptate SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Il require connexiones cryptate SSL." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Authentication de MySQL native" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Authentication de contrasigno SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Authentication de MySQL native" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Nomine de hospite:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Nomine de hospite" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Plugin de Authentication" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Methodo de hashing de contrasigno" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Adde conto de usator" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Base de datos pro conto de usator" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Accorda omnes privilegios sur base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Omne" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Modifica privilegios" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegios specific pro le routine" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Remove contos de usator selectionate" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Gruppo de Usator" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Usator" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nove" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Modifica privilegios:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Conto de usator" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12417,7 +12401,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12426,11 +12410,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12697,12 +12681,12 @@ msgstr "Commando" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtros" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Monstra solmente aperite" @@ -12723,12 +12707,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12752,33 +12736,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12786,78 +12770,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12865,7 +12849,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12873,42 +12857,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12916,33 +12900,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12951,242 +12935,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13194,99 +13178,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13294,18 +13278,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13313,11 +13297,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13346,37 +13330,37 @@ msgstr "Schedas de nivello de base de datos" msgid "Table level tabs" msgstr "Schedas de nivello de tabula" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Vide usatores" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Adde gruppo de usator" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Nomine de gruppo:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Schedas de nivello servitor" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Schedas de nivello de base de datos" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Schedas de nivello de tabula" @@ -13476,7 +13460,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "Executa query/queries de SQL sur tabella %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Netta" @@ -13561,172 +13545,172 @@ msgstr "" msgid "Version" msgstr "Version" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Create" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Actualisate" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Dele version" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Reporto de tracia" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Fragmento de structura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "active" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "non active" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nomine usator" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Necun" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s de %2$s esseva delite." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabulas non traciate" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tracia tabula" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabulas traciate" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Ultime version" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Delite traciar" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versiones" @@ -13734,7 +13718,7 @@ msgstr "Versiones" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13758,7 +13742,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13767,78 +13751,78 @@ msgid "Cannot save settings, submitted form contains errors!" msgstr "" "Il non pote salveguardar preferentias, le forma submittite contine errores!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "Pecietta de configuration de phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Il non pote importar configuration" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Le configuration contine datos incorrecte pro alcun campos." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Tu vole importar preferentias remanente?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Salveguardate le: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importa ex file" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Tu non ha salveguardate le preferentias!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Salveguarda como file PHP" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Preferentias existente essera superscribite!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13846,45 +13830,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Necun privilegios" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Discarga" @@ -13892,97 +13876,96 @@ msgstr "Discarga" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Il non pote cargar o salveguardar le configuration" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuration salveguardate." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Configuration non salveguardate!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Vision de juncto" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nove servitor" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Linguage predefinite" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "permitte que le usator selige" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- necun -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Servitor predefinite" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Fin del linea" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Monstra" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Carga" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Pagina domo o principal de phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Dona" @@ -14018,28 +14001,28 @@ msgstr "Ignora errores" msgid "Show form" msgstr "Monstra forma" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14052,12 +14035,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14070,29 +14053,29 @@ msgstr "" msgid "Invalid table name" msgstr "Nomine de tabella invalide" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Necun rango seligite." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Le versiones traciante ha essite delite con successo." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Necun versiones seligite." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14256,7 +14239,7 @@ msgid "List of available transformations and their options" msgstr "Lista de transformationes disponibile e lor operationes" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformation de monstrator de navigator" @@ -14274,7 +14257,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformation de ingresso" @@ -14706,17 +14689,17 @@ msgid "Size" msgstr "Grandor" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Creation" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Ultime actualisation" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Ultime controlo" @@ -14754,6 +14737,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Delite traciar" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Adde le privilegios sur le sequente base(s) de datos:" @@ -14770,10 +14759,43 @@ msgstr "Adde le privilegios sur le sequente routine:" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nove" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Necun" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Remove contos de usator selectionate" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14804,7 +14826,7 @@ msgstr "Plugin" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "dishabilitate" @@ -14958,7 +14980,7 @@ msgstr "Analysator (parser):" msgid "Comment:" msgstr "Commento:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Trahe pro reordinar" @@ -14990,26 +15012,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Adde un limite" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relationes interne" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Selige columna de monstrar:" @@ -15062,11 +15084,11 @@ msgstr "Catena original" msgid "Replaced string" msgstr "Catena reimplaciate" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Reimplacia" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Ulterior criterios de cerca" @@ -15137,7 +15159,7 @@ msgid "at beginning of table" msgstr "a le initio de tabella" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partitiones" @@ -15161,24 +15183,24 @@ msgstr "Longessa de datos" msgid "Index length" msgstr "Longessa de Indice" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Tabella de partition" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Modifica partitionemento" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effective" @@ -15203,31 +15225,31 @@ msgstr "Meliora structura de tabella" msgid "Track view" msgstr "Traciar vista" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamic" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15240,44 +15262,44 @@ msgstr "" msgid "Click to toggle" msgstr "Pulsa pro alternar" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Thema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Transformationes disponibile de monstrator de navigator" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Transformationes de ingresso disponibile" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Description" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Ducente te al sito de destination." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Contrasigno es troppo longe!" @@ -15345,7 +15367,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15366,17 +15388,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "On expectava un alias." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15428,24 +15450,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "On expectava un nomine de variabile." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Un initio de instruction non expectate." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15462,10 +15484,16 @@ msgstr "Un indicio non expectate." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Un initio de instruction non expectate." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15502,7 +15530,7 @@ msgstr "" msgid "strict error" msgstr "stricte error" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16560,6 +16588,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert - insertion concurrente- es ponite a 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Authentication de MySQL native" + #~ msgid "Try to connect without password." #~ msgstr "Essaya connecter sin contrasigno." diff --git a/po/id.po b/po/id.po index 034435b08f..e3366e6954 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-05 20:48+0000\n" "Last-Translator: Prasna Lukito \n" "Language-Team: Indonesian Are you sure you " "want to continue?" @@ -1930,51 +1935,51 @@ msgstr "" "Tindakan ini mungkin mengubah beberapa definisi kolom.
Anda yakin " "ingin melanjutkan?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Lanjutkan" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Tambahkan kunci primer" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Kunci primer telah ditambahkan." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Tunggu sebentar yach…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Langkah pertama normalisasi selesai untuk tabel '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Langkah terakhir" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Langkah kedua normalisasi (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Selesai" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Konfirmasi dependensi parsial" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Dependensi yang dipilih adalah:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1982,19 +1987,19 @@ msgstr "" "Catatan: a, b -> d, f menyiratkan bahwa nilai gabungan antara kolom a dan b " "dapat menentukan nilai dari kolom d dan kolom f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Tidak ada dependensi parsial yang dipilih!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Tunjukkan dependensi parsial yang ada pada data di dalam tabel" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Sembunykan daftar dependensi parsial" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2002,172 +2007,172 @@ msgstr "" "Santai! Mungkin diperlukan beberapa detik tergantung pada ukuran data dan " "jumlah kolom tabel." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Langkah" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Tindakan berikut akan dilakukan:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolom %s dari tabel %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Buat tabel" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tahap ketiga normalisasi (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Konfirmasi dependensi transitif" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Dependensi yang dipilih adalah sebagai berikut:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Dependensi belum dipilih!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Simpan" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Jarak pencarian" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Jumlah kolom maksimal:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Jumlah kolom minimal:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Nilai minimal:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Nilai maksimum:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Sembunyikan kriteria pencarian dan penggantian" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Tampilkan kriteria pencarian dan penggantian" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Setiap titik mewakili sebaris data." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Melayang di atas titik akan menunjukkan labelnya." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Untuk memperbesar, pilih bagian dari plot dengan mouse." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Klik link reset Zoom untuk kembali ke keadaan semula." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Klik titik data untuk melihat dan mungkin mengedit baris data." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Plot dapat diubah ukurannya dengan menyeretnya di sepanjang sudut kanan " "bawah." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Pilih dua kolom" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Pilih dua kolom yang berbeda" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Salin" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Titik" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Segmen garis" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkar Dalam" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Lingkar Luar:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Apakah anda yakin untuk menyalin kunci enskripsi?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Kunci Enskripsi" -#: js/messages.php:527 +#: js/messages.php:528 #, fuzzy msgid "" "MySQL accepts additional values not selectable by the slider; key in those " @@ -2176,7 +2181,7 @@ msgstr "" "MySQL menerima nilai tambahan yang tidak dapat terpilih oleh slider; kunci " "di nilai-nilai ini secara langsung jika diinginkan" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " @@ -2185,7 +2190,7 @@ msgstr "" "MySQL menerima nilai tambahan yang tidak dapat terpilih oleh slider; kunci " "di nilai-nilai ini secara langsung jika diinginkan" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2193,24 +2198,24 @@ msgstr "" "Sebagai indikasi telah ada perubaha di halaman ini; konfirmasi akan " "ditampilkan untuk mengabaikan perubahan" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Harap pilih kunci primer(primary key) atau kunci unik(unique key)!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Pilih kolom untuk ditampilkan" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2218,78 +2223,78 @@ msgstr "" "Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda " "tidak menyimpannya. Apakah Anda ingin melanjutkan?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nama halaman" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Simpan halaman" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "simpan halaman sebagai" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Buka halaman" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Hapus halaman" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Belum ada nama" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Pilih halaman untuk lanjut" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Masukan halaman yang benar" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Apakah Anda ingin menyimpan perubahan ke halaman ini?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Halaman berhasil dihapus" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Ekspor skema relasi" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tambahkan opsi untuk kolom \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objek dibuat." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Kirim" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Tekan escape untuk membatalkan perubahan." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2297,15 +2302,15 @@ msgstr "" "Anda telah mengedit beberapa data dan belum di simpan. Apakah anda yakin " "akan meninggalkan halaman ini sebelum menyimpan data?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Seret untuk menyusun ulang." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "KIik untuk menyortir hasil dari kolom ini." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2315,26 +2320,26 @@ msgstr "" "DESC.
- Kontrol+Klik atau Alt+Click (Mac: Shift+Option+Click) untuk " "menghapus kolom dari ORDER BY clause" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klik untuk menambahkan/menghapus tanda." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Klik dua kali untuk menyalin nama kolom." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Tampilkan semua" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2343,11 +2348,11 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Masukkan string yang benar. Karakter yang benar adalah 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2355,110 +2360,110 @@ msgstr "" "Apakah anda ingin melihat semua baris? Tabel ukuran besar bisa membuat " "peramban lambat." -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "String asli" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "Batal" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Batalkan" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Sukses" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Impor status" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Letakkan berkas disini" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Pilih database dulu" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Cetak" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Anda juga dapat mengedit sebagian nilai
dengan mengeklik langsung " "konten." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Anda juga dapat mengedit sebagian nilai
dengan mengeklik langsung " "konten." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Pergi ke tautan:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Salin nama kolom." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klik-kanan nama kolom untuk menyalinnya ke clipboard." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Buatkan kata sandi" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Buatkan" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Lainnya" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Tampilkan Panel" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Sembunyikan Panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Tampilkan navigasi pohon item tersembunyi." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Link ke panel utama" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Unlink dari panel utama" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Halaman yang diminta tidak ditemukan di riwayat, mungkin sudah kadaluarsa." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2468,31 +2473,31 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "Mutakhir" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Buat tampilan" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Kirim laporan kesalahan" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Kirim Laporan Kesalahan" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2500,26 +2505,26 @@ msgstr "" "Kesalhaan fatal JavaScript telah terdeteksi. Anda ingin mengirimkan laporan " "kesalahan?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Ubah Pengaturan Pelaporan" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Tampilkan Detail Laporan" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Ekspor anda tidak lengkap, karena batas waktu yang rendah di tingkat PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2529,66 +2534,66 @@ msgstr "" "beberapa bidang mungkin dibatalkan, karena konfigurasi max_input_vars dari " "PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Kesalahan terdeteksi di server!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Silahkan lihat di bagian bawah jendela ini." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Abaikan" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Sesuai pengaturan Anda, mereka sedang diajukan saat ini, harap bersabar." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Jalankan kueri ini lagi?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Anda yakin akan menghapus penanda ini?" -#: js/messages.php:716 +#: js/messages.php:717 #, fuzzy msgid "Some error occurred while getting SQL debug info." msgstr "Terjadi beberapa kesalahan saat mendapatkan info SQL debug." -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Kueri tereksekusi" -#: js/messages.php:719 +#: js/messages.php:720 #, fuzzy, php-format msgid "%s argument(s) passed" msgstr "%s argumen lulus" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Perlihatkan Komentar tabel" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:722 +#: js/messages.php:723 #, fuzzy msgid "Time taken:" msgstr "Waktu yang diperlukan:" -#: js/messages.php:723 +#: js/messages.php:724 #, fuzzy msgid "" "There was a problem accessing your browser storage, some features may not " @@ -2604,385 +2609,405 @@ msgstr "" "\"Offline data Situs web\" mungkin bisa membantu. Dalam Safari, masalah " "tersebut umumnya disebabkan oleh \"Mode Private Browsing\"." -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Salin basis data ke" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "Tambahkan prefiks tabel" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Ganti prefiks tabel" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Salin tabel dengan prefiks" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Sblm" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Brkt" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hari ini" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Januari" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Februari" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Maret" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "April" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mei" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Agustus" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "September" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "November" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Des" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Senin" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Jumat" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Min" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Sn" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Sl" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Rb" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Km" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Jm" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Mingguan" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "Kalender-bulan-tahun" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "Kosong" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Jam" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Menit" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Detik" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Wajib diisi" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Gunakan text field" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Masukan angka yang valid" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Masukan angka yang valid" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Masukan angka yang valid" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Masukan angka yang valid" -#: js/messages.php:919 +#: js/messages.php:927 #, fuzzy msgid "Please enter no more than {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy msgid "Please enter at least {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Masukkan nilai panjang karakter antara {0} dan {1}" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "Masukan angka yang valid" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "Masukan angka yang valid" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "Masukan angka yang valid" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Galat" @@ -3048,20 +3073,20 @@ msgid "Charset" msgstr "Perangkat karakter (Charset)" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Penyortiran" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Biner" @@ -3260,7 +3285,7 @@ msgid "Czech-Slovak" msgstr "Cecko-Slovakia" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "tidak diketahui" @@ -3315,27 +3340,27 @@ msgstr "" msgid "Font size" msgstr "Ukuran huruf" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, fuzzy, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Menampilkan %1$d penunjuk (baik privat maupun bersama)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Tidak ada bookmark" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Kotak Kueri SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Gagal membaca berkas konfigurasi" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3343,25 +3368,25 @@ msgstr "" "Server tidak merespon (atau soket server lokal tidak dikonfigurasi dengan " "benar)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Server tidak merespon." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Harap periksa hak akses direktori basis data." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Rincian…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Parameter yang hilang:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal." @@ -3458,110 +3483,105 @@ msgstr "Untuk:" msgid "Del:" msgstr "Hapus:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Kueri SQL pada basis data %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Kirim Kueri" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Tersimpan pencarian bookmark:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Bookmark Baru" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Buat bookmark" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Perbarui bookmark" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Hapus bookmark" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "paling tidak satu kata" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "semua kata" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "frasa tepat" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "persamaan reguler" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil pencarian untuk \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s cocok" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s cocok dengan %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Jelajahi" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Hapus yang cocok untuk %s tabel?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Cari dalam basis data" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Kata atau hasil untuk dicari (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Cari:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Kata dipisahkan oleh karakter spasi (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Dalam tabel:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Lepas Semua" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Dalam kolom:" @@ -3581,30 +3601,30 @@ msgstr "Saring baris" msgid "Search this table" msgstr "Cari di tabel ini" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Awal" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Sebelumnya" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Berikutnya" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Akhir" @@ -3613,7 +3633,7 @@ msgstr "Akhir" msgid "All" msgstr "Semua" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Jumlah baris:" @@ -3622,8 +3642,8 @@ msgstr "Jumlah baris:" msgid "Sort by key" msgstr "Urut berdasarkan kunci" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3645,10 +3665,10 @@ msgstr "Urut berdasarkan kunci" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opsi" @@ -3690,29 +3710,29 @@ msgstr "Teks Dikenali" msgid "Well Known Binary" msgstr "Biner Diketahui" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Baris telah dihapus." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Tutup" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Kueri SQL Anda berhasil dieksekusi." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3721,75 +3741,75 @@ msgstr "" "Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat " "%sdokumentasi%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Menampilkan baris %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "total %1$d, %2$d dalam kueri" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "total %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Pencarian dilakukan dalam %01.4f detik." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Pilih Semua" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Salin ke clipboard" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operasi hasil kueri" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Tampilkan bagan" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualisasi data GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Tautan tidak ditemukan!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Tidak ada" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 #, fuzzy msgid "Convert to Kana" msgstr "Mengkonversi ke Kana" @@ -3798,75 +3818,75 @@ msgstr "Mengkonversi ke Kana" msgid "Too many error messages, some are not displayed." msgstr "Terlalu banyak pesan kesalahan, sebagian tidak bisa ditampilkan." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Laporan" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Selanjutnya kirim laporan otomatis" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "File bukan file unggah." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Berkas yang diunggah melewati ketentuan upload_max_filesize dalam php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Berkas yang diunggah melewati MAX_FILE_SIZE yang ditentukan dalam form HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Berkas yang diunggah hanya terunggah sebagian." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Folder sementara tidak ditemukan." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Gagal menulis berkas ke diska." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Pengunggahan berkas dihentikan oleh ekstensi." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Galat tidak dikenal sewaktu mengunggah berkas." -#: libraries/File.php:424 +#: libraries/File.php:445 #, fuzzy msgid "File is a symbolic link" msgstr "File merupakan tautan simbolik" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Berkas tidak dapat dibaca!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Tidak dapat memindahkan berkas upload, lihat [doc@faq1-11]FAQ 3.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Terjadi galat sewaktu memindahkan berkas unggahan." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Tidak bisa membaca (memindah) file unggah." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3875,28 +3895,28 @@ msgstr "" "Anda mencoba untuk memuat berkas dengan kompresi yang tidak didukung (%s). " "Dukungan belum diimplementasi atau tidak aktif di dalam konfigurasi Anda." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Saat ini menjalankan revisi Git %1$s dari %2$s cabang." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Informasi Git hilang!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Buka jendela phpMyAdmin baru" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Tampilan cetak" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Klik pada bar untuk menggulir ke atas halaman" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript harus diaktifkan lewat point ini!" @@ -3905,20 +3925,20 @@ msgid "No index defined!" msgstr "Indeks belum ditentukan!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeks" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3928,59 +3948,59 @@ msgstr "Indeks" msgid "Action" msgstr "Tindakan" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nama kunci" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Dipadatkan" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalitas" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Kunci primer telah dihapus." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s telah dihapus." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Hapus" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3989,19 +4009,19 @@ msgstr "" "Indeks %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan " "untuk dibuang." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Nomor halaman:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Mengabaikan kode bahasa yang tidak didukung." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Bahasa" @@ -4027,11 +4047,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4050,14 +4070,15 @@ msgid "View" msgstr "Gambarkan" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4066,8 +4087,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4075,45 +4096,45 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Cari" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Tambahkan" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Hak Akses" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Pelacakan" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4129,16 +4150,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Basis data kelihatannya kosong!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Kueri" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routine" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4146,20 +4167,20 @@ msgstr "Routine" msgid "Events" msgstr "Event" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Desainer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Tengah kolom" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Basis data" @@ -4170,41 +4191,41 @@ msgid "User accounts" msgstr "Grup pengguna" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log biner" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikasi" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabel" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Set Karakter" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Mesin" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugin" # No difference between singular and plural in this case for Indonesian # language. -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4212,7 +4233,7 @@ msgstr[0] "%1$d baris terpengaruh." # No difference between singular and plural in this case for Indonesian # language. -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4220,7 +4241,7 @@ msgstr[0] "%1$d baris telah dihapus." # No difference between singular and plural in this case for Indonesian # language. -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4267,27 +4288,27 @@ msgstr "Tabel favorit" msgid "Favorites" msgstr "Favorit" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Harap berikan nama untuk pencarian bookmark ini." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Informasi hilang untuk menyimpan pencarian bookmark ini." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Entri dengan nama ini sudah ada." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Hilangnya informasi untuk menghapus pencarian ini." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Hilangnya informasi untuk memuat pencarian." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Terjadi kesalahan ketika memuat pencarian." @@ -4349,7 +4370,7 @@ msgstr "Tampilkan tabel terbuka" msgid "Show slave hosts" msgstr "Tampilkan host slave" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Tampilkan status master" @@ -4401,69 +4422,69 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d menit" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Informasi status detail mesin penyimpanan ini tidak tersedia." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpanan utama pada server MySQL ini." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s siap untuk digunakan pada server MySQL ini." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s didinonaktifkan untuk server MySQL ini." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Server MySQL ini tidak mendukung mesin penyimpanan %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "status tabel tidak diketahui:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Sumber Basis data `%s` tidak ditemukan!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Target Basis data `%s` tidak ditemukan!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Basis data tidak valid:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Nama tabel tidak valid:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s telah berubah nama menjadi %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Tidak dapat menyimpan preferensi UI tabel!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4472,7 +4493,7 @@ msgstr "" "Gagal membersihkan tabel UI preferences (lihat $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4483,19 +4504,19 @@ msgstr "" "terus-menerus setelah Anda me-refresh halaman ini. Silakan periksa jika " "struktur tabel telah berubah." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nama kunci primer harus \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Gagal ubah nama Indeks ke PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Bagian indeks belum diberi definisin!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Kesalahan membuat kunci asing pada %1$s (periksa tipe data)" @@ -4821,7 +4842,7 @@ msgid "Date and time" msgstr "Tanggal dan waktu" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "String" @@ -4836,136 +4857,136 @@ msgstr "Spasial" msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Data statis" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d kesalahan ditemukan dalam analisis." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Jelaskan SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Lewati Penjelasan SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, fuzzy, php-format msgid "Analyze Explain at %s" msgstr "Menganalisis Jelaskan di %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Kode PHP tidak ditemukan" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kirim Kueri" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Buat kode PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Segarkan" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profil" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Edit dikotak" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Minggu" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y pada %H.%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parameter yang hilang:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Langsung ke basis data \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Tidak ada arsip untuk diunggah!" # Imperative menu -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Kosongkan" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Eksekusi" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Pengguna" @@ -4979,7 +5000,7 @@ msgstr "per menit" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "dalam sejam" @@ -4987,12 +5008,12 @@ msgstr "dalam sejam" msgid "per day" msgstr "per hari" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Cari:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5000,7 +5021,7 @@ msgstr "Cari:" msgid "Description" msgstr "Deskripsi" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Gunakan nilai ini" @@ -5041,22 +5062,22 @@ msgstr "YA" msgid "NO" msgstr "TIDAK" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nama" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Panjang/Nilai" @@ -5067,7 +5088,7 @@ msgstr "Panjang/Nilai" msgid "Attribute" msgstr "Atribut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 #, fuzzy msgid "A_I" msgstr "A_I" @@ -5089,13 +5110,13 @@ msgstr "Tambah kolom" msgid "Select a column." msgstr "Pilih dua kolom" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "Tambah kolom" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5103,7 +5124,7 @@ msgstr "Tambah kolom" msgid "Attributes" msgstr "Atribut" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5112,27 +5133,27 @@ msgstr "" "Anda mengaktifkan Fungsi mbstring.func_overload pada konfigurasi PHP. " "Pilihan ini tidak cocok dengan phpMyAdmin dan mampu merusak sebagian data!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Indeks server tidak sah: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Metode autentikasi dalam konfigurasi tidak sah:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, fuzzy, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5143,20 +5164,20 @@ msgstr "" "pengaturan konfigurasi untuk [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/" "em]. phpMyAdmin saat ini menggunakan zona waktu default dari server database." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Anda harus memperbarui ke %s %s atau lebih baru." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Error: Token tidak cocok" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "upaya penimpaan GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "memungkinkan mengeksploitasi" @@ -5822,7 +5843,7 @@ msgid "Compress on the fly" msgstr "Pampatkan sambil jalan" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Berkas konfigurasi" @@ -5938,13 +5959,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Waktu eksekusi maksimum" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Tambahkan statement %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Simpan sebagai berkas" @@ -5954,7 +5975,7 @@ msgstr "Set karakter berkas" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6079,7 +6100,7 @@ msgid "Save on server" msgstr "Simpan di server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Timpa berkas yang ada" @@ -6095,7 +6116,7 @@ msgstr "Ingat templat nama berkas" # Imperative verb #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" @@ -6104,7 +6125,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Apit nama tabel dan kolom dengan tanda petik balik" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modus kompatibilitas SQL" @@ -6136,7 +6157,7 @@ msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Tambahkan %s" @@ -6318,7 +6339,7 @@ msgid "Customize the navigation tree." msgstr "Atur panel navigasi" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Server" @@ -7289,7 +7310,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Metode autentikasi yang dipakai." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Jenis autentikasi" @@ -8167,7 +8188,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Aktifkan tab pengembang dalam pengaturan" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Periksa versi terbaru" @@ -8175,10 +8196,10 @@ msgstr "Periksa versi terbaru" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Aktifkan pemeriksaan versi terbaru pada halaman utama phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Pemeriksaan versi" @@ -8336,25 +8357,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Teks OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Daftar favorit sudah penuh!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s telah dikosongkan." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "View %s telah dihapus" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8369,12 +8390,12 @@ msgid "Position" msgstr "Posisi" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Jenis event" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID Server" @@ -8383,7 +8404,7 @@ msgid "Original position" msgstr "Posisi aslinya" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informasi" @@ -8397,42 +8418,42 @@ msgstr "Potongkan pencarian yang ditampilkan" msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Basis data tidak ditemukan" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s telah dibuat." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Sukses menghapus basis data %s." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Baris" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Jumlah" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Beban" @@ -8461,36 +8482,36 @@ msgstr "" msgid "Enable statistics" msgstr "Aktifkan Statistik" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Pengaturan variabel gagal" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 #, fuzzy msgid "No SQL query was set to fetch data." msgstr "Tidak ada query SQL ditetapkan untuk mengambil data." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 #, fuzzy msgid "No numeric columns present in the table to plot." msgstr "Tidak ada kolom numerik yang muncul dalam tabel untuk perencanaan." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data" msgid "No data to display" msgstr "Tidak ada data" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabel %1$s berhasil diubah." @@ -8538,7 +8559,7 @@ msgstr "Sukses menghapus pengguna yang dipilih." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Galat kueri" @@ -8556,12 +8577,12 @@ msgstr "Ubah" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8584,13 +8605,13 @@ msgstr "Teks penuh" msgid "Distinct values" msgstr "Jelajahi nilai distingtif" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tidak ada perubahan" @@ -8614,33 +8635,37 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Kata Sandi tidak ditetapkan" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Kata Sandi:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Ketik ulang:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Pengernaian Kata Sandi (Password Hashing)" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8650,103 +8675,103 @@ msgstr "" "terenkripsi yang mengenkripsi password menggunakan RSA'; saat menyambung " "ke server." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Mengekspor basis data dari server saat ini" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Mengekspor tabel dari basis data \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Mengekspor baris dari tabel \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Jenis ekspor" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Templat nama berkas:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Nama tabel" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Buat" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Templat nama berkas:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "Tingkat diska temporer" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Diperbarui" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Pilih tabel" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Metode ekspor" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Cepat - menampilkan opsi minimum" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Kustom - menampilkan semua opsi" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Basis data" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tabel" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opsi khusus format:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8754,52 +8779,52 @@ msgstr "" "Gulir ke bawah untuk mengisi pilihan untuk format yang dipilih dan " "mengabaikan pilihan untuk format lain." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Konversi Pengodean:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Baris:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Dump beberapa baris" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Baris untuk memulai:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Dump semua row" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Hasil:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Simpan ke direktori %s di server" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Templat nama berkas:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ akan menjadi nama server" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ akan menjadi nama basis data" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ akan menjadi nama tabel" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8810,116 +8835,116 @@ msgstr "" "menggunakan format string waktu. Tambahan ditransformasi sehingga menjadi: " "%3$s. Teks lain akan disimpan seperti biasa. Lihat %4$sFAQ%5$s untuk rincian." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "gunakan ini untuk ekspor kedepannya" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Set karakter berkas:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Kompresi:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "di-zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "di-gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Tampilkan hasil sebagai teks" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Mengekspor tampilan sebagai tabel" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horisontal (judul diputar)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 #, fuzzy msgid "Rename exported databases/tables/columns" msgstr "Ubah nama diekspor database / tabel / kolom" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Simpan hasil ke suatu berkas" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 #, fuzzy msgid "Skip tables larger than" msgstr "Lewati tabel lebih besar dari" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Pilih tabel" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Pilih tabel" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "Nama basis data" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "Nama halaman baru: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "Salin Nama kolom" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Salin Nama kolom" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Tidak dapat memuat plugin export, harap periksa instalasi Anda!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "cabang %1$s dari %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "Tidak bercabang" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revisi Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "committ pada %1$s oleh %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "Ditulis pada %1$s oleh %2$s" @@ -9409,13 +9434,13 @@ msgstr "" "Dokumentasi dan informasi lebih lanjut mengenai PBXT dapat ditemukan pada %s " "PrimeBase XT Halaman %s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Tidak cukup ruang untuk menyimpan %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9423,84 +9448,84 @@ msgstr "" "Berkas %s sudah ada pada server. Ganti nama berkas atau centang opsi " "overwrite." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Server web tidak memiliki hak akses untuk menyimpan berkas %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada berkas %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memberikan hasil kosong (atau nol baris)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 #, fuzzy msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurred.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 #, fuzzy msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Struktur berikut telah baik telah dibuat atau diubah. Di sini Anda dapat:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy msgid "View a structure's contents by clicking on its name." msgstr "Lihat isi struktur ini dengan mengklik namanya." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Mengubah pengaturan yang dengan mengklik sesuai \"Options\" link." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy msgid "Edit structure by following the \"Structure\" link." msgstr "Mengedit struktur dengan mengikuti link \"Struktur\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Tuju ke basis data" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Edit pengaturan %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Tuju ke tabel" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktur %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Tuju ke view" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 #, fuzzy msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Hanya satu meja UPDATE dan DELETE query dapat disimulasikan." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -9514,82 +9539,83 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Buat indeks pada  %s  kolom" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Sembunyikan" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Fungsi" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Karena panjangnya,
isian ini mungkin tidak dapat diedit" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Biner - jangan diedit" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Atau" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direktori unggahan server web" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edit/Tambah" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Lanjutkan penambahan untuk %s baris" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "selanjutnya" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Tambahkan sebagai baris baru" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Tambahkan sebagai baris baru dan abaikan galat" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Tampilkan kueri penambahan" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "kembali" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "tambahkan baris baru berikutnya" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9599,8 +9625,8 @@ msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9611,31 +9637,31 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sukses!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Struktur saja" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Data saja" @@ -9647,14 +9673,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Tambahkan batasan" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9714,8 +9740,8 @@ msgstr "Prosedur" msgid "Views:" msgstr "View" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Tampilkan" @@ -9766,20 +9792,20 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "%s hasil lainnya ditemukan" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 #, fuzzy msgid "Type to filter these, Enter to search all" msgstr "Ketik untuk menyaring ini, Enter untuk mencari semua" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Clear series" msgid "Clear fast filter" msgstr "Bersihkan seri" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 #, fuzzy msgid "Collapse all" msgstr "Tutup semua" @@ -9796,7 +9822,7 @@ msgstr "Nama kelas tidak valid \"%1$s\", menggunakan default \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Tidak dapat menambah kolom!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 #, fuzzy msgid "Expand/Collapse" msgstr "Bentangkan/Collapse" @@ -9820,7 +9846,7 @@ msgstr "Baru" msgid "Database operations" msgstr "Opsi ekspor basis data" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9947,13 +9973,13 @@ msgstr "" "Pilih kolom yang dapat dipecah menjadi lebih dari satu. (di pilih dari 'ada " "kolom seperti', itu akan pindah ke langkah berikutnya)" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Pilih dua kolom" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -10268,8 +10294,8 @@ msgid "Rename database to" msgstr "Ubah nama basis data menjadi" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10317,184 +10343,184 @@ msgstr "(unik)" msgid "Move table to (database.table)" msgstr "Pindahkan tabel ke (basis data.tabel)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Ubah nama tabel menjadi" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentar tabel" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Pilihan untuk tabel" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Mesin Penyimpanan" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 #, fuzzy msgid "Change all column collations" msgstr "Membuat semua kolom atom" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Salin tabel ke (basis data.nama tabel)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Pindah ke tabel salinan" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Pemeliharaan tabel" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analisis tabel" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Periksa tabel" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Periksa tabel" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentasikan tabel" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, fuzzy, php-format msgid "Table %s has been flushed." msgstr "Tabel %s telah dibersihkan." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Bersihkan tabel (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimalkan tabel" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Perbaiki tabel" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Hapus data atau tabel" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Kosongkan tabel (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Hapus tabel (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analisis" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Periksa" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimalkan" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Bangun ulang" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Perbaiki" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 #, fuzzy msgid "Truncate" msgstr "Mengosongkan" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Tutup" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Pemeliharaan partisi" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partisi %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Hapus partisi" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Cek integriti referensial:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Memindahkan tabel ke diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s telah disalin ke %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s telah disalin ke %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Nama tabel kosong!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Format ini tidak memiliki opsi" @@ -10523,18 +10549,18 @@ msgstr "Tampilkan warna" msgid "Only show keys" msgstr "Hanya tampilkan kunci" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Koneksi gagal: pengaturan invalid." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang di %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10543,7 +10569,7 @@ msgstr "" "Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan " "%1$ssetup script%2$s untuk membuatnya." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10555,7 +10581,7 @@ msgstr "" "dan kata sandi pada berkas config.inc.php untuk memastikan kecocokannya " "dengan informasi yang telah diberikan oleh administrator server MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 #, fuzzy msgid "Retry to connect" msgstr "Coba lagi untuk menghubungkan" @@ -10584,17 +10610,17 @@ msgstr "Nama Pengguna:" msgid "Server Choice:" msgstr "Pilihan Server" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 #, fuzzy msgid "Entered captcha is wrong, try again!" msgstr "Captcha yang dimasukan salah, coba lagi!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 #, fuzzy msgid "Please enter correct captcha!" msgstr "Silakan masukkan captcha yang benar!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10658,7 +10684,7 @@ msgstr "Opsi dump data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" @@ -10667,7 +10693,7 @@ msgstr "Dumping data untuk tabel" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Kejadian" @@ -10675,8 +10701,8 @@ msgstr "Kejadian" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definisi" @@ -10772,7 +10798,7 @@ msgstr "Masukkan nama kolom pada baris pertama" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11385,7 +11411,7 @@ msgstr "Daftar Isi" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -11802,11 +11828,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Login ulang ke phpMyAdmin untuk memuat file konfigurasi yang baru." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "tidak ada deskripsi" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11816,7 +11842,7 @@ msgstr "" "database bernama 'phpmyadmin'. Anda bisa ke tab 'Operasi' database untuk " "mengatur penyimpanan konfigurasi phpMyAdmin disana." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11824,41 +11850,41 @@ msgid "" "configuration storage there." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replikasi master" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Server ini dikonfigurasikan sebagai master dalam proses replikasi." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Tampilkan slave yang tersambung" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Tambahkan pengguna replikasi slave" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Konfigurasi master" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy msgid "" "This server is not configured as a master server in a replication process. " @@ -11873,19 +11899,19 @@ msgstr "" "dapat memilih untuk mengabaikan semua database secara default dan " "memungkinkan hanya database tertentu untuk direplikasi. Silakan pilih mode:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replikasikan semua basis data; Abaikan:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Abaikan semua basis data; Replikasikan:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Harap pilih basis data:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 #, fuzzy msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " @@ -11894,7 +11920,7 @@ msgstr "" "Sekarang, tambahkan baris berikut pada akhir seksi [mysqld] di my.cnf Anda " "dan silakan restart server MySQL sesudahnya." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 #, fuzzy msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " @@ -11905,74 +11931,74 @@ msgstr "" "Anda akan melihat pesan yang memberitahukan, bahwa server ini adalah " "dikonfigurasi sebagai master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replikasi slave" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Koneksi tidak aman" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Thread SQL slave tidak berjalan!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Thread IO slave tidak berjalan!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server ini dikonfiguraskan sebagai slave dalam proses replikasi. Apakah Anda " "ingin:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Lihat tabel status slave" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kendalikan slave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Jalankan semua" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Hentikan semua" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 #, fuzzy msgid "Reset slave" msgstr "Reset slave" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Jalankan hanya Thread SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Hanya hentikan Thread SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Jalankan hanya Thread IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Hanya hentikan Thread IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Ubah atau konfigurasikan ulang server master" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11981,26 +12007,26 @@ msgstr "" "Server ini tidak dikonfigurasikan sebagai slave dalam proses replikasi. " "Apakah Anda ingin mengonfigurasikannya?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Kelola galat:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Pengabaian galat dapat menyebabkan master dan slave tidak tersinkronisasi!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Lewati galat saat ini" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Lewati galat saat ini" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -12009,11 +12035,11 @@ msgstr "" "Server ini tidak dikonfigurasikan sebagai master dalam proses replikasi. " "Apakah Anda ingin mengonfigurasikannya?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Konfigurasi slave" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 #, fuzzy msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " @@ -12022,57 +12048,57 @@ msgstr "" "Pastikan, Anda memiliki server-id unik di file konfigurasi anda (my.cnf). " "Jika tidak, silakan tambahkan baris berikut ke dalam seksi [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Nama pengguna" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nama pengguna" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Kata Sandi" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Porta" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Status master" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Status slave" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabel" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Inang" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 #, fuzzy msgid "" "Only slaves started with the --report-host=host_name option are visible in " @@ -12081,41 +12107,41 @@ msgstr "" "Hanya anak dimulai dengan pilihan --report-host=host_name yang terlihat " "dalam daftar ini." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Semua inang" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Inang Ini" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Setiap pengguna" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Gunakan text field" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 #, fuzzy msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -12124,96 +12150,96 @@ msgstr "" "Ketika tabel Host digunakan, bidang ini diabaikan dan nilai-nilai yang " "tersimpan dalam tabel host yang digunakan sebagai gantinya." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ketik ulang" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Buatkan kata sandi" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Status replikasi" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Replikasi master" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Sukses reload Hak Istimewa (Privileges)." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Replikasi master" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Status replikasi" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Replikasi master" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Sukses." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Galat" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Galat tidak dikenal" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Tidak dapat tersambung ke master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Tidak dapat membaca posisi log master. Mungkin ada masalah hak akses pada " "master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Tidak dapat mengubah master" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "Server master berhasil diubah menjadi %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, fuzzy, php-format @@ -12234,7 +12260,7 @@ msgstr "Event %1$s telah diubah." msgid "Event %1$s has been created." msgstr "Event %1$s telah dibuat." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy msgid "One or more errors have occurred while processing your request:" @@ -12245,79 +12271,79 @@ msgstr "" msgid "Edit event" msgstr "Edit kejadian" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detail" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nama event" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Ubah menjadi %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Dieksekusi pada" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Dieksekusi setiap" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Mulai" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Selesai" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Sewaktu selesai pertahankan" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 #, fuzzy msgid "Definer" msgstr "Definer" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 #, fuzzy msgid "The definer must be in the \"username@hostname\" format!" msgstr "Pembuat definisi harus dengan format \"username@hostname\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide an event name" msgid "You must provide an event name!" msgstr "Anda harus memasukkan nama event" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Anda harus memasukkan nilai interval yang valid untuk event." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Anda harus memasukkan waktu eksekusi yang valid untuk event." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Anda harus memasukkan jenis yang valid untuk event." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Anda harus memasukkan definisi event." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -12341,7 +12367,7 @@ msgstr "Status penjadwal event" msgid "The backed up query was:" msgstr "Didukung query adalah:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Hasil" @@ -12358,73 +12384,73 @@ msgstr "" "gagal! [/strong] Silakan gunakan ditingkatkan ekstensi 'mysqli' untuk " "menghindari masalah." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Edit rutinitas" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Jenis routine invalid: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Routine %1$s telah dibuat." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Maaf, kami gagal memulihkan routine yang dihapus." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Routine %1$s telah diubah." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Routine %1$s telah diubah." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nama routine" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parameter" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Arah" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Tambahkan parameter" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Hapus parameter terakhir" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Jenis hasil" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Panjang/nilai hasil" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Opsi hasil" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Deterministik" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -12432,27 +12458,27 @@ msgstr "" "Anda tidak memiliki cukup hak untuk melakukan operasi ini; Silakan lihat " "dokumentasi untuk lebih jelasnya" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Jenis keamanan" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Akses data SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "Anda harus memasukkan nama routine" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, fuzzy, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Arah tidak valid \"%s\" diberikan untuk parameter." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -12460,36 +12486,36 @@ msgstr "" "Anda harus memasukkan panjang/nilai untuk parameter routine bagi jenis ENUM, " "SET, VARCHAR, dan VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Anda harus memasukkan nama dan jenis setiap parameter routine." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Anda harus memasukkan jenis hasil yang valid untuk routine." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Anda harus memasukkan definisi routine." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Hasil eksekusi routine %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." msgstr[0] "%d baris terpengaruh oleh pernyataan terakhir dalam prosedur." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Jalankan routine" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parameter routine" @@ -12512,40 +12538,40 @@ msgstr "Tabel %1$s telah dibuat." msgid "Edit trigger" msgstr "Edit trigger" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nama trigger" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Waktu" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a trigger name" msgid "You must provide a trigger name!" msgstr "Anda harus memasukkan nama trigger" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" msgstr "Anda harus memasukkan waktu yang valid untuk trigger" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid event for the trigger" msgid "You must provide a valid event for the trigger!" msgstr "Anda harus memasukkan event yang valid untuk trigger" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "Anda harus memberikan nama tabel yang valid" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Anda harus memasukkan definisi trigger." @@ -12683,94 +12709,94 @@ msgstr "Set dan Penyortiran Karakter" msgid "Databases statistics" msgstr "Statistik basis data" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Tanpa hak akses." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Mencakup semua hak akses selain GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Mengizinkan untuk menghapus data." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk membuat basis data dan tabel baru." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Mengizinkan penghapusan basis data dan tabel." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk memuat ulang pengaturan server dan membersihkan singgahan " "server." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Mengizinkan untuk melihat proses dari semua pengguna" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan mengimpor data dari dan mengekspor data ke berkas." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk mengubah struktur dari tabel yang ada." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar basis data." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12781,140 +12807,112 @@ msgstr "" "global atau untuk menonaktifkan sebuah Thread yang dimiliki oleh pengguna " "lain." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk membuat tabel temporer." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Mengizinkan untuk membuat view baru." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Mengizinkan penyiapan event untuk penjadwal event" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Mengizinkan untuk membuat dan menghapus trigger" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Mengizinkan untuk membuat routine tersimpan." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan untuk mengubah dan menghapus routine tersimpan." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan untuk membuat, menghapus, dan mengubah nama akun pengguna." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi routine tersimpan." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Tidak ada" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Grup pengguna" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Koneksi persisten" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Koneksi persisten" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Dibutuhkan sertifikat X509 yang valid." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 #, fuzzy msgid "Requires that a specific cipher method be used for a connection." msgstr "Mensyaratkan bahwa metode cipher spesifik digunakan untuk sambungan." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 #, fuzzy msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "Mengharuskan sertifikat X509 yang dikeluarkan oleh ini BISA disajikan." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 #, fuzzy msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Mengharuskan sertifikat X509 yang dikeluarkan oleh ini BISA disajikan." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Batas dari sumber" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " -"yang telah ditentukan." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Membatasi jumlah kueri yang diperbolehkan untuk setiap pengguna dalam batas " "waktu satu jam." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12922,29 +12920,27 @@ msgstr "" "Membatasi jumlah perintah untuk merubah sebuah tabel atau basis data untuk " "setiap pengguna dalam batas waktu satu jam." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Membatasi jumlah koneksi simultan yang dapat dibuat pengguna." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Routine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 #, fuzzy msgid "" "Allows user to give to other users or remove from other users privileges " @@ -12953,70 +12949,70 @@ msgstr "" "Memperbolehkan pengguna untujk memberi atau menghapus otoritas pengguna lain " "yang mengakses rutinitas ini." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Mengizinkan untuk mengubah dan menghapus routine tersimpan." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Mengizinkan eksekusi routine tersimpan." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Hak akses khusus tabel" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Catatan: Nama hak akses MySQL dalam bahasa Inggris" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administrasi" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Hak akses global" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Hak akses khusus basis data" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Mengizinkan untuk membuat tabel baru." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Mengizinkan untuk menambah pengguna dan hak akses tanpa harus memuat ulang " "tabel hak akses." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 #, fuzzy msgid "" "Allows user to give to other users or remove from other users the privileges " @@ -13025,37 +13021,32 @@ msgstr "" "Memperbolehkan pengguna untuk memberikan atau menghapus otoritas pengguna " "lain yang mengakses diri anda." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentikasi kuki" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autentikasi signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Autentikasi kuki" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Informasi Masuk" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 #, fuzzy msgid "" "An account already exists with the same username but possibly a different " @@ -13064,259 +13055,243 @@ msgstr "" "Account yang sudah ada dengan nama pengguna yang sama tapi mungkin nama host " "yang berbeda." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Nama pengguna" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Catat nama" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentikasi" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Pengernaian Kata Sandi (Password Hashing)" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah mencabut hak akses untuk %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Tambah grup pengguna" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Basis data untuk pengguna" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Buat basis data dengan nama yang sama dan beri semua hak." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Berikan semua hak untuk basis data \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Pengguna memiliki akses ke \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Pengguna %s telah ditambahkan." # Table column to indicate if the user able to grant a privilege -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Pemberi Izin" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 #, fuzzy msgid "Not enough privilege to view users." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Semua" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 #, fuzzy msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Cabut" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy msgid "Edit user group" msgstr "Edit server" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… mempertahankan yang lama." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… hapus yang lama dari User Table." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Ubah Informasi Masuk / Salin Pengguna" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Buat pengguna baru dengan hak akses yang sama dan …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Hak akses khusus kolom" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Hapus pengguna yang dipilih" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Grup pengguna" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Memuat hak akses" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah memperbarui hak akses untuk %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Hak akses berhasil dimuat ulang." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Hak Akses untuk %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4620 -#, fuzzy -#| msgid "New" -msgctxt "Create new user" -msgid "New" -msgstr "Baru" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grup pengguna" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 #, fuzzy msgid "" "Note: You are attempting to edit privileges of the user with which you are " @@ -13324,13 +13299,13 @@ msgid "" msgstr "" "Catatan: Anda mencoba untuk mengedit hak-hak user yang Anda sedang login." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Ikhtisar pengguna" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 #, fuzzy msgid "" "A user account allowing any user from localhost to connect is present. This " @@ -13342,7 +13317,7 @@ msgstr "" "jika bagian host dari account mereka memungkinkan koneksi dari setiap (%) " "host." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13356,7 +13331,7 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13376,11 +13351,11 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." @@ -13719,14 +13694,14 @@ msgstr "Perintah" msgid "Progress" msgstr "Proses" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "Filter" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13755,12 +13730,12 @@ msgstr "per menit" msgid "per second:" msgstr "per detik" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Keterangan" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13784,7 +13759,7 @@ msgstr "Tampilkan nilai tanpa format" msgid "Related links:" msgstr "Tautan terkait:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13792,11 +13767,11 @@ msgstr "" "Jumlah koneksi yang digugurkan karena klien terputus tanpa menutup koneksi " "dengan baik." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL yang gagal." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13806,16 +13781,16 @@ msgstr "" "melebihi nilai binlog_cache_size dan menggunakan berkas temporer untuk " "menyimpan perintah dari transaksi." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Jumlah transaksi yang menggunakan singgahan log biner temporer." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL (baik berhasil maupun tidak)." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13827,11 +13802,11 @@ msgstr "" "mungkin perlu meningkatkan nilai tmp_table_size agar tabel temporer disimpan " "di yang berbasis memori daripada yang berbasis diska." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Jumlah berkas temporer yang telah dibuat mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13839,7 +13814,7 @@ msgstr "" "Jumlah tabel temporer dalam-memori yang dibuat otomatis oleh server sewaktu " "mengeksekusi perintah." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13847,7 +13822,7 @@ msgstr "" "Jumlah baris yang ditulis oleh INSERT DELAYED yang menyebabkan beberapa " "galat (kemungkinan karena kunci duplikat)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13855,23 +13830,23 @@ msgstr "" "Jumlah thread handler INSERT DELAYED yang dipakai. Setiap tabel berbeda yang " "menggunakan INSERT DELAYED mendapat satu thread sendiri." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Jumlah baris INSERT DELAYED yang ditulis." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Jumlah perintah FLUSH yang dieksekusi." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Jumlah perintah COMMIT internal." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Berapa kali suatu baris dihapus dari suatu tabel." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 #, fuzzy msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " @@ -13882,7 +13857,7 @@ msgstr "" "tentang meja dengan nama yang diberikan. Ini disebut penemuan. " "Handler_discover menunjukkan jumlah waktu tabel telah ditemukan." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13892,7 +13867,7 @@ msgstr "" "bahwa server melakukan banyak pemindaian indeks lengkap; sebagai contoh, " "SELECT col1 FROM foo, dengan asumsi bahwa col1 diindeks." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13901,7 +13876,7 @@ msgstr "" "tinggi merupakan indikasi bagus bahwa kueri dan tabel Anda diindeks dengan " "baik." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13911,7 +13886,7 @@ msgstr "" "bertambah jika Anda melakukan kueri terhadap kolom indeks dengan suatu " "rentang batasan atau jika Anda melakukan pemindaian indeks." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13919,7 +13894,7 @@ msgstr "" "Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca " "ini terutama digunakan untuk mengoptimalkan ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13931,7 +13906,7 @@ msgstr "" "Anda mungkin memiliki banyak kueri yang mengharuskan MySQL memindai seluruh " "tabel atau Anda memiliki join yang tidak menggunakan kunci dengan baik." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13943,36 +13918,36 @@ msgstr "" "bahwa tabel Anda tidak diindeks dengan baik atau bahwa kueri Anda tidak " "ditulis dengan memanfaatkan indeks yang Anda miliki." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Jumlah perintah ROLLBACK internal." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Jumlah permintaan untuk memperbarui baris dalam tabel." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Jumlah permintaan untuk menambah baris dalam tabel." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Jumlah halaman yang mengandung data (kotor atau bersih)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Jumlah halaman kotor saat ini." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 #, fuzzy msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Jumlah halaman kolam penyangga yang telah diminta untuk memerah." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Jumlah halaman bebas." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 #, fuzzy msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " @@ -13983,7 +13958,7 @@ msgstr "" "sedang dibaca atau ditulis atau yang tidak dapat memerah atau dihapus karena " "beberapa alasan lainnya." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 #, fuzzy msgid "" "The number of pages busy because they have been allocated for administrative " @@ -13996,12 +13971,12 @@ msgstr "" "dapat dihitung sebagai Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 #, fuzzy msgid "Total size of buffer pool, in pages." msgstr "Total ukuran buffer pool, di halaman." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 #, fuzzy msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " @@ -14010,7 +13985,7 @@ msgstr "" "Jumlah \"random\" read-aheads InnoDB dimulai. Hal ini terjadi ketika " "permintaan adalah untuk memindai sebagian besar meja tapi secara acak." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 #, fuzzy msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " @@ -14019,12 +13994,12 @@ msgstr "" "Jumlah sequential read-aheads InnoDB dimulai. Hal ini terjadi ketika InnoDB " "melakukan sekuensial penuh scan meja." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 #, fuzzy msgid "The number of logical read requests InnoDB has done." msgstr "Jumlah permintaan membaca logis InnoDB telah dilakukan." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 #, fuzzy msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " @@ -14033,7 +14008,7 @@ msgstr "" "Jumlah logis membaca bahwa InnoDB tidak bisa memuaskan dari kolam buffer dan " "harus melakukan satu halaman dibaca." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 #, fuzzy msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " @@ -14048,56 +14023,56 @@ msgstr "" "pertama. Counter ini menghitung contoh menunggu ini. Jika ukuran kolam " "penyangga ditetapkan dengan benar, nilai ini harus kecil." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 #, fuzzy msgid "The number writes done to the InnoDB buffer pool." msgstr "Jumlah menulis dilakukan untuk buffer pool InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 #, fuzzy msgid "The number of fsync() operations so far." msgstr "Jumlah fsync() operasi sejauh ini." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Jumlah operasi fsync() tunda saat ini." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Jumlah baca tunda saat ini." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Jumlah tulis tunda saat ini." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Jumlah data yang dibaca sampai saat ini, dalam bita." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Jumlah total baca data." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Jumlah total tulis data." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 #, fuzzy msgid "The amount of data written so far, in bytes." msgstr "Jumlah data yang ditulis sejauh ini, dalam byte." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 #, fuzzy msgid "The number of pages that have been written for doublewrite operations." msgstr "Jumlah halaman yang telah ditulis untuk operasi Doublewrite." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 #, fuzzy msgid "The number of doublewrite operations that have been performed." msgstr "Jumlah operasi Doublewrite yang telah dilakukan." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 #, fuzzy msgid "" "The number of waits we had because log buffer was too small and we had to " @@ -14106,42 +14081,42 @@ msgstr "" "Jumlah menunggu kami punya karena log buffer terlalu kecil dan kami harus " "menunggu untuk itu harus memerah sebelum melanjutkan." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 #, fuzzy msgid "The number of log write requests." msgstr "Jumlah permintaan log menulis." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Jumlah fisik menulis ke file log." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Jumlah fsync() menulis dilakukan ke file log." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 #, fuzzy msgid "The number of pending log file fsyncs." msgstr "Jumlah tertunda fsyncs file log." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 #, fuzzy msgid "Pending log file writes." msgstr "Tertunda file log menulis." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 #, fuzzy msgid "The number of bytes written to the log file." msgstr "Jumlah byte yang ditulis ke file log." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 #, fuzzy msgid "The number of pages created." msgstr "Jumlah halaman yang dibuat." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 #, fuzzy msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " @@ -14151,57 +14126,57 @@ msgstr "" "dihitung dalam halaman; ukuran halaman memungkinkan mereka untuk dapat " "dengan mudah dikonversi ke byte." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Jumlah halaman yang dibaca." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Jumlah halaman yang ditulis." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 #, fuzzy msgid "The number of row locks currently being waited for." msgstr "Jumlah baris kunci saat ini sedang menunggu." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 #, fuzzy msgid "The average time to acquire a row lock, in milliseconds." msgstr "Rata-rata waktu untuk mendapatkan kunci baris, dalam milidetik." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 #, fuzzy msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Total waktu yang dihabiskan untuk memperoleh baris kunci, dalam milidetik." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 #, fuzzy msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Waktu maksimum untuk mendapatkan kunci baris, dalam milidetik." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 #, fuzzy msgid "The number of times a row lock had to be waited for." msgstr "Frekuensi kunci berturut-turut harus menunggu." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Jumlah baris yang dihapus dari tabel InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Jumlah baris yang ditambahkan pada tabel InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Jumlah baris yang dibaca dari tabel InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Jumlah baris yang diperbarui pada tabel InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 #, fuzzy msgid "" "The number of key blocks in the key cache that have changed but haven't yet " @@ -14210,7 +14185,7 @@ msgstr "" "Jumlah blok kunci dalam cache kunci yang telah berubah tetapi belum memerah " "ke disk. Dulu dikenal sebagai Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 #, fuzzy msgid "" "The number of unused blocks in the key cache. You can use this value to " @@ -14219,7 +14194,7 @@ msgstr "" "Jumlah blok yang tidak digunakan dalam cache kunci. Anda dapat menggunakan " "nilai ini untuk menentukan berapa banyak dari cache kunci sedang digunakan." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 #, fuzzy msgid "" "The number of used blocks in the key cache. This value is a high-water mark " @@ -14230,18 +14205,18 @@ msgstr "" "air yang menunjukkan jumlah maksimum blok yang pernah digunakan pada satu " "waktu." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Percentage of used open files limit" msgid "Percentage of used key cache (calculated value)" msgstr "Persentase limit berkas terbuka yang dipakai" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 #, fuzzy msgid "The number of requests to read a key block from the cache." msgstr "Jumlah permintaan untuk membaca blok kunci dari cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 #, fuzzy msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " @@ -14252,7 +14227,7 @@ msgstr "" "nilai key_buffer_size Anda mungkin terlalu kecil. Tingkat cache miss dapat " "dihitung sebagai Key_reads / Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 #, fuzzy msgid "" "Key cache miss calculated as rate of physical reads compared to read " @@ -14261,17 +14236,17 @@ msgstr "" "Key Cache rindu dihitung sebagai tingkat fisik berbunyi dibandingkan dengan " "membaca permintaan (nilai yang dihitung)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 #, fuzzy msgid "The number of requests to write a key block to the cache." msgstr "Jumlah permintaan untuk menulis blok kunci untuk cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Jumlah menulis fisik blok kunci disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 #, fuzzy msgid "" "Percentage of physical writes compared to write requests (calculated value)" @@ -14279,7 +14254,7 @@ msgstr "" "Persentase menulis fisik dibandingkan dengan menulis permintaan (nilai yang " "dihitung)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 #, fuzzy msgid "" "The total cost of the last compiled query as computed by the query " @@ -14291,7 +14266,7 @@ msgstr "" "untuk pertanyaan yang sama. Nilai default 0 berarti bahwa tidak ada " "permintaan telah disusun belum." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 #, fuzzy msgid "" "The maximum number of connections that have been in use simultaneously since " @@ -14300,12 +14275,12 @@ msgstr "" "Jumlah maksimum koneksi yang telah digunakan secara bersamaan karena server " "dimulai." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 #, fuzzy msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Jumlah baris yang menunggu untuk ditulis dalam INSERT DELAYED antrian." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 #, fuzzy msgid "" "The number of tables that have been opened. If opened tables is big, your " @@ -14314,20 +14289,20 @@ msgstr "" "Jumlah meja yang sudah dibuka. Jika tabel dibuka besar, nilai tembolok meja " "Anda mungkin terlalu kecil." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Jumlah file yang terbuka." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 #, fuzzy msgid "The number of streams that are open (used mainly for logging)." msgstr "Jumlah aliran yang terbuka (digunakan terutama untuk logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Jumlah tabel yang terbuka." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 #, fuzzy msgid "" "The number of free memory blocks in query cache. High numbers can indicate " @@ -14338,21 +14313,21 @@ msgstr "" "masalah fragmentasi, yang dapat dipecahkan dengan mengeluarkan pernyataan " "FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Jumlah memori kosong untuk cache query." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 #, fuzzy msgid "The number of cache hits." msgstr "Jumlah cache hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 #, fuzzy msgid "The number of queries added to the cache." msgstr "Jumlah query ditambahkan ke cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 #, fuzzy msgid "" "The number of queries that have been removed from the cache to free up " @@ -14365,7 +14340,7 @@ msgstr "" "cache query. The cache query menggunakan setidaknya baru-baru digunakan " "(LRU) strategi untuk memutuskan mana query untuk menghapus dari cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 #, fuzzy msgid "" "The number of non-cached queries (not cachable, or not cached due to the " @@ -14374,22 +14349,22 @@ msgstr "" "Jumlah permintaan non-cache (tidak cachable, atau tidak di-cache karena " "pengaturan query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 #, fuzzy msgid "The number of queries registered in the cache." msgstr "Jumlah query terdaftar dalam cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 #, fuzzy msgid "The total number of blocks in the query cache." msgstr "Total jumlah blok dalam cache query." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 #, fuzzy msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikasi failsafe (belum diimplementasikan)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 #, fuzzy msgid "" "The number of joins that do not use indexes. If this value is not 0, you " @@ -14398,12 +14373,12 @@ msgstr "" "Jumlah bergabung yang tidak menggunakan indeks. Jika nilai ini tidak 0, Anda " "harus hati-hati memeriksa indeks dari tabel Anda." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 #, fuzzy msgid "The number of joins that used a range search on a reference table." msgstr "Jumlah bergabung yang digunakan pencarian range di tabel referensi." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 #, fuzzy msgid "" "The number of joins without keys that check for key usage after each row. " @@ -14413,7 +14388,7 @@ msgstr "" "baris. (Jika hal ini tidak 0, Anda harus hati-hati memeriksa indeks dari " "tabel Anda.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 #, fuzzy msgid "" "The number of joins that used ranges on the first table. (It's normally not " @@ -14422,17 +14397,17 @@ msgstr "" "Jumlah bergabung yang digunakan berkisar pada tabel pertama. (Ini biasanya " "tidak kritis bahkan jika ini adalah besar.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 #, fuzzy msgid "The number of joins that did a full scan of the first table." msgstr "Jumlah bergabung yang melakukan scan penuh meja pertama." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 #, fuzzy msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Jumlah tabel sementara yang sedang terbuka oleh thread budak SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 #, fuzzy msgid "" "Total (since startup) number of times the replication slave SQL thread has " @@ -14441,12 +14416,12 @@ msgstr "" "Jumlah (sejak startup) beberapa kali replikasi budak SQL benang telah dicoba " "transaksi." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 #, fuzzy msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ini adalah ON jika server ini adalah budak yang terhubung ke master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 #, fuzzy msgid "" "The number of threads that have taken more than slow_launch_time seconds to " @@ -14455,14 +14430,14 @@ msgstr "" "Jumlah thread yang telah mengambil lebih dari slow_launch_time detik untuk " "membuat." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 #, fuzzy msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Jumlah pertanyaan yang telah mengambil lebih dari long_query_time detik." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 #, fuzzy msgid "" "The number of merge passes the sort algorithm has had to do. If this value " @@ -14473,26 +14448,26 @@ msgstr "" "ini besar, Anda harus mempertimbangkan untuk meningkatkan nilai variabel " "sistem sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 #, fuzzy msgid "The number of sorts that were done with ranges." msgstr "Jumlah macam yang dilakukan dengan rentang." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Jumlah baris diurutkan." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 #, fuzzy msgid "The number of sorts that were done by scanning the table." msgstr "Jumlah macam yang dilakukan dengan memindai meja." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 #, fuzzy msgid "The number of times that a table lock was acquired immediately." msgstr "Frekuensi yang kunci meja diakuisisi segera." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 #, fuzzy msgid "" "The number of times that a table lock could not be acquired immediately and " @@ -14505,7 +14480,7 @@ msgstr "" "terlebih dahulu mengoptimalkan pertanyaan Anda, dan kemudian membagi meja " "Anda atau meja atau penggunaan replikasi." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 #, fuzzy msgid "" "The number of threads in the thread cache. The cache hit rate can be " @@ -14516,11 +14491,11 @@ msgstr "" "threads_created / Koneksi. Jika nilai ini merah Anda harus meningkatkan " "thread_cache_size Anda." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Jumlah koneksi yang sedang terbuka." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 #, fuzzy msgid "" "The number of threads created to handle connections. If Threads_created is " @@ -14533,13 +14508,13 @@ msgstr "" "ini tidak memberikan peningkatan kinerja penting jika Anda memiliki " "implementasi benang yang baik.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Tingkat penggunaan singgahan thread %%" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Jumlah thread yang tidak tidur." @@ -14576,45 +14551,45 @@ msgstr "Server basis data" msgid "Table level tabs" msgstr "Komentar tabel" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "tampilan pengguna" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Tambah grup pengguna" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Edit grup pengguna: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Tanpa hak akses." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Nama kolom: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versi Server" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Server basis data" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14744,7 +14719,7 @@ msgstr "Jalankan perintah SQL pada basis data %s" msgid "Run SQL query/queries on table %s" msgstr "Jalankan perintah SQL pada basis data %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Bersihkan" @@ -14839,116 +14814,116 @@ msgstr "Nonaktifkan sekarang" msgid "Version" msgstr "Versi" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Dibuat" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Diperbarui" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Buat versi" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Laporan pelacakan" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Snapshot struktur" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktif" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "tidak aktif" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Laporan pelacakan" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Hapus baris pelacakan data dari laporan" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Tidak ada data" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Tampilkan %1$s berdasarkan tanggal dari %2$s sampai %3$s oleh pengguna %4$s " "%5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Dump SQL (unduhan berkas)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Dump SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Pilihan ini akan mengganti table dan data isi table." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Eksekusi SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Ekspor sebagai %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Penyataan manipulasi data" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Pernyataan definisi data" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Tanggal" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nama Pengguna" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versi snapshot %s (kode SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Tidak ada" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Pelacakan definisi data berhasil dihapus" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Pelacakan manipulasi data berhasil dihapus" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14956,67 +14931,67 @@ msgstr "" "Anda dapat mengeksekusi dump dengan membuat dan menggunakan basis data " "sementara. Harap pastikan Anda mempunyai hak untuk melakukannya." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 #, fuzzy msgid "Comment out these two lines if you do not need them." msgstr "Komentar dari dua baris ini jika Anda tidak membutuhkan mereka." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 #, fuzzy msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Pernyataan SQL diekspor. Silahkan salin dump atau melaksanakannya." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Laporan pelacakan untuk table '%s'" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Buat versi %s dari %s.%s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabel yang tidak dilacak" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Lacak tabel" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabel yang dilacak" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Versi terakhir" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Hapus pelacak" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versi" @@ -15024,7 +14999,7 @@ msgstr "Versi" msgid "Manage your settings" msgstr "Kelola pengaturan Anda" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfigurasi telah disimpan." @@ -15050,7 +15025,7 @@ msgstr "Galat pada arsip ZIP:" msgid "No files found inside ZIP archive!" msgstr "Tidak ada berkas ditemukan dalam arsip ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Kesalahan fatal: navigasi hanya dapat diakses melalui AJAX" @@ -15060,57 +15035,57 @@ msgstr "Kesalahan fatal: navigasi hanya dapat diakses melalui AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Pengaturan tidak dapat disimpan, formulir kiriman mengandung galat" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Pastel di config.inc.php anda" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Tidak dapat mengimpor konfigurasi" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfigurasi mengandung data yang tidak tepat pada beberapa isian." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Apakah Anda ingin mengimpor pengaturan yang lain?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Disimpan pada: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Impor dari berkas" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Impor dari penyimpanan peramban" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Pengaturan akan diimpor dari penyimpanan lokal peramban Anda." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Anda tidak punya pengaturan tersimpan!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Fitur ini tidak didukung oleh peramban web Anda" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Gabungkan dengan konfigurasi saat ini" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -15119,25 +15094,25 @@ msgstr "" "Anda dapat mengatur pengaturan lain dengan mengubah config.inc.php, mis. " "dengan menggunakan %sskrip pengaturan%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Simpan sebagai berkas" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Simpan di penyimpanan peramban" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Pengaturan akan disimpan di penyimpanan lokal peramban Anda." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Pengaturan yang ada akan ditimpa!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Anda dapat mengatur ulang semua pengaturan Anda dan memulihkan nilai bawaan." @@ -15146,12 +15121,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Tampilkan dump (skema) basis data" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Tidak Ada Hak Akses" -#: server_privileges.php:147 +#: server_privileges.php:149 #, fuzzy msgid "" "Username and hostname didn't change. If you only want to change the " @@ -15160,22 +15135,22 @@ msgstr "" "Username dan hostname tidak berubah. Jika Anda hanya ingin mengubah " "password, tab 'Ganti password' harus digunakan." -#: server_status.php:35 +#: server_status.php:36 #, fuzzy msgid "Not enough privilege to view server status." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 #, fuzzy msgid "Not enough privilege to view the advisor." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Sukses hentikan Thread %s." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -15183,17 +15158,17 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu." -#: server_status_queries.php:42 +#: server_status_queries.php:43 #, fuzzy msgid "Not enough privilege to view query statistics." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: server_status_variables.php:52 +#: server_status_variables.php:53 #, fuzzy msgid "Not enough privilege to view status variables." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Unduh" @@ -15202,11 +15177,11 @@ msgstr "Unduh" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "Formset salah, periksa $formsets array dalam setup/frame/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Tidak dapat memuat atau menyimpan konfigurasi" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 #, fuzzy msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " @@ -15218,7 +15193,7 @@ msgstr "" "[doc@setup_script]dokumentasi [/doc]. Jika tidak, Anda hanya akan dapat men-" "download atau menampilkannya." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 #, fuzzy msgid "" "You are not using a secure connection; all data (including potentially " @@ -15228,24 +15203,24 @@ msgstr "" "yang berpotensi sensitif, seperti password) yang ditransfer tidak " "terenkripsi!" -#: setup/frames/index.inc.php:88 -#, fuzzy, php-format +#: setup/frames/index.inc.php:78 +#, fuzzy msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Jika server Anda juga dikonfigurasi untuk menerima permintaan HTTPS " "mengikuti [a@%s] link ini [/a] untuk menggunakan sambungan aman." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Koneksi tidak aman" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfigurasi disimpan." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 #, fuzzy msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " @@ -15255,61 +15230,61 @@ msgstr "" "direktori tingkat atas, salin ke atas tingkat satu dan menghapus direktori " "config untuk menggunakannya." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfigurasi disimpan." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Ikhtisar" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Tampilkan pesan tersembunyi (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Tidak ada server yang terkonfigurasi" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Server baru" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Bahasa bawaan" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "biarkan pengguna memilih" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- tidak ada -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Server bawaan" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Akhir baris" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Tampilkan" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Muat" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Situs phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Donasi" @@ -15349,7 +15324,7 @@ msgstr "Abaikan galat" msgid "Show form" msgstr "Tampilkan formulir" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -15357,17 +15332,17 @@ msgstr "" "Pembacaan versi gagal. Mungkin Anda sedang offline atau server upgrade tidak " "merespon." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 #, fuzzy msgid "Got invalid version string from server" msgstr "Mendapatkan string versi tidak valid dari server" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 #, fuzzy msgid "Unparsable version string" msgstr "Unparsable string versi" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -15376,7 +15351,7 @@ msgstr "" "Anda menggunakan versi Git, jalankan [kbd]git pull[/kbd] :-)[br] Versi " "stabil terbaru adalah %s, dirilis pada %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Tidak ada versi stabil baru yang tersedia" @@ -15389,12 +15364,12 @@ msgstr "Data salah" msgid "Wrong data or no validation for %s" msgstr "Salah data atau tidak ada validasi untuk %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Basis data '%s' tidak ditemukan." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s sudah ada!" @@ -15407,36 +15382,36 @@ msgstr "Tampilkan Dump (Skema) dari tabel" msgid "Invalid table name" msgstr "Nama tabel tidak valid" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Baris: %1$s, Kolom: %2$s, Kesalahan: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Tidak ada baris yang dipilih" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "Pelacakan %s.%s diaktifkan." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Tidak ada baris yang dipilih" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Perintah SQL dieksekusi." @@ -15659,7 +15634,7 @@ msgid "List of available transformations and their options" msgstr "Transformasi yang tersedia" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15685,7 +15660,7 @@ msgstr "" "(contoh: '\\\\xyz' atau 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16192,17 +16167,17 @@ msgid "Size" msgstr "Ukuran" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Pembuatan" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Pembaruan terakhir" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Pemeriksaan terakhir" @@ -16248,6 +16223,12 @@ msgstr "" "Browser Anda memiliki konfigurasi phpMyAdmin untuk domain ini. Apakah Anda " "ingin mengimpor untuk sesi saat ini?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Hapus pelacak" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16272,10 +16253,49 @@ msgstr "Tambahkan hak akses pada tabel berikut" msgid "Add privileges on the following table:" msgstr "Tambahkan hak akses pada tabel berikut" +#: templates/privileges/add_user_fieldset.phtml:2 +#, fuzzy +#| msgid "New" +msgctxt "Create new user" +msgid "New" +msgstr "Baru" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Tidak ada" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Hapus pengguna yang dipilih" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Hak akses khusus kolom" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Batas dari sumber" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " +"yang telah ditentukan." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Pilih log biner untuk ditampilkan" @@ -16308,7 +16328,7 @@ msgstr "Plugin" msgid "Author" msgstr "Pembuat" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "tidak aktif" @@ -16491,7 +16511,7 @@ msgstr "Pengguna:" msgid "Comment:" msgstr "Komentar:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16535,22 +16555,22 @@ msgstr "" msgid "Foreign key constraint" msgstr "Batasan kunci asing" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Tambahkan batasan" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relasi internal" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relasi internal" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 #, fuzzy msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " @@ -16558,7 +16578,7 @@ msgid "" msgstr "" "Relasi internal tidak diperlukan bila hubungan FOREIGN KEY yang sesuai." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16618,11 +16638,11 @@ msgstr "String asli" msgid "Replaced string" msgstr "Gantikan string" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Gantikan" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Kriteria pencarian tambahan" @@ -16701,7 +16721,7 @@ msgid "at beginning of table" msgstr "Pada Awal Tabel" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16737,28 +16757,28 @@ msgstr "Panjang baris" msgid "Index length" msgstr "Panjang baris" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "dipartisi" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Hapus partisi" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Tampilan edit" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Penggunaan ruang" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektif" @@ -16790,33 +16810,33 @@ msgstr "Usulkan struktur tabel" msgid "Track view" msgstr "Lacak tabel" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Statistik Baris" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statis" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamis" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "dipartisi" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Panjang baris" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Besar baris" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Indeks otomatis berikut" @@ -16829,50 +16849,50 @@ msgstr "Kolom %s telah dihapus." msgid "Click to toggle" msgstr "Klik untuk beralih" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Dapatkan tema lainnya!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Jenis MIME yang tersedia" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Transformasi yang tersedia" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Transformasi yang tersedia" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Deskripsi" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Tunggu sebentar yach…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Hak Akses Anda untuk melanjut tidak cukup!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil telah diperbarui." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16956,7 +16976,7 @@ msgstr "Akhir tak terduga dari ekspresi CASE" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 #, fuzzy msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Ada sebuah simbol yang menghilang! Kata kunci dasar tidak dapat digunakan " @@ -16985,19 +17005,19 @@ msgid "Unrecognized data type." msgstr "tipe data yang belum diakui." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Tabel belum dipilih." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Alias ditemukan sebelumnya." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "dot tak terduga." @@ -17064,30 +17084,30 @@ msgstr "Diharapkan spasi sebelum pembatas." msgid "Expected delimiter." msgstr "Diharapkan pembatas." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Event %1$s telah dibuat." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Templat nama tabel" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awal Tabel" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 #, fuzzy msgid "Unrecognized statement type." msgstr "Belum diakui jenis pernyataan." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 #, fuzzy msgid "No transaction was previously started." msgstr "Tidak ada transaksi sebelumnya dimulai." @@ -17108,11 +17128,17 @@ msgstr "Karakter tidak diharapkan pada baris %s." msgid "This type of clause was previously parsed." msgstr "Jenis klausa sebelumnya diurai." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 #, fuzzy msgid "Unrecognized keyword." msgstr "kata kunci yang belum diakui." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Pada Awal Tabel" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17161,7 +17187,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "Kumpulkan galat" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Lihat nama tidak boleh kosong" @@ -18577,6 +18603,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert diatur ke 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autentikasi kuki" + #~ msgid "Try to connect without password." #~ msgstr "Coba koneksi tanpa sandi." diff --git a/po/ig.po b/po/ig.po index 667773ef2a..cfe27b6c63 100644 --- a/po/ig.po +++ b/po/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-09-01 17:40+0000\n" "Last-Translator: CHINONSO \n" "Language-Team: Igbo Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2336,105 +2341,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2443,349 +2448,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2846,20 +2871,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3054,7 +3079,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3098,48 +3123,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3233,110 +3258,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3356,30 +3376,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3388,7 +3408,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3397,8 +3417,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3420,10 +3440,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3463,102 +3483,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3566,97 +3586,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3665,20 +3685,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3688,78 +3708,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3784,11 +3804,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3807,14 +3827,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3823,8 +3844,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3832,45 +3853,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3886,16 +3907,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3903,20 +3924,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3925,53 +3946,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4019,27 +4040,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4101,7 +4122,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4155,76 +4176,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4232,19 +4253,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4511,7 +4532,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4526,126 +4547,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4659,7 +4680,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4667,12 +4688,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4680,7 +4701,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4717,22 +4738,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4741,7 +4762,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4758,11 +4779,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4770,33 +4791,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4804,20 +4825,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5342,7 +5363,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5442,12 +5463,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5457,7 +5478,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5582,7 +5603,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5595,7 +5616,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5604,7 +5625,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5634,7 +5655,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5800,7 +5821,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6631,7 +6652,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7266,7 +7287,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7274,10 +7295,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7412,24 +7433,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7443,12 +7464,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7457,7 +7478,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7471,42 +7492,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7531,32 +7552,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7599,7 +7620,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7616,12 +7637,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7642,13 +7663,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7668,165 +7689,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7834,98 +7859,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8322,86 +8347,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8412,84 +8437,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8500,31 +8526,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8533,14 +8559,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8585,8 +8611,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8627,17 +8653,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8652,7 +8678,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8671,7 +8697,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8770,11 +8796,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9008,8 +9034,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9053,177 +9079,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9250,25 +9276,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9276,7 +9302,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9301,15 +9327,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9370,7 +9396,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9379,7 +9405,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9387,8 +9413,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9474,7 +9500,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9968,7 +9994,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10288,57 +10314,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10347,293 +10373,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10654,7 +10680,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10663,75 +10689,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10752,7 +10778,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10764,132 +10790,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10911,32 +10937,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11055,565 +11081,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11622,7 +11605,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11631,11 +11614,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11902,12 +11885,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11928,12 +11911,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -11957,33 +11940,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11991,78 +11974,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12070,7 +12053,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12078,42 +12061,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12121,33 +12104,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12156,242 +12139,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12399,99 +12382,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12499,18 +12482,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12518,11 +12501,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12551,37 +12534,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12676,7 +12659,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12761,172 +12744,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12934,7 +12917,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12958,7 +12941,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12966,78 +12949,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13045,45 +13028,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13091,97 +13074,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13217,28 +13199,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13251,12 +13233,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13269,29 +13251,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13455,7 +13437,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13473,7 +13455,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13901,17 +13883,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13946,6 +13928,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13962,10 +13948,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13996,7 +14015,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14150,7 +14169,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14182,26 +14201,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14254,11 +14273,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14327,7 +14346,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14351,24 +14370,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14393,31 +14412,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14430,44 +14449,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14535,7 +14554,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14556,17 +14575,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14618,24 +14637,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14652,10 +14671,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14694,7 +14717,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/it.po b/po/it.po index 3d40d61cce..7fa0b22b9e 100644 --- a/po/it.po +++ b/po/it.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-10 10:06+0000\n" "Last-Translator: Stefano Martinelli \n" -"Language-Team: Italian " -"\n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.9\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "Il file %s non è disponibile su questo sistema, visita %s per maggiori " "informazioni." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "L'elenco centrale di colonne per il database corrente è vuoto." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Clicca per ordinare." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Mostro le righe %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Commento del database" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Commenti alla tabella:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Commenti alla tabella:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Commenti alla tabella:" msgid "Column" msgstr "Colonna" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Colonna" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Colonna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Tipo" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Predefinito" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Predefinito" msgid "Links to" msgstr "Collegamenti a" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Collegamenti a" msgid "Comments" msgstr "Commenti" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primaria" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Primaria" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Primaria" msgid "No" msgstr "No" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "No" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Sì" msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Tabelle" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Tabelle" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,27 +283,27 @@ msgstr "Struttura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Dati" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Seleziona tutto" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Il nome del database è vuoto!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Il database %1$s è stato rinominato come %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Il database %1$s è stato copiato come %2$s." @@ -316,27 +316,27 @@ msgstr "" "La configurazione dello storage di phpMyAdmin è disabilitata. %sScopri la " "ragione%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Devi scegliere almeno un campo da mostrare!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passa a %svisual builder%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Accesso negato!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Dati di monitoraggio eliminati correttamente." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -344,11 +344,11 @@ msgstr "" "Versione %1$s creata per le tabelle selezionate, il monitoraggio su di loro " "è attivo." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Nessuna tabella selezionata." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Log database" @@ -388,131 +388,131 @@ msgstr "Tipo errato!" msgid "Bad parameters!" msgstr "Parametri errati!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Valore per il campo \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usa OpenStreetMaps come livello base" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punto:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Aggiungi un punto" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Linestring %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Cerchio esterno:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Cerchio interno %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Aggiungi un linestring" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Aggiunge una cerchia interna" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Poligono %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Aggiungi un poligono" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Aggiungi una geometria" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Esegui" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Output" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -520,19 +520,19 @@ msgstr "" "Seleziona \"GeomFromText\" nella colonna \"Funzione\" ed incolla la stringa " "sottostante nel campo \"Valore\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Riuscito" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Fallito" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Parametri incompleti" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -541,15 +541,15 @@ msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla %sdocumentazione%s se desideri aggirare questo limite." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Visualizzazione segnalibri" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Il segnalibro è stato cancellato." -#: import.php:489 +#: import.php:486 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 " @@ -560,25 +560,25 @@ msgstr "" "configurazione di PHP per l'upload di un file. Vedi [doc@faq1-16]FAQ 1.16[/" "doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Non è stato possibile caricare i plugin di importazione, controlla la tua " "installazione!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Segnalibro %s creato." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importazione eseguita con successo, %d query eseguita." msgstr[1] "Importazione eseguita con successo, %d query eseguite." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -588,7 +588,7 @@ msgstr "" "l'importazione %sreinvia lo stesso file%s ed il processo riprenderà dal " "punto in cui si era interrotto." -#: import.php:632 +#: import.php:629 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." @@ -597,7 +597,7 @@ msgstr "" "evidenzia che il limite di tempo impostato nella configurazione è troppo " "basso per consentire a phpMyAdmin di terminare l'operazione." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." @@ -606,17 +606,17 @@ msgid "Could not load the progress of the import." msgstr "" "Non è stato possibile caricare la progressione del processo di importazione." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Indietro" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Server dimostrativo di phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -627,107 +627,107 @@ msgstr "" "favore non cambiare gli utenti root, debian-sys-maint e pma.\n" "Maggiori informazioni sono disponibili su %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Impostazioni generali" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Cambia password" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Collation della connessione del server" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Impostazioni di presentazione" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Ulteriori impostazioni" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Server del Database" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Tipo di server:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Versione del server:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Versione protocollo:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Utente:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Codifica caratteri del server:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Web server" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Versione del client del database:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Estensione PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Versione PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Informazioni sulla versione:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentazione" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Home page ufficiale di phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Contribuisci" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Ricevi aiuto" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista dei cambiamenti" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licenza" -#: index.php:443 +#: index.php:444 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 " @@ -738,7 +738,7 @@ msgstr "" "phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri " "e questo può portare a risultati inaspettati." -#: index.php:458 +#: index.php:459 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." @@ -747,7 +747,7 @@ msgstr "" "questo motivo alcune funzioni quali, ad esempio, il reporting egli errori o " "il check della versione, sono disabilitate." -#: index.php:473 +#: index.php:474 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 " @@ -760,7 +760,7 @@ msgstr "" "cookie di sessione configurato da phpMyAdmin; per questo motivo, questa " "sessione potrebbe scadere prima del periodo impostato in phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -769,18 +769,18 @@ msgstr "" "phpMyAdmin, per questo motivo, it tuo login scadrá prima di quanto " "configurato in phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Adesso c'è bisogno di una password per il file di configurazione " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "La passphrase usata nella configurazione (blowfish_secret) è troppo corta." -#: index.php:528 +#: index.php:529 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 " @@ -793,7 +793,7 @@ msgstr "" "caso contrario la sicurezza del vostro server potrebbe essere compromessa da " "persone non autorizzate che scaricano la vostra configurazione." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -802,14 +802,14 @@ msgstr "" "La configurazione dello storage di phpMyAdmin non é completa, quindi alcune " "caratteristiche aggiuntive sono state disattivate. %sScopri perché%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "In alternativa, vai alla scheda 'Operazioni' di qualunque database per " "configurarlo da lì." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -818,7 +818,7 @@ msgstr "" "Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di " "MySQL server %s. Potrebbe causare comportamenti imprevedibili." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -990,7 +990,7 @@ msgid "Save & close" msgstr "Salva & chiudi" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Riavvia" @@ -1022,7 +1022,7 @@ msgstr "Aggiungi indice" msgid "Edit index" msgstr "Modifica indice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Aggiungi %s campo/i all'indice" @@ -1047,10 +1047,10 @@ msgstr "Selezionare il campo/i per l'indice." msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Anteprima SQL" @@ -1062,7 +1062,7 @@ msgstr "Simula query" msgid "Matched rows:" msgstr "Righe coinvolte:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Query SQL:" @@ -1079,13 +1079,13 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "La password non coincide!" @@ -1093,8 +1093,8 @@ msgstr "La password non coincide!" msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Chiudi" @@ -1116,19 +1116,19 @@ msgstr "Il template è stato eliminato." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1235,40 +1235,40 @@ msgid "Processes" msgstr "Processi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1286,7 +1286,7 @@ msgstr "Domande" msgid "Traffic" msgstr "Traffico" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Impostazioni" @@ -1300,16 +1300,16 @@ msgid "Please add at least one variable to the series!" msgstr "Aggiungi almeno una variabile alla serie!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Nessuno" @@ -1507,20 +1507,20 @@ msgstr "Analisi in corso…" msgid "Explain output" msgstr "Spiega l'output" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Stato" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Tempo" @@ -1609,10 +1609,10 @@ msgstr "" "Ripristino alle impostazioni predefinite in corso…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importa" @@ -1685,7 +1685,7 @@ msgstr "Parametri errati!" msgid "Cancel" msgstr "Annulla" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Impostazioni specifiche della pagina" @@ -1725,8 +1725,8 @@ msgid "Error text: %s" msgstr "Messaggio errore: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nessun database selezionato." @@ -1764,7 +1764,7 @@ msgstr "Copio il database" msgid "Changing charset" msgstr "Cambio il charset" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Abilita i controlli sulle chiavi esterne" @@ -1792,76 +1792,81 @@ msgstr "Navigazione" msgid "Deleting" msgstr "Cancellazione" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Eliminare le corrispondenze relative alla tabella %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "La definizione delle funzioni memorizzate deve contenere un istruzione " "RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Esporta" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Non ci sono routine esportabili. Potresti non avere i privilegi necessari." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Editor di ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Valori per il campo %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Valori per un nuovo campo" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Inserisci i valori in campi separati." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Aggiungi %d valore/i" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: Se il file contiene piú di una tabella, i dati saranno combinati in un " "unica tabella." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Nascondi riquadro query SQL" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Mostra riquadro query SQL" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1869,53 +1874,53 @@ msgstr "Mostra riquadro query SQL" msgid "Edit" msgstr "Modifica" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Elimina" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Nessuna query auto-memorizzata" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Seleziona" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Selettore colonne" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Cerca nella lista" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1924,15 +1929,15 @@ msgstr "" "Nessuna colonna nella lista centrale. Assicurati che la lista centrale per " "il database %s abbia colonne non presenti nella tabella corrente." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Vedi altri" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Sei sicuro?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1940,51 +1945,51 @@ msgstr "" "Questa azione potrebbe cambiare la definizione di alcune colonne.
Vuoi " "continuare?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continua" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Aggiungi chiave primaria" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Chiave primaria aggiunta." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Alla fase successiva…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "La prima fase di normalizzazione per la tabella '%s' è completa." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fase terminata" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Seconda fase di normalizzazione (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Fatto" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Conferma dipendenze parziali" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Le dipendenze parziali selezionate sono come segue:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1992,20 +1997,20 @@ msgstr "" "Nota: a, b -> d, f implica che i valori delle colonne a e b combinati " "possono determinare i valori delle colonne d ed f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Nessuna dipendenza parziale selezionata!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostrami le possibili dipendenze parziali basandoti sui dati nella tabella" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Nascondi la lista delle dipendenze parziali" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2013,171 +2018,171 @@ msgstr "" "Stai pronto! Potrebbero volerci alcuni secondi, in base alla quantità di " "dati e al numero di colonne della tabella." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Fase" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Verranno eseguite le seguenti azioni:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINA le colonne %s dalla tabella %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Crea la tabella seguente" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Terzo livello di normalizzazione (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Conferma le dipendenze transitive" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Le dipendenze selezionate sono come segue:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nessuna dipendenza selezionata!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salva" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Nascondi criteri di ricerca" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Ricerca nell'intervallo" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Numero massimo dei campi:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Numero minimo dei campi:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valore minimo:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valore massimo:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Nascondi i criteri di trova e sostituisci" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Mostra criteri di ricerca e sostituzione" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Ogni punto rappresenta una riga dei dati." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Passando il mouse su un punto mostrerà la sua etichetta." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Per effettuare lo zoom, scegliere una sezione del plot con il mouse." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Fai clic sul bottone \"Ripristina zoom\" per tornare allo stato originale." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clicca su un punto nel piano per visualizzare ed eventualmente modificare la " "riga di dati." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Il piano può essere ridimensionato trascinandolo dall'angolo in basso a " "destra." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Seleziona due campi" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Seleziona due campi diversi" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copia" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punto" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Stringa su più linee" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Anello Interno" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Anello esterno" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Vuoi copiare la chiave di criptazione?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Chiave di criptazione" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2185,7 +2190,7 @@ msgstr "" "MySQL accetta ulteriori valori non selezionabili con il movimento dello " "slider; se lo desideri, puoi inserire direttamente questi valori" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" @@ -2193,7 +2198,7 @@ msgstr "" "MySQL accetta ulteriori valori non selezionabili con il selettore date; se " "lo desideri, puoi inserire direttamente questi valori" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2201,24 +2206,24 @@ msgstr "" "Indica che hai modificato questa pagina; ti verrà chiesta una conferma prima " "di abbandonare le modifiche" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Seleziona la chiave primaria o una chiave univoca!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Scegli il campo da mostrare" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2226,76 +2231,76 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nome della pagina" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salva pagina" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salva pagina come" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Apri pagina" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Cancella pagina" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Senza titolo" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Scegli una pagina per continuare" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Inserisci un nome di pagina valido" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Vuoi salvare le modifiche apportate alla pagina corrente?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Pagina eliminata con sucesso" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Esporta schema relazionale" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Aggiungi un'opzione al campo \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d oggetto/i creato/i." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Invia" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Premi Esc per annullare la modifica." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2303,15 +2308,15 @@ msgstr "" "Hai modificato dei dati e non hai salvato. Sei sicuro di voler navigare via " "da questa pagina senza salvare i dati?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Trascina per riordinare." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Clicca per ordinare i risultati secondo questa colonna." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2321,28 +2326,28 @@ msgstr "" "alternare ASC/DESC.
- Ctrl+Click o Alt+Click (Mac: Shift+Option+Click) " "per rimuovere la colonna dalla clausola ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Clicca per selezionare/deselezionare." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Doppio click per copiare il nome della colonna." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Clicca sulla freccia
per cambiare lo stato di visualizzazzione dei " "campi." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Mostra tutti" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2351,13 +2356,13 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Inserire una stringa esadecimale valida. I caratteri consentiti sono 0-9, A-" "F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2365,105 +2370,105 @@ msgstr "" "Vuoi davvero vedere tutte le righe? Con una tabella di grandi dimensioni, " "questa operazione potrebbe mandare il browser in crash." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Lunghezza originale" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "Annulla" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Fallito" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Riuscito" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Rilascia i file qui" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Prima seleziona un database" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Stampa" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "È possibile modificare la maggior parte dei campi
cliccando due volte " "direttamente su essi." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "È possibile modificare la maggior parte dei valori
cliccando " "direttamente su essi." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Vai al link:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copia il nome del campo." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Click destro sul nome della colonna per copiarlo negli appunti." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Genera" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Più" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Mostra pannello" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Nascondi pannello" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Mostra elementi nascosti dell'albero di navigazione." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Collega al pannello principale" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Scollega dal pannello principale" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La pagina richiesta non è stata trovata nella cronologia, potrebbe essere " "scaduta." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2473,27 +2478,27 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "aggiornata" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Invia rapporto di errore" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Invia segnalazione di errore" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2501,15 +2506,15 @@ msgstr "" "Un errore fatale di JavaScript si è verificato. Vuoi inviare una " "segnalazione?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Modifica le impostazioni della segnalazione" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Mostra i dettagli della segnalazione" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2517,7 +2522,7 @@ msgstr "" "L'esportazione non è stata completata, a causa di un limite di tempo troppo " "basso nell'esecuzione di script PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2527,62 +2532,62 @@ msgstr "" "alcuni campi saranno ignorati, a causa della configuazione max_input_vars di " "PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Sono stati rilevati alcuni errori sul server!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Guarda in fondo a questa finestra." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignora Tutto" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Secondo le impostazioni, sono in corso di presentazione, si prega di " "attendere." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Eseguire di nuovo questa query?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Sei sicuro di voler eliminare questo bookmark?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" "Ci sono stati alcuni errori durante il recupero delle informazioni di debug " "SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s query eseguite %s volte in %s secondi." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argomento(i) passati" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Mostra argomenti" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Nascondi argomenti" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Tempo utilizzato:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2609,349 +2614,369 @@ msgstr "" "Nel browser Safari il problema è causato spesso dalla modalità di " "navigazione Privata." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Copia le tabelle su" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Aggiungi un prefisso alla tabella" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Sostituisci tabella con prefisso" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia tabella col prefisso" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Prec" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Oggi" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Gennaio" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Febbraio" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Marzo" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Aprile" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maggio" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Giugno" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Luglio" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Agosto" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Setttembre" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Ottobre" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembre" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dic" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sett" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "Nessuno" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Ora" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuto" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Secondo" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Questo campo è obbligatorio" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Si prega di correggere questo campo" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Per favore inserisci un indirizzo email valido" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Si prega di inserire un URL valido" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Si prega di inserire una data valida" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Si prega di inserire una data valida ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Si prega di inserire un numero valido" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Si prega di inserire un numero di carta di credito valido" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Si prega di inserire solo cifre" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Si prega di inserire lo stesso valore di nuovo" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Si prega di inserire non più di {0} caratteri" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Si prega di inserire almeno {0} caratteri" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Per favore inserisci un valore tra {0} e {1} caratteri" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Immettere un valore compreso tra {0} e {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Per favore inserisci un valore minore o uguale a {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Immettere un valore maggiore o uguale a {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Si prega di inserire una data o un'ora valida" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Si prega di inserire un input HEX valido" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Errore" @@ -3015,20 +3040,20 @@ msgid "Charset" msgstr "Set di caratteri" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Codifica caratteri" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binario" @@ -3223,7 +3248,7 @@ msgid "Czech-Slovak" msgstr "Ceco-Slovacco" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "sconosciuto" @@ -3271,28 +3296,28 @@ msgstr "" msgid "Font size" msgstr "Dimensione font" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Visualizzo %1$d bookmark (sia privato che condiviso)" msgstr[1] "Visualizzo %1$d bookmark (sia privati che condivisi)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Nessun segnalibro" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Console per Query SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" "Errore durante l'impostazione della connessione per la collazione " "configurata!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3300,23 +3325,23 @@ msgstr "" "Il server non risponde (o il socket del server locale MySQL non è " "correttamente configurato)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Il server non risponde." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Controllate i privilegi della cartella che contiene il database." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Dettagli…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Parametri connessione mancanti!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connessione per controluser come definito nella configurazione fallita." @@ -3411,110 +3436,105 @@ msgstr "Inserisci:" msgid "Del:" msgstr "Cancella:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query sul database %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Invia Query" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Ricerca salvata nei segnalibri:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nuovo segnalibro" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Crea segnalibro" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Aggiorna segnalibro" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Elimina segnalibro" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "almeno una delle parole" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "tutte le parole" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "la frase esatta" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "come espressione regolare" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Cerca i risultati per \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totale: %s corrispondenza" msgstr[1] "Totale: %s corrispondenze" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s corrispondenza in %2$s" msgstr[1] "%1$s corrispondenze in %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Mostra" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Eliminare le corrispondenze relative alla tabella %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Cerca nel database" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Parole o valori da cercare (carattere jolly: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Cerca:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Le parole sono separate da spazi (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Nelle tabelle:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Deseleziona tutto" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "All'interno del campo:" @@ -3534,30 +3554,30 @@ msgstr "Filtra righe" msgid "Search this table" msgstr "Cerca nella tabella" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Inizio" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Precedente" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Prossima" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Ultima" @@ -3566,7 +3586,7 @@ msgstr "Ultima" msgid "All" msgstr "Tutti" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Numero di righe:" @@ -3575,8 +3595,8 @@ msgstr "Numero di righe:" msgid "Sort by key" msgstr "Ordina per chiave" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3598,10 +3618,10 @@ msgstr "Ordina per chiave" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opzioni" @@ -3641,29 +3661,29 @@ msgstr "Well Known Text" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "La riga è stata eliminata." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Rimuovi" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Può essere approssimativo. Vedi [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "La query SQL è stata eseguita con successo." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3672,73 +3692,73 @@ msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostro le righe %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d totali, %2$d nella query" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d del totale" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "La query ha impiegato %01.4f secondi." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Se selezionati:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Seleziona tutto" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copia nella clipboard" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link non trovato!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Nessuno" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Converti a Kana" @@ -3746,71 +3766,71 @@ msgstr "Converti a Kana" msgid "Too many error messages, some are not displayed." msgstr "Troppi errori, alcuni messaggi non verranno visualizzati." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Report" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Invia un report automaticamente la prossima volta" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Il file non era un file caricato." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Il file è stato solo parzialmente caricato." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Non trovo la cartella temporanea." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Non riesco a scrivere il file su disco." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Caricamento del file interrotto per estensione errata." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Si é verificato un errore sconosciuto durante il caricamento del file." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Il file è un link simbolico" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Il file non può essere letto!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Errore nello spostamento del file caricato, vedi [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Si é verificato un errore durante lo spostamento del file." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Impossibile leggere il file caricato." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3820,28 +3840,28 @@ msgstr "" "supportato. Il supporto per questo tipo di compressione potrebbe non essere " "ancora stato implementato oppure è disabilitato nella tua configurazione." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "È in esecuzione la revisione Git %1$s dal ramo %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Mancano le informazioni relative a Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Apri una nuova finestra di PhpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Visualizza per stampa" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Clicca sulla barra per scorrere fino all'inizio della pagina" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Da qui in poi, JavaScript deve essere abilitato!" @@ -3850,20 +3870,20 @@ msgid "No index defined!" msgstr "Nessun indice definito!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indici" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3873,59 +3893,59 @@ msgstr "Indici" msgid "Action" msgstr "Azione" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Chiave" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unica" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Compresso" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalità" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Commenti" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "La chiave primaria è stata eliminata." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "L'indice %s è stato eliminato." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Elimina" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3934,19 +3954,19 @@ msgstr "" "Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, " "possibilmente, essere rimosso." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Numero pagina:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Il codice in linguaggio non supportato viene ignorato." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Lingua" @@ -3972,11 +3992,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3995,14 +4015,15 @@ msgid "View" msgstr "Vista" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4011,8 +4032,8 @@ msgid "Table" msgstr "Tabella" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4020,45 +4041,45 @@ msgstr "Tabella" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Cerca" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Inserisci" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegi" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operazioni" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Monitoraggio" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4074,16 +4095,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Il database sembra essere vuoto!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Query da esempio" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routine" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4091,20 +4112,20 @@ msgstr "Routine" msgid "Events" msgstr "Eventi" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colonne centrali" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Database" @@ -4113,53 +4134,53 @@ msgid "User accounts" msgstr "Account utenti" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log binario" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicazione" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabili" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motori" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugin" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d riga modificata." msgstr[1] "%1$d righe modificate." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d riga cancellata." msgstr[1] "%1$d righe cancellate." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4207,27 +4228,27 @@ msgstr "Tabelle preferite" msgid "Favorites" msgstr "Preferiti" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Inserisci un nome per questa ricerca." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Mancano informazioni per salvare la ricerca marcata dal segnalibro." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Un elemento con questo nome esiste già." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Mancano informazioni per eliminare la ricerca." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Mancano informazioni per caricare la ricerca." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Si é verificato un errore caricando la ricerca." @@ -4289,7 +4310,7 @@ msgstr "Mostra le tabelle aperte" msgid "Show slave hosts" msgstr "Mostra gli hosts slave" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Mostra lo stato del master" @@ -4343,72 +4364,72 @@ msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minuti" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Non è disponibile nessuna informazione dettagliata sullo stato di questo " "motore di memorizzazione." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s è disponibile su questo server MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s è stato disabilitato su questo server MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Questo server MySQL non supporta il motore di memorizzazione %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "stato della tabella sconosciuto:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Database di origine `%s` non é stato trovato!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Tema `%s` non é stato trovato!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Database non valido:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Nome di tabella non valido:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Errore nel rinominare la tabella %1$s in %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabella %1$s è stata rinominata %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" "Impossibile salvare la tabella delle preferenze per l'interfaccia utente!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4417,7 +4438,7 @@ msgstr "" "Impossibile ripulire la tabella delle preferenze UI (v. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4428,19 +4449,19 @@ msgstr "" "saranno mantenuti se ricaricate questa pagina. Controllate se la struttura " "della tabella è cambiata." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Il nome della chiave primaria deve essere \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Impossibile rinominare l'indice a PRIMARIO!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nessuna parte di indice definita!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Errore nel creare una foreign key su %1$s (controlla il tipo di dati)" @@ -4771,7 +4792,7 @@ msgid "Date and time" msgstr "Data e ora" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Stringa" @@ -4786,126 +4807,126 @@ msgstr "Spaziale" msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Analisi statica:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Sono stati trovati %d errori durante l'analisi." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Spiegazione Analisi a %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Senza codice PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Invia query" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Crea il codice PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Aggiorna" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profiling" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Modifica inline" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y alle %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parametro mancante:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Passa al database \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "La directory impostata per l'upload non può essere trovata." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Nessun file da caricare!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Svuota" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Esegui" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Utenti" @@ -4919,7 +4940,7 @@ msgstr "al minuto" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "all'ora" @@ -4927,12 +4948,12 @@ msgstr "all'ora" msgid "per day" msgstr "al giorno" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Cerca:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4940,7 +4961,7 @@ msgstr "Cerca:" msgid "Description" msgstr "Descrizione" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Usa questo valore" @@ -4980,22 +5001,22 @@ msgstr "SI" msgid "NO" msgstr "NO" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nome" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Lunghezza/Valori" @@ -5004,7 +5025,7 @@ msgstr "Lunghezza/Valori" msgid "Attribute" msgstr "Attributo" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5021,11 +5042,11 @@ msgstr "Aggiungi campo" msgid "Select a column." msgstr "Seleziona una colonna." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Aggiungi nuovo campo" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5033,7 +5054,7 @@ msgstr "Aggiungi nuovo campo" msgid "Attributes" msgstr "Attributi" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5043,27 +5064,27 @@ msgstr "" "opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di " "alcuni dati!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Indice server non valido: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione impostato nella configurazione non valido:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5075,20 +5096,20 @@ msgstr "" "['SessionTimeZone'][/em]. Al momento phpMyAdmin sta usando la timezone " "predefinita sul server." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Errore: token non corrispondente" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Tentativo di sovrascrivere GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "possibile exploit" @@ -5695,7 +5716,7 @@ msgid "Compress on the fly" msgstr "Comprimi al volo" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "File di configurazione" @@ -5805,12 +5826,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Massimo tempo di esecuzione" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Utilizzare l'istruzione di %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Salva con nome" @@ -5820,7 +5841,7 @@ msgstr "Codifica dei caratteri del file" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formato" @@ -5945,7 +5966,7 @@ msgid "Save on server" msgstr "Salva sul server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Sovrascrivi file(s) esistente/i" @@ -5958,7 +5979,7 @@ msgid "Remember file name template" msgstr "Ricorda il modello per i nomi dei file" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" @@ -5967,7 +5988,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Racchiudi i nomi di tabelle e di campi con virgolette" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modalità di compatibilità SQL" @@ -5999,7 +6020,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Aggiungi %s" @@ -6174,7 +6195,7 @@ msgid "Customize the navigation tree." msgstr "Personalizza l'albero di navigazione." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Server" @@ -7098,7 +7119,7 @@ msgstr "Realm HTTP" msgid "Authentication method to use." msgstr "Metodo di autenticazione da usare." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipo di autenticazione" @@ -7849,7 +7870,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Abilita la tabulazione per Sviluppatori nelle impostazioni" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Controlla l'ultima versione" @@ -7859,10 +7880,10 @@ msgstr "" "Abilita la verifica della versione più recente sulla pagina principale di " "phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Controllo versione" @@ -8012,24 +8033,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Testo OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "La lista dei preferiti è piena!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "La tabella %s è stata svuotata." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "La vista %s è stata eliminata." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "La tabella %s è stata eliminata." @@ -8043,12 +8064,12 @@ msgid "Position" msgstr "Posizione" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tipo di evento" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID del server" @@ -8057,7 +8078,7 @@ msgid "Original position" msgstr "Posizione originale" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informazioni" @@ -8071,42 +8092,42 @@ msgstr "Tronca le Query Mostrate" msgid "Show Full Queries" msgstr "Mostra query complete" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nessun database" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d database é stato eliminato correttamente." msgstr[1] "%1$d databasi sono stati eliminati correttamente." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Righe" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Totale" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8133,35 +8154,35 @@ msgstr "" msgid "Enable statistics" msgstr "Abilita le statistiche" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Non sei autorizzato a visualizzare le variabili del server e le " "impostazioni. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "L'impostazione della variablile è fallita" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Nessuna query SQL era impostata per estrarre dati." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" "Nella tabella non sono presenti campi numerici da visualizzare graficamente." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Nessun dato da visualizzare" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "La tabella %1$s è già stata modificata con successo." @@ -8204,7 +8225,7 @@ msgstr "I campi sono stati spostati con successo." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Errore nella query" @@ -8223,12 +8244,12 @@ msgstr "Modifica" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indice" @@ -8249,13 +8270,13 @@ msgstr "Testo completo" msgid "Distinct values" msgstr "Valori distinti" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nessun cambiamento" @@ -8279,31 +8300,35 @@ msgstr "" "installazione!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nessuna Password" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Password:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Re-inserisci:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Password Hashing:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8313,83 +8338,83 @@ msgstr "" "'connessione non criptata che cifra la password con RSA'; durante la " "connessione al server." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Esportazione dei database dal server corrente in corso" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Esportazione delle tabelle dal database \"%s\" in corso" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Esportazione delle righe dalla tabella \"%s\" in corso" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Esportazione template:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nuovo template:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Nome template" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Crea" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Template esistenti:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Template:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Aggiorna" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Seleziona un template" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Metodo di esportazione:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rapido - mostra solo le opzioni minime" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Personalizzato - mostra tutte le possibili opzioni" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Database:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabelle:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formato:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opzioni specifiche al formato:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8397,52 +8422,52 @@ msgstr "" "Scorri verso il basso per inserire le opzioni per il formato selezionato e " "ignora le opzioni per gli altri formati." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Conversione di Codifica:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Righe:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Esegui il dump di alcune righe" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Riga iniziale:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Dump di tutte le righe" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Output:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Salva sul server nella cartella %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Modello per nomi dei file:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ diventerá il nome del server" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ diventerá il nome del database" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ diventerá il nome della tabella" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8454,100 +8479,100 @@ msgstr "" "le seguenti trasformazioni: %3$s. Il testo rimanente resterà invariato. Vedi " "la %4$sFAQ%5$s per i dettagli." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "usa questo per esportazioni future" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Set di caratteri del file:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compressione:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "compresso con zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "compresso con gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Salva l'output come testo" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Esporta i database come file separati" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Esporta le tabelle come file separati" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Rinomina database/tabelle/campi esportati" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Salva l'output in un file" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Salta le tabelle più grandi di" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Seleziona database" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Seleziona tabella" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nome del nuovo database" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nome nuova tabella" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Vecchio nome campo" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nuovo nome campo" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Non è stato possibile di caricare i plugin di esportazione, controlla la tua " "installazione!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s dalla diramazione %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "nessuna diramazione" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revisione Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "Inviato il %1$s da %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "scritto il %1$s da %2$s" @@ -9009,13 +9034,13 @@ msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spazio insufficiente per salvare il file %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9023,76 +9048,76 @@ msgstr "" "Il file %s esiste già sul server, prego, cambia il nome del file o seleziona " "l'opzione di sovrascriittura." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Il server web non possiede i privilegi per salvare il file %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato nel file %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[è stato fatto un ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Visualizza i contenuti della struttura facendo click sul suo nome." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Modifica una qualunque impostazione cliccando sul corrispondente link " "\"Opzioni\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica la struttura seguendo il link \"Struttura\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Vai al database: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Modifica impostazioni per %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Vai alla tabella: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struttura di %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Vai alla visualizzazione: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Possono essere simulate query UPDATE e DELETE solo su tabelle singole." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9105,88 +9130,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Crea un indice su  %s campi" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Nascondi" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funzione" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" "A causa della sua lunghezza,
questo campo potrebbe non essere " "modificabile." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Dato binario - non modificare" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Oppure" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "directory di upload del web-server:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifica/Inserisci" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "e quindi" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Mostra la insert query" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9197,31 +9223,31 @@ msgstr "" msgid "Value" msgstr "Valore" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Successo!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Solo struttura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struttura e dati" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Solo dati" @@ -9230,14 +9256,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Aggiungi valore AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Aggiungi vincoli" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Adatta Privilegi" @@ -9283,8 +9309,8 @@ msgstr "Procedure:" msgid "Views:" msgstr "Viste:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Mostra" @@ -9328,17 +9354,17 @@ msgid_plural "%s results found" msgstr[0] "%s risultato trovato" msgstr[1] "%s risultati trovati" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Inserisci stringa di ricerca, oppure Enter per cercare tutto" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Cancella il fast filter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Collassa tutto" @@ -9353,7 +9379,7 @@ msgstr "Nome classe \"%1$s\" invalido, utilizzo il valore predefinito \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Impossibile caricare la classe \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Espandi/Riduci" @@ -9372,7 +9398,7 @@ msgstr "Nuovo" msgid "Database operations" msgstr "Opzioni di database" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Mostra elementi nascosti" @@ -9477,11 +9503,11 @@ msgstr "" "Seleziona un campo che può essere suddiviso in più di uno (selezionando 'non " "esiste tale campo', passerà allo step successivo)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Seleziona un elemento…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Campo inesistente" @@ -9763,8 +9789,8 @@ msgid "Rename database to" msgstr "Rinomina il database come" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9810,177 +9836,177 @@ msgstr "(singolarmente)" msgid "Move table to (database.table)" msgstr "Sposta la tabella in (database.tabella)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Rinomina la tabella in" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Commenti alla tabella" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opzioni della tabella" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Motore di Memorizzazione" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Cambia tutte le collation dei campi" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copia la tabella in (database.tabella)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Passa alla tabella copiata" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Amministrazione tabella" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizza tabella" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Controlla tabella" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Checksum tabella" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Deframmenta la tabella" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "La tabella %s è stata inizializzata." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Ricarica la tabella (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Ottimizza tabella" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Ripara tabella" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Rimuovi la tabella o i dati" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Svuota la tabella (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Elimina la tabella (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizza" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Controlla" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Ottimizza" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Ricrea" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Ripara" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Tronca" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Fondi" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Manutenzione partizione" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partizione %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Rimuove partizionamento" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Impossibile spostare la tabella su se stessa!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Impossibile copiare la tabella su se stessa!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "La tabella %s è stata spostata in %s. I privilegi sono stati adattati." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La tabella %s è stata copiata su %s. I privilegi sono stati adattati." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabella %s è stata spostata in %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabella %s è stata copiata su %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Il nome della tabella è vuoto!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Questo formato non ha opzioni" @@ -10009,18 +10035,18 @@ msgstr "Mostra il colore" msgid "Only show keys" msgstr "Mostra solo le chiavi" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Impossibile connettersi: impostazioni non valide." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Benvenuto in %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10029,7 +10055,7 @@ msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10041,7 +10067,7 @@ msgstr "" "l'username e la password nel file di configurazione ed assicurarsi che " "corrispondano alle informazioni fornite dall'amministratore del server MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Riprova a connetterti" @@ -10067,15 +10093,15 @@ msgstr "Nome utente:" msgid "Server Choice:" msgstr "Scelta del server:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Il captcha inserito è sbagliato, riprova!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Inserisci per favore il captcha corretto!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Non sei autorizzato ad eseguire il login in questo server MySQL!" @@ -10138,7 +10164,7 @@ msgstr "Opzioni del dump dei dati" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" @@ -10147,7 +10173,7 @@ msgstr "Dump dei dati per la tabella" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Evento" @@ -10155,8 +10181,8 @@ msgstr "Evento" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definizione" @@ -10244,7 +10270,7 @@ msgstr "Metti i nomi dei campi nella prima riga:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -10784,7 +10810,7 @@ msgstr "Tabella dei contenuti" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11171,11 +11197,11 @@ msgstr "" "Rieffettua il login in phpMyAdmin per caricare il file della configurazione " "aggiornato." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "nessuna descrizione" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11186,7 +11212,7 @@ msgstr "" "database per impostare in quel database la memorizzazione della " "configurazione di phpMyAdmin." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11195,43 +11221,43 @@ msgstr "" "%sCrea%s un database denominato 'phpmyadmin' e imposta la configurazione di " "storage phpMyAdmin lì." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sCreate%s la configurazione salvata di phpMyAdmin nel database corrente." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" "%sCreate%s mancano le tabelle di salvataggio della configurazione di " "phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replicazione master" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Questo server é configurato come master in un processo di replicazione." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Mostra i slave connessi" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Aggiungi un utente per replicazione slave" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Configurazione del master" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11245,19 +11271,19 @@ msgstr "" "scegliere di ignorare tutti i database normalmente e consentire solo a certi " "database di essere replicati. Prego, scegli una modalità:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replica tutti i database; Ignora:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignora tutti i database; Replica:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Prego seleziona i database:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11265,7 +11291,7 @@ msgstr "" "Ora, aggiungi le linee seguenti alla fine della sezione [mysqld] nel tuo " "file my.cnf e dopo riavvia is server MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11275,70 +11301,70 @@ msgstr "" "quindi vedere un messaggio che ti informerá che questo server é " "configurato come master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replicazione slave" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Connessione principale:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Thread slave SQL non é in esecuzione!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Thread slave IO non é in esecuzione!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Il server é configurato come slave in un processo di replicazione. Vuoi:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Vedi la tabella di stato dello slave" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Controlla slave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Pieno avvio" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Pieno spegnimento" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Reimposta lo slave" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Avvia solo il thread SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Arresta solo il thread SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Avvia solo il thread IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Arresta solo il thread IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Modifica o riconfigura il server master" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11347,25 +11373,25 @@ msgstr "" "Questo server non é configurato come slave in un processo di replicazione. " "Vorresti configurarlo ora?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Gestione degli errori:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Ignorare gli errori potrebbe far mandare il master e slave fuori sincronia!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Salta l'errore corrente" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Salta i prossimi %s errori." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11374,11 +11400,11 @@ msgstr "" "Questo server non é configurato come master in un processo di replicazione. " "Vorresti configurarlo ora?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Configurazione slave" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11386,53 +11412,53 @@ msgstr "" "Assicurati di avere un server-id unico nella file di configurazione (my." "cnf). Altrimenti, aggiungi la linea seguente nella sezione [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nome utente:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nome utente" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Password" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Porta:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Stato master" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Stato slave" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabile" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11440,39 +11466,39 @@ msgstr "" "Solo i slave eseguiti con l'opzione --report-host=host_name sono visibili in " "questa lista." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Locale" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Questo Host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Qualsiasi utente" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Utilizza campo text:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11480,77 +11506,77 @@ msgstr "" "Quando la tabella Host è usata, questo campo è ignorato e i valori " "memorizzati nella tabella Host invece utilizzati." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Reinserisci" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Genera password:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replicazione iniziata con successo." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Errore nell'avvio della replicazione." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replicazione fermata con successo." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Errore nel tentativo di fermare la replicazione." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replicazione resettata con successo." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Errore nel tentativo di reset della replicazione." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Successo." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Errore." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Errore sconosciuto" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Impossibile stabilire la connessione al master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Impossibile leggere il log posizionale del master. É possibile che ci siano " "dei problemi di permessi sul master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Impossibile modificare il master!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Server master modificato con successo in %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11572,7 +11598,7 @@ msgstr "L'evento %1$s è stato modificato." msgid "Event %1$s has been created." msgstr "L'evento %1$s è stato creato." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11582,75 +11608,75 @@ msgstr "" msgid "Edit event" msgstr "Modifica evento" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Dettagli" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nome dell'evento" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Cambia a %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Esegui il" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Esegui ogni" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Inizio" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Fine" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Conserva dopo il completamento" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definer" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Il definer deve essere nel seguente formato: \"nomeutente@nomehost\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Devi fornire un nome di evento!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "È necessario fornire un intervallo valido per l'evento." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "È necessario fornire una data valida per l'esecuzione dell'evento." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "È necessario fornire un valido tipo per l'evento." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "È necessario fornire una definizione per l'evento." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Errore nell'elaborazione della richiesta:" @@ -11671,7 +11697,7 @@ msgstr "Stato del pianificatore degli eventi" msgid "The backed up query was:" msgstr "La query di backup è:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Ritorna" @@ -11687,74 +11713,74 @@ msgstr "" "potrebbe fallire![/strong] É consigliato di utilizzare l'estensione 'mysqli' " "per evitare eventuali problemi." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Modifica routine" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo di routine non valido: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "La routine %1$s é stata creata." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" "Ci dispiace, non siamo riusciti a ripristinare la routine che é stata " "rimossa." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "La routine %1$s é stata modificata. I privilegi sono stati adattati." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "La routine %1$s é stata modificata." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nome della routine" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Direzione" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Aggiungi parametro" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Rimuovi l'ultimo parametro" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Tipo di risultato" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Lunghezza/valori del risultato" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Opzioni del risultato" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "É deterministica" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11762,25 +11788,25 @@ msgstr "" "Non hai privilegi sufficienti per completare questa operazione; controlla a " "documentazione per maggiori dettagli" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tipo di sicurezza" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Tipo di accesso dati SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Devi fornire un nome di routine!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direzione invalida \"%s\" é stata fornita per un parametro." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11788,25 +11814,25 @@ msgstr "" "È necessario fornire lunghezza o valori per parameteri della routine del " "tipo ENUM, SET, VARCHAR e VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" "È necessario fornire un nome ed un tipo per ogni parametro della routine." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "È necessario fornire un valido tipo del risultato." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "È necessario fornire una definizione per la routine." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Risultato di esecuzione della routine %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -11817,13 +11843,13 @@ msgstr[1] "" "%d righe influenzate dall'ultima istruzione eseguita all'interno della " "procedura." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Esegui routine" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parametri della routine" @@ -11847,32 +11873,32 @@ msgstr "Il trigger %1$s é stato creato." msgid "Edit trigger" msgstr "Modifica trigger" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nome del trigger" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Devi fornire un nome di trigger!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Devi fornire un timing valido per il trigger!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Devi fornire un evento valido per il trigger!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Devi fornire un nome valido di tabella!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "È necessario fornire una definizione per il trigger." @@ -11992,92 +12018,92 @@ msgstr "Set di Caratteri e Collation" msgid "Databases statistics" msgstr "Statistiche dei databases" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Nessun privilegio." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Comprende tutti i privilegi tranne GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permette di leggere i dati." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permette di cambiare i dati." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permette di cancellare dati." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Permette di vedere i processi di tutti gli utenti." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12088,131 +12114,105 @@ msgstr "" "settaggio di variabili globali o la cancellazione dei threads di altri " "utenti." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Consente ad un utente di domandare dove sono i master / slave." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Permette di impostare gli eventi per lo scheduler." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Permette di creare e di eliminare i triggers." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Nessun" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Gruppo utenti" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Non richiede connessioni cifrate SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Richiede connessioni SSL-encrypted." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Richiede un certificato X509 valido." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" "Richiede che venga usato un metodo specifico di cifratura per una " "connessione." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Richiede che venga presentato un certificato X509 valido emesso da questa CA " "(Certification Authority)." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Richiede che venga presentato un certificato X509 valido, con questo " "soggetto." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Limiti di risorse" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "N.B.: 0 (zero) significa nessun limite." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita il numero di query che un utente può mandare al server in un'ora." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12220,26 +12220,24 @@ msgstr "" "Limita il numero di comandi che possono cambiare una tabella o un database " "che un utente può eseguire in un'ora." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita il numero di nuove connessioni che un utente può aprire in un'ora." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." @@ -12247,62 +12245,62 @@ msgstr "" "Consente all'utente di concedere o rimuovere ad altri utenti le " "autorizzazioni che l'utente possiede per questa routine." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Permette l'alterazione e l'eliminazione di questa routine." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Permette l'esecuzione di questa routine." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: i nomi dei privilegi di MySQL sono espressi in Inglese." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Amministrazione" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilegi globali" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globale" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " "privilegi." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." @@ -12310,31 +12308,28 @@ msgstr "" "Consente all'utente di concedere o rimuovere ad altri utenti le " "autorizzazioni che l'utente possiede per se stesso." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Autenticazione MySQL nativa" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Autenticazione password tramite SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Autenticazione MySQL nativa" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Informazioni di Login" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12342,135 +12337,135 @@ msgstr "" "Esiste già un account con lo stesso nome utente (username), ma probabilmente " "con un nome host (hostname) diverso." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Nome host:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Nome host" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Non cambiare la password" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Plugin di Autenticazione" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Metodo di Password Hashing" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Hai revocato i privilegi per %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Aggiungi account utente" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Database per account utente" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Garantisci tutti i privilegi per il database %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Utenti che hanno accesso a \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "L'utente é stato aggiunto." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Non hai sufficienti privilegi per visualizzare gli utenti." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Nessun utente trovato." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Qualsiasi" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "specifico del database" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "carattere jolly" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "specifico di tabella" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Modifica privilegi" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Modifica il gruppo utente" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… mantieni quello vecchio." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… cancella quello vecchio dalla tabella degli utenti." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoca tutti i privilegi attivi da quello vecchio e in seguito cancellalo." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12478,89 +12473,77 @@ msgstr "" "… cancella quello vecchio dalla tabella degli utenti e in seguito ricarica i " "privilegi." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Cambia le informazioni di login / Copia account utente" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Crea un nuovo account utente con gli stessi privilegi e …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegi specifici per la routine" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Rimuove gli account utente selezionati" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Gruppo utenti" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Elimina i database che hanno gli stessi nomi degli utenti." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilegi per %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Utente" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nuovo" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Modifica privilegi:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Account utente" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12568,11 +12551,11 @@ msgstr "" "Nota: Stai cercando di modificare i privilegi dell'utente con cui sei " "collegato attualmente." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Vista d'insieme degli account utente" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12583,7 +12566,7 @@ msgstr "" "di connettersi se la parte host del loro account permette una connessione da " "host qualsiasi (%)." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12596,7 +12579,7 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12610,11 +12593,11 @@ msgstr "" "questo caso, si devono ricaricare i privilegi ma al momento non disponi del " "privilegio RELOAD." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." @@ -12927,12 +12910,12 @@ msgstr "Comando" msgid "Progress" msgstr "Progresso" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtri" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Mostra solo attivi" @@ -12953,12 +12936,12 @@ msgstr "al minuto:" msgid "per second:" msgstr "al secondo:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Istruzioni" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12982,7 +12965,7 @@ msgstr "Mostra i valore non formattati" msgid "Related links:" msgstr "Collegamenti associati:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12990,11 +12973,11 @@ msgstr "" "Il numero di connessioni fallite perché il cliente é morto senza chiudere la " "connessione correttemente." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Il numero di tentativi falliti di connettere al server MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13004,19 +12987,19 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Il numero di tentativi di connesione al server MySQL (completati con " "successo o no)." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13028,11 +13011,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13040,7 +13023,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13048,7 +13031,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13056,23 +13039,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13082,7 +13065,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13093,7 +13076,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13102,7 +13085,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13113,7 +13096,7 @@ msgstr "" "indice con un range costante, oppure se stai facendo una scansione degli " "indici." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13122,7 +13105,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13135,7 +13118,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13148,37 +13131,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13188,7 +13171,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13200,11 +13183,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13212,7 +13195,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13220,11 +13203,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13232,7 +13215,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13247,55 +13230,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13303,35 +13286,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture effettuate da fsync() sul log file." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13340,51 +13323,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13393,7 +13376,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13401,7 +13384,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13411,15 +13394,15 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Percentuale di cache delle chiavi utilizzata (valore calcolato)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per leggere un blocco chiave dalla cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13430,7 +13413,7 @@ msgstr "" "rapporto di mancate letture dalla cache delle chivi può essere calcolato " "come Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13438,22 +13421,22 @@ msgstr "" "La mancata lettura dalla cache delle chiavi viene calcolato come rapporto " "tra le letture fisiche e le richieste di lettura (valore calcolato)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentuale di scritture fisiche in rapporto alle scritture richieste " "(valore calcolato)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13464,7 +13447,7 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13472,12 +13455,12 @@ msgstr "" "Il massimo numero di connessioni che sono state utilizzate " "contemporaneamente dall'avvio del server." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13485,20 +13468,20 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Il numero di stream che sono aperti (usato principalmente per il logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13508,19 +13491,19 @@ msgstr "" "potrebbero indicare problemi di fragmentazione che possono essere risolti " "con l'esecuzione dell'istruzione FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13533,7 +13516,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13541,19 +13524,19 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13561,13 +13544,13 @@ msgstr "" "Il numero di joins che non usano gli indici. Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13576,7 +13559,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13584,17 +13567,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13602,12 +13585,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13615,12 +13598,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numero di query che hanno impiegato più di long_query_time secondi." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13630,23 +13613,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13658,7 +13641,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13668,11 +13651,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13684,11 +13667,11 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Percentuale hit nella cache del thread (valore calcolato)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." @@ -13717,37 +13700,37 @@ msgstr "Tabulazioni livello Database" msgid "Table level tabs" msgstr "Tabulazioni livello tabella" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Vista utenti" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Aggiungi gruppo utente" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Modifica il gruppo utenti: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Menu assegnazioni del gruppo utente" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Nome del gruppo:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Tabulazioni livello server" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Tabulazioni livello database" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tabulazioni livello tabella" @@ -13846,7 +13829,7 @@ msgstr "Esegui la/e query SQL sul database %s" msgid "Run SQL query/queries on table %s" msgstr "Esegui la/le query SQL sulla tabella %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Cancella" @@ -13931,113 +13914,113 @@ msgstr "Disattiva ora" msgid "Version" msgstr "Versione" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Creato" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Aggiornato" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Cancella versione" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Rapporto tracking" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Snapshot della struttura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "attivo" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "non attivo" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Instruzioni per il monitoraggio" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Cancella dati di tracciamento dal report" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nessun dato" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s con date dal %2$s al %3$s dell'utente %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Dump SQL (scarica il file)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Dump SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Questa opzione sostituirà la tua tabella e i dati contenuti." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Esecuzione SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Esporta come %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Instruzione di manipolazione dei dati" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Instruzione di definizione dei dati" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nome utente" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versione %s dello snapshot (codice SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nessuno" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Le definizioni dei dati di monitoraggio eliminati con successo" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" "Le manipolazioni dei dati di monitoraggio sono state cancellate con successo" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14045,61 +14028,61 @@ msgstr "" "Puoi eseguire il dump creando ed utilizzando un database temporaneo. Prego " "assicurati che hai i corretti permessi per effettuare queste azioni." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Commenta le linee seguenti se non ne hai bisogno." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Istruzione SQL esportata. Copia il dump o eseguilo." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Report di monitoraggio per la tabella `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitoraggio di %1$s é attivo dalla version %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitoraggio per %1$s é disattivato dalla version %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "La versione %1$s di %2$s è stata cancellata." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versione %1$s creata, monitoraggio attivato per %2$s." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabelle non monitorate" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Controlla tabella" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabelle monitorate" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Ultima versione" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Cancella monitoraggio" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versioni" @@ -14107,7 +14090,7 @@ msgstr "Versioni" msgid "Manage your settings" msgstr "Gestisci le tue impostazioni" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "La configurazione é stata salvata." @@ -14134,7 +14117,7 @@ msgstr "Errore nell'archivio ZIP:" msgid "No files found inside ZIP archive!" msgstr "Non sono stati trovati file ZIP all'interno dell'archivio!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Errore fatale: si può accedere ala navigazione solo tramite AJAX" @@ -14142,56 +14125,56 @@ msgstr "Errore fatale: si può accedere ala navigazione solo tramite AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Impossibile salvare le impostazioni, il form inviato contiene errori!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "Snippet di configurazione di phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Incollalo nel tuo config.inc.php" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Non é stato possibile caricare la configurazione" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "LA configurazione contiene dei dati incorretti in alcuni campi." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Vuoi importare le impostazioni rimanenti?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Salvato il: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importa dal file" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importa dalla memoria del browser" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "Le impostazioni verranno importate dalla memoria locale del tuo browser." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Non hai alcuna impostazione salvata!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Questa funzionalitá non é supportata dal tuo browser" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Unisci con la configurazione corrente" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14200,23 +14183,23 @@ msgstr "" "Puoi impostare ulteriori impostazioni modificando config.inc.php, ad esempio " "via %sGli script di setup%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Salva come file PHP" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Salva nella memoria del browser" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Le impostazioni verranno salvate nella memoria locale del tuo browser." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "La impostazioni esistenti verranno sovrascritte!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Puoi reimpostare tutte le tue configurazioni e ripristinarle ai valori " @@ -14226,12 +14209,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nessun Privilegio" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14239,20 +14222,20 @@ msgstr "" "Username e hostname non sono stati modificati. Se volevi cambiare soltanto " "la password, dovresti usare la sezione \"Modifica password\"." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Non sei autorizzato a visualizzare lo stato del server." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Non sei autorizzato a visualizzare l'advisor." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Il thread %s è stato terminato con successo." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14260,15 +14243,15 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Non sei autorizzato a visualizzare le statistiche di query." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Non sei autorizzato a visualizzare le variabili di stato." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Scarica" @@ -14278,11 +14261,11 @@ msgstr "" "Formset non corretto, controllate il vettore $formsets nel file setup/frames/" "form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Impossibile caricare o salvare la configurazione" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14293,7 +14276,7 @@ msgstr "" "[doc@setup_script]documentazione[/doc]. Altrimenti potrai solo scaricarlo o " "visualizzarlo." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14302,24 +14285,27 @@ msgstr "" "informazioni potenzialmente riservate, come le password) sono trasferiti " "senza essere cifrati!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Se il tuo server accetta anche richieste HTTPS, [a@%s]clicca qui[/a] per " "utilizzare la conessione sicura." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Connessione non sicura" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configurazione salvata." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14328,59 +14314,59 @@ msgstr "" "principale di phpMyAdmin, copialo alla cartella principale a rimuovi la " "cartella config per utilizzarlo." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Configurazione non salvata!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Panoramica" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Mostra i messaggi nascosti (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Non ci sono server configurati" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nuovo server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Lingua predefinita" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "lascia la scelta all'utente" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- nessuno -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Server predefinito" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Fine del file" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Visualizza" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Carica" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Homepage di phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Dona" @@ -14416,7 +14402,7 @@ msgstr "Ignora errori" msgid "Show form" msgstr "Visualizza form" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14424,15 +14410,15 @@ msgstr "" "La lettura della versione é fallita. É possibile che sei offline o che il " "server degli aggiornamenti non risponde." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Ricevuto una stringa di versione invalida dal server" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Stringa della versione non interpretabile" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14441,7 +14427,7 @@ msgstr "" "Stai utilizzando una version GIT, esegui [kbd]git pull[/kbd] :-)[br]La " "versione stabile piú recente é %s, bubblicata il %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Non é disponibile nessuna nuova versione stabile" @@ -14454,12 +14440,12 @@ msgstr "Dati errati" msgid "Wrong data or no validation for %s" msgstr "Dati errati o non convalidati per %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Database '%s' non esiste." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "La tabella %s esiste già!" @@ -14472,29 +14458,29 @@ msgstr "Visualizza dump (schema) della tabella" msgid "Invalid table name" msgstr "Nome tabella non valido" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Riga: %1$s, Campo: %2$s, Errore: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Nessuna riga selezionata." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Monitoraggio di %s é attivo." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Tracking versions cancellate con successo." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Nessuna versione selezionata." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Instruzione SQL eseguita." @@ -14664,7 +14650,7 @@ msgid "List of available transformations and their options" msgstr "Lista delle trasformazioni disponibili e loro opzioni" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Trasformazione della visualizzazione del browser" @@ -14686,7 +14672,7 @@ msgstr "" "(ad esempio '\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Trasformazione dell'input" @@ -15118,17 +15104,17 @@ msgid "Size" msgstr "Dimensione" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Creazione" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Ultimo cambiamento" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Ultimo controllo" @@ -15170,6 +15156,12 @@ msgstr "" "Il tuo browser ha memorizzato una configurazione di phpMyAdmin per questo " "dominio. Vuoi importarla per la sessione corrente?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Cancella monitoraggio" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Aggiungi privilegi sul seguente/i database:" @@ -15188,10 +15180,43 @@ msgstr "Aggiungi privilegi sulla seguente routine:" msgid "Add privileges on the following table:" msgstr "Aggiungi privilegi sulla seguente tabella:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nuovo" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Nessun" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Rimuove gli account utente selezionati" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Elimina i database che hanno gli stessi nomi degli utenti." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilegi relativi ai campi" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Limiti di risorse" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "N.B.: 0 (zero) significa nessun limite." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" @@ -15222,7 +15247,7 @@ msgstr "Plugin" msgid "Author" msgstr "Autore" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "disabilitato" @@ -15377,7 +15402,7 @@ msgstr "Analizzatore:" msgid "Comment:" msgstr "Commento:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Trascina per riordinare" @@ -15414,20 +15439,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Vincolo della chiave esterna" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Aggiungi vincolo" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relazioni interne" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relazioni interne" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15435,7 +15460,7 @@ msgstr "" "Una relazione interna non %è necessaria, quando una corrispondente relazione " "FOREIGN KEY esiste." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Scegli il campo da mostrare:" @@ -15488,11 +15513,11 @@ msgstr "Stringa originale" msgid "Replaced string" msgstr "Stringa sostituita" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Sostituisci" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Ulteriori criteri di ricerca" @@ -15562,7 +15587,7 @@ msgid "at beginning of table" msgstr "All'inizio della tabella" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partizioni" @@ -15586,24 +15611,24 @@ msgstr "Lunghezza dati" msgid "Index length" msgstr "Lunghezza indice" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Tabella partizioni" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Modifica partizionamento" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Modifica la vista" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Spazio utilizzato" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effettivo" @@ -15628,31 +15653,31 @@ msgstr "Migliora la struttura della tabella" msgid "Track view" msgstr "Tracciatura vista" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Statistiche righe" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statico" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamico" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partizionato" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Lunghezza riga" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Dimensione riga" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Prossimo autoindex" @@ -15665,44 +15690,44 @@ msgstr "Il campo %s è stato eliminato." msgid "Click to toggle" msgstr "Clicca per alternare" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Scarica altri temi!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tipi-MIME disponibili" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Trasformazioni disponibili per il display del browser" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Trasformazioni disponibili per l'input" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Descrizione" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Trasferimento al sito di destinazione." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non hai i permessi per effettuare questa operazione!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Il profilo è stato aggiornato." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "La password è troppo lunga!" @@ -15771,8 +15796,12 @@ msgid "Unexpected end of CASE expression" msgstr "Inattesa fine dell'espressione CASE" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Era atteso un nome di simbolo! Un termine riservato non può essere usato " @@ -15795,17 +15824,17 @@ msgid "Unrecognized data type." msgstr "Tipo dati non riconosciuto." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Era atteso un alias." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Un alias è stato trovato precedentemente." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Segno di punteggiatura \"punto\" inatteso." @@ -15857,24 +15886,24 @@ msgstr "Erano attesi uno o più spazi bianchi prima del delimitatore." msgid "Expected delimiter." msgstr "Era atteso un delimitatore." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Era atteso il fine quote %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Era atteso un nome di variabile." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Inizio di statement inatteso." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Tipo statement non riconosciuto." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Non è stata iniziata alcuna transazione in precedenza." @@ -15891,10 +15920,16 @@ msgstr "Token inatteso." msgid "This type of clause was previously parsed." msgstr "Questo tipo di clausola è stata esaminata in precedenza." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Parola chiave non riconosciuta." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Inizio di statement inatteso." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Era atteso il nome dell'entity." @@ -15931,7 +15966,7 @@ msgstr "%2$s %1$d" msgid "strict error" msgstr "errore di tipo strict" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Il nome vista non può essere vuoto" @@ -17257,6 +17292,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autenticazione MySQL nativa" + #~ msgid "Try to connect without password." #~ msgstr "Prova a connetterti senza password." diff --git a/po/ja.po b/po/ja.po index fbd8e46fbd..86bdd3b310 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-29 03:45+0000\n" "Last-Translator: pralin \n" -"Language-Team: Japanese " -"\n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,31 +27,31 @@ msgstr "" "ファイル %s は、このシステムでは使用できません。詳細については www." "phpmyadmin.net をご覧ください。" -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "現在のデータベースのカラムのセントラルリストは空です。" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "クリックでソート。" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "%1$s から %2$s の行の表示。" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "データベースのコメント:" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "テーブルのコメント:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -63,13 +63,13 @@ msgstr "テーブルのコメント:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -80,9 +80,9 @@ msgstr "テーブルのコメント:" msgid "Column" msgstr "カラム" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -93,12 +93,12 @@ msgstr "カラム" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -110,9 +110,9 @@ msgstr "カラム" msgid "Type" msgstr "データ型" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -123,15 +123,15 @@ msgstr "データ型" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "NULL" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -142,14 +142,14 @@ msgstr "NULL" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "デフォルト値" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -159,7 +159,7 @@ msgstr "デフォルト値" msgid "Links to" msgstr "リンク先" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -173,19 +173,19 @@ msgstr "リンク先" msgid "Comments" msgstr "コメント" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "主" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -193,13 +193,13 @@ msgstr "主" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -207,17 +207,17 @@ msgstr "主" msgid "No" msgstr "いいえ" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -226,13 +226,13 @@ msgstr "いいえ" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -244,15 +244,15 @@ msgstr "はい" msgid "View dump (schema) of database" msgstr "データベースのダンプ (スキーマ) 表示" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "このデータベースにはテーブルがありません。" #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -261,8 +261,8 @@ msgid "Tables" msgstr "テーブル" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -270,10 +270,10 @@ msgstr "テーブル" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,27 +286,27 @@ msgstr "構造" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "データ" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "全選択" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "データベース %1$s の名称を %2$s に変更しました。" -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "データベース %1$s を %2$s にコピーしました。" @@ -319,37 +319,37 @@ msgstr "" "phpMyAdmin 環境保管領域が無効になっています。理由については%sこちら%sをご覧く" "ださい。" -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "最低 1 つは表示するカラムを選択してください!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sビジュアル・クエリ・ビルダ%sに切り替える" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "アクセスが拒否されました!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "追跡データは正常に削除されました。" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "世代 %1$s を作成しました。SQL コマンド追跡機能はアクティブです。" -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "テーブルが選択されていません。" -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "データベースのログです" @@ -387,131 +387,131 @@ msgstr "エクスポート形式が正しくありません!" msgid "Bad parameters!" msgstr "パラメータが正しくありません!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "カラム \"%s\" に対しての値" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "ベースレイヤーに OpenStreetMap を使用する" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "空間参照識別子:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "幾何データ %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "座標:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "座標 %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "座標を追加する" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "線分 %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "外枠:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "内枠 %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "線分を追加する" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "内輪を追加する" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "ポリゴン %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "ポリゴンを追加する" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "幾何データを追加する" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "実行" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "成形結果" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,19 +519,19 @@ msgstr "" "「関数」の項目で「GeomFromText」を選択して、下の文字列を「値」の項目に貼り付" "けてください。" -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "成功しました" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "失敗しました" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "不完全なパラメータ" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -540,15 +540,15 @@ msgstr "" "アップロードしようとしたファイルが大きすぎるようです。この制限に関する対策に" "ついては %sドキュメント%s をご覧ください。" -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "ブックマークを削除しました。" -#: import.php:489 +#: import.php:486 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 " @@ -558,31 +558,33 @@ msgstr "" "ファイルサイズが PHP の設定で許可された最大値を超えています。" "[doc@faq1-16]FAQ 1.16[/doc] をご覧ください。" -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "インポートプラグインが読み込めません。正しくインストールされているか確認して" "ください!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "ブックマーク %s を作成しました。" -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "インポートは正常に終了しました。%d 個のクエリを実行しました。" -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." -msgstr "スクリプトがタイムアウトしました。インポートを完了させたいのであれば%s同じファイルを再送信%sすればインポートが再開されます。" +msgstr "" +"スクリプトがタイムアウトしました。インポートを完了させたいのであれば%s同じ" +"ファイルを再送信%sすればインポートが再開されます。" -#: import.php:632 +#: import.php:629 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." @@ -590,7 +592,7 @@ msgstr "" "ただし、最後に実行したときはまったくデータを解析できませんでした。通常、PHP " "の時間制限を伸ばさない限りこのデータのインポートはできません。" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています。" @@ -598,17 +600,17 @@ msgstr "DROP DATABASE 文は無効にされています。" msgid "Could not load the progress of the import." msgstr "インポートの進行状況を読み込めませんでした。" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "戻る" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin デモ サーバー" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -619,107 +621,107 @@ msgstr "" "root、debian-sys-maintとpmaは変更しないで下さい。詳しい情報は、%sを参照くださ" "い。" -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "一般設定" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "パスワードを変更する" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "サーバ接続の照合順序" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "外観の設定" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "詳細設定" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "データベースサーバ" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "サーバ:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "サーバの種類:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "サーバのバージョン:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "プロトコル バージョン:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "ユーザ:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "サーバの文字セット:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "ウェブサーバ" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "データベースクライアントのバージョン:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP 拡張:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP のバージョン:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "バージョン情報:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "ドキュメント" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "phpMyAdmin オフィシャルサイト" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "phpMyAdmin に協力するには" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "サポート" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "更新履歴" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "ライセンス" -#: index.php:443 +#: index.php:444 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 " @@ -729,7 +731,7 @@ msgstr "" "いるようですが、mbstring 拡張がないと phpMyAdmin は文字列を正しく分割できない" "ため予期しない結果になることがあります。" -#: index.php:458 +#: index.php:459 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." @@ -738,7 +740,7 @@ msgstr "" "す。このためエラーを報告またはバージョン チェックなどいくつかの機能が無効にな" "ります。" -#: index.php:473 +#: index.php:474 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 " @@ -751,7 +753,7 @@ msgstr "" "のため、phpMyAdmin に設定されているよりも早くログインの期限が切れるかもしれま" "せん。" -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -760,18 +762,18 @@ msgstr "" "りも短くなっています。このため、phpMyAdmin に設定されているよりも早くログイン" "の期限が切れます。" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "設定ファイルに、暗号化 (blowfish_secret) 用の非公開パスフレーズの設定を必要と" "するようになりました。" -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "設定ファイルの中に記述されているパスフレーズ(blowfish_secret)が短すぎます。" -#: index.php:528 +#: index.php:529 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 " @@ -783,7 +785,7 @@ msgstr "" "ことを強くお勧めします。削除しない場合、誰でも認証なしでサーバの設定をダウン" "ロードすることができるため、サーバのセキュリティが低下します。" -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -792,12 +794,12 @@ msgstr "" "phpMyAdmin 環境保管領域が完全に設定されていないため、いくつかの拡張機能が無効" "になっています。理由については%sこちら%sをご覧ください。 " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "代わりにデータベースの操作タブを使って設定することもできます。" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -806,7 +808,7 @@ msgstr "" "お使いになっている PHP の MySQL ライブラリのバージョン %s が MySQL サーバの" "バージョン %s と異なります。これは予期しない不具合を起こす可能性があります。" -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -955,9 +957,11 @@ msgid "" "column(s) editing feature (the \"Change\" Link) on the table structure page. " "
" msgstr "" -"この操作によって、MySQLは照合順序間のデータ値の対応付けを試みます。文字セットに互換性がない場合データが欠落する可能性があり、欠落したデータは単にカラ" -"ムの照合順序を元に戻しただけでは復元されません既存のデータの変換を行うには、テーブル構造ページのカラム編集機能(「変更」リンク)の使" -"用が推奨されます。" +"この操作によって、MySQLは照合順序間のデータ値の対応付けを試みます。文字セット" +"に互換性がない場合データが欠落する可能性があり、欠落したデータは単にカラムの" +"照合順序を元に戻しただけでは復元されません既存のデータの変換を行" +"うには、テーブル構造ページのカラム編集機能(「変更」リンク)の使用が推奨され" +"ます。" #: js/messages.php:107 msgid "" @@ -970,7 +974,7 @@ msgid "Save & close" msgstr "保存して閉じる" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "リセット" @@ -1004,7 +1008,7 @@ msgstr "インデックスを追加する" msgid "Edit index" msgstr "インデックスを編集" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "インデックスに %s 個のカラムを追加する" @@ -1029,10 +1033,10 @@ msgstr "インデックスに使用するカラムを選択してください。 msgid "You have to add at least one column." msgstr "最低ひとつはカラムを追加してください。" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQLのプレビュー" @@ -1044,7 +1048,7 @@ msgstr "クエリを検証" msgid "Matched rows:" msgstr "一致した行:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1063,13 +1067,13 @@ msgstr "ホスト名が空です!" msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" @@ -1077,8 +1081,8 @@ msgstr "パスワードが異なっています!" msgid "Removing Selected Users" msgstr "選択したユーザを削除する" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "閉じる" @@ -1100,19 +1104,19 @@ msgstr "テンプレートを削除しました。" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "その他" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1217,40 +1221,40 @@ msgid "Processes" msgstr "プロセス" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "バイト" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1268,7 +1272,7 @@ msgstr "問い合わせ" msgid "Traffic" msgstr "トラフィック" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "設定" @@ -1282,16 +1286,16 @@ msgid "Please add at least one variable to the series!" msgstr "少なくとも1つの系列を追加してください!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "なし" @@ -1488,20 +1492,20 @@ msgstr "解析しています…" msgid "Explain output" msgstr "EXPLAIN の結果" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "状態" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "時間" @@ -1589,10 +1593,10 @@ msgstr "" "インポートした設定でのグラフの配置に失敗しました。設定をデフォルトに戻します…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "インポート" @@ -1665,7 +1669,7 @@ msgstr "パラメータが見つかりませんでした!" msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy msgid "Page-related settings" msgstr "ページ関連の設定" @@ -1710,8 +1714,8 @@ msgid "Error text: %s" msgstr "エラーテキスト:%s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "データベースが選択されていません。" @@ -1751,7 +1755,7 @@ msgstr "データベースをコピーしています" msgid "Changing charset" msgstr "文字セットを変更しています" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "外部キーのチェックを有効にする" @@ -1781,73 +1785,78 @@ msgstr "表示中" msgid "Deleting" msgstr "削除しています" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "テーブル %s に対して条件に一致したものを削除しますか?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ストアドファンクションの定義には、RETURN 文を含めなければなりません!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "エクスポート" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET エディタ" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "カラム %s に対しての値" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "新しいカラムに対しての値" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "個々の入力欄にそれぞれ値を入力してください。" -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "値 %d を追加する" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" "す。" -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "クエリボックスを隠す" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "クエリボックスを表示" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1855,101 +1864,101 @@ msgstr "クエリボックスを表示" msgid "Edit" msgstr "編集" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "削除" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "自動保存されたクエリはありません" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "変数 %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "選択" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "カラムが選択されていません。" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "データベース内検索" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "もっと見る" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "本当ですか?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "この操作はいくつかのカラム定義を変更します。
本当に続けますか?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "続ける" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "主キーを追加する" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "主キーを追加しました。" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "追跡レポート" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "テーブル '%s' の第一正規化が完了しました。" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -1957,228 +1966,230 @@ msgstr "テーブル '%s' の第一正規化が完了しました。" msgid "End of step" msgstr "改行コード" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "第2正規化 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "決定" -#: js/messages.php:443 +#: js/messages.php:444 #, fuzzy msgid "Confirm partial dependencies" msgstr "部分従属の確認" -#: js/messages.php:444 +#: js/messages.php:445 #, fuzzy msgid "Selected partial dependencies are as follows:" msgstr "選択された部分従属は以下の通りです:" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "データベースが選択されていません。" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 #, fuzzy msgid "Hide partial dependencies list" msgstr "部分従属の一覧を隠す" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." -msgstr "テーブルのデータサイズと列数に応じて数秒かかる場合があります。しばらくお待ちください。" +msgstr "" +"テーブルのデータサイズと列数に応じて数秒かかる場合があります。しばらくお待ち" +"ください。" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "手順" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "次のクエリが実行されます:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "カラム '%s' をテーブル '%s' から削除" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "以下のテーブルを作成します" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "第三正規化(3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "依存関係が選択されていません!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "保存する" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "検索条件を隠す" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "範囲検索" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "最大カラム:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "最小カラム:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "最小値:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "最大値:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "検索と置換の条件を隠す" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "検索と置換の条件を表示" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "プロット点は、それぞれの行のデータを表します。" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "プロット点にマウスカーソルを重ねると、そのラベルが表示されます。" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "拡大するには、マウスでグラフ内を範囲選択してください。" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "「Reset zoom」ボタンをクリックすることで元の状態に戻せます。" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "プロット点をクリックすることで、行のデータの閲覧と編集が可能です。" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "グラフの右下をドラッグすることで、大きさの調整が行えます。" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "カラムを 2 つ選択してください" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "異なるカラムを 2 つ選択してください" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "プロット点におけるデータ内容" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "無視" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "コピー" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "座標" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "線分" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "ポリゴン" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "幾何データ" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "インナーリング" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "アウターリング" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "暗号化キーをコピーしますか?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "暗号化キー" -#: js/messages.php:527 +#: js/messages.php:528 #, fuzzy msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "MySQLはスライダーで選択できない値を直接キー入力することもできます。" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "MySQLは日付ピッカーで選択できない値を直接キー入力することもできます。" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2186,24 +2197,24 @@ msgstr "" "あなたがこのページに変更を加えた場合、変更を破棄する前に確認画面が表示される" "でしょう。" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "主キーまたはユニークキーを選択してください!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2211,78 +2222,78 @@ msgstr "" "レイアウトの変更を保存していません。保存しないと失われてしまいます。このまま" "続行しますか?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "ページ名" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "ページの保存" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "名前を付けてページを保存" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "ページを開く" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "ページの削除" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "無題" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "編集するページを選択してください" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "有効なページ名を入力してください" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "現在のページに対する変更を保存しますか?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "ページの削除に成功しました" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "リレーショナルスキーマをエクスポートする" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "カラム「\"%s\"」に対するオプションを追加する。" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d 個のオブジェクトを作成しました。" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "実行する" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "ESC キーで編集をキャンセルします。" -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2290,17 +2301,17 @@ msgstr "" "データの一部を変更しましたが保存していません。データを保存せずにこのページか" "ら移動してもよろしいですか?" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "ドラッグでカラムの入れ替え" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "クリックすると、結果をこのカラムを使ってソートします。" -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2310,32 +2321,32 @@ msgstr "" "す
Ctrl+クリック(またはAlt+クリック、(Macの場合はShift+Option+クリッ" "ク)すると、この列をORDER BY句から削除します" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "クリックでカラムを反転/解除" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ダブルクリックでカラム名をコピー。" -#: js/messages.php:588 +#: js/messages.php:589 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "クリックでカラムの表示/非表示
ができるドロップダウンを表示" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "すべて表示" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2344,11 +2355,11 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "有効な 16 進数の文字列を入力してください。有効な文字は 0-9、A-F です。" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2356,109 +2367,109 @@ msgstr "" "本当にすべての行を表示しますか? 大きなテーブルはブラウザをクラッシュさせるこ" "とがあります。" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "元の長さ" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "キャンセル" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "中断" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "成功" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "インポートの状態" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "ここにファイルをドロップします" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "最初にデータベースを選択してください" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "印刷" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "ほとんどの値は、直接ダブルクリック
することでも、編集できます。" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "ほとんどの値は、直接クリック
することでも、編集できます。" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "リンク先へ移動する:" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "カラム名のコピー。" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "右クリックでカラム名をクリップボードにコピーしてください。" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "生成する" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "その他" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "パネルを表示" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "パネルを隠す" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "左のフレーム内にロゴを表示します。" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "リクエストされたページが履歴にありません。おそらく有効期限切れです。" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2468,48 +2479,48 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "最新版" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "ビューを作成する" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "エラーレポートの送信" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "エラーレポートを送信" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "JavaScript の致命的なエラーが発生しました。エラー報告を送信しますか?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "レポート設定の変更" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "エラーレポートの詳細を表示" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "PHPで設定された低い実行時間制限のため、エクスポートは完了しませんでした!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2519,60 +2530,60 @@ msgstr "" "ると、PHPのmax_input_vars設定の制限により、いくつかのフィールドは無視されるこ" "とがあります。" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "サーバー上でいくつかのエラーが検出されました!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "このウィンドウの一番下を見てください。" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "全て無視" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "設定に従って現在これらを送信しています。気長にお待ちください。" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "このクエリをもう一度実行しますか?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "このブックマークを本当に削除しますか?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "SQL デバッグ情報を取得中にいくつかのエラーが発生しました。" -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s クエリは、%s 回を%s 秒で実行しました。" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s個の引数が渡されました" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "引数の表示" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "引数を非表示" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "所要時間:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2588,353 +2599,373 @@ msgstr "" "合は一般的に「プライベートモード」の利用がこの問題を引き起こすことがありま" "す。" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "テーブルのコピー先" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "テーブル接頭辞の追加" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "テーブル名の接頭辞を付け替える" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "前月" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "翌月" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "今日" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "1 月" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "2 月" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "3 月" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "4 月" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "5 月" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "6 月" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "7 月" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "8 月" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "9 月" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "10 月" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "11 月" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "12 月" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "日" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "月" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "火" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "水" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "木" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "金" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "時" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "分" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "秒" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "このフィールドは必須です" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "この項目を修正してください" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "有効なメールアドレスを入力してください" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "有効なURLを入力してください" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "有効な日付を入力してください" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "有効な日付(ISO準拠)を入力してください" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "有効な数値を入力してください" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "有効なクレジットカード番号を入力してください" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "数字のみを入力してください" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "同じ値をもう一度入力してください" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "{0}文字以上を入力してください" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "少なくとも {0}文字以上を入力してください" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "{0} から {1} の間の値を入力してください" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "{0} から {1} の間の値を入力してください" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "{0} 以下の値を入力してください" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "{0} 以上の値を入力してください" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "有効な日付または時刻を入力してください" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "有効な 16 進数の値を入力してください" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "エラー" @@ -2996,20 +3027,20 @@ msgid "Charset" msgstr "文字セット" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "照合順序" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "バイナリ" @@ -3206,7 +3237,7 @@ msgid "Czech-Slovak" msgstr "チェコのスロバキア語" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "不明" @@ -3262,29 +3293,29 @@ msgstr "" msgid "Font size" msgstr "フォントサイズ" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "ブックマークはありません" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL クエリボックス" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "設定ファイルの読み込みに失敗しました" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3292,26 +3323,26 @@ msgstr "" "サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま" "せん)。" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "サーバが応答しません。" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "データベースを含んでいるディレクトリのパーミッションを確認してください。" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "詳細…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "パラメータがありません:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。" @@ -3420,110 +3451,105 @@ msgstr "挿入:" msgid "Del:" msgstr "削除:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "データベース %s のSQL:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "クエリを実行する" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "保存された条件での検索:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "新しいブックマーク" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "ブックマークの作成" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "ブックマークの編集" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "ブックマークの削除" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "いずれかの単語を含む" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "すべての単語を含む" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "完全一致" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "正規表現" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" の検索結果 %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "合計: %s 件" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 件の一致 (テーブル %2$s)" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "表示" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "テーブル %s に対して条件に一致したものを削除しますか?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "データベース内検索" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "検索する単語や値 (ワイルドカード: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "検索条件:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "各単語は空白文字 (\" \") で区切ってください。" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "検索するテーブル:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "全選択解除" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "検索するカラム:" @@ -3543,30 +3569,30 @@ msgstr "行フィルタ" msgid "Search this table" msgstr "このテーブルを検索" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "先頭" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "前へ" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "次へ" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "最後" @@ -3575,7 +3601,7 @@ msgstr "最後" msgid "All" msgstr "全部" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "行数:" @@ -3584,8 +3610,8 @@ msgstr "行数:" msgid "Sort by key" msgstr "キーでソート" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3607,10 +3633,10 @@ msgstr "キーでソート" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "オプション" @@ -3652,109 +3678,109 @@ msgstr "空間データをテキストで表示" msgid "Well Known Binary" msgstr "空間データをバイナリで表示" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "行を削除しました" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "停止" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] をご覧ください" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "SQL は正常に実行されました。" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "行 %1s - %2s の表示" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "合計 %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "チェックしたものを:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "すべてチェックする" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "クリップボードにコピー" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "空間情報のデータを視覚化する" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "リンクが見つかりません!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "なし" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "全角カナに変換する" @@ -3762,25 +3788,25 @@ msgstr "全角カナに変換する" msgid "Too many error messages, some are not displayed." msgstr "エラーメッセージが多すぎます。いくつかは表示されません。" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "レポート" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "次回、レポートを自動的に送信します" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "アップロードされたファイルではありません。" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "アップロードしたファイルは php.ini に指定されている設定項目 " "upload_max_filesize の値を超えています。" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3788,35 +3814,35 @@ msgstr "" "アップロードしたファイルは HTML フォームに指定されている設定項目 " "MAX_FILE_SIZE の値を超えています。" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "一時フォルダが見つかりません。" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "ファイルをディスクに書き込めません。" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "拡張によりファイルのアップロードが中断されました。" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "このファイルはシンボリックリンクです" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "ファイルを読み込めませんでした!" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -3824,15 +3850,15 @@ msgstr "" "アップロードされたファイルの移動に失敗しました。[doc@faq1-11]FAQ 1.11[/doc] " "をご覧ください。" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "アップロードされたファイルを移動中にエラーが発生しました。" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "アップロードされたファイルが読み込めません。" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3841,28 +3867,28 @@ msgstr "" "サポートされていない圧縮形式 (%s) のファイルを読み込もうとしました。この形式" "はサポートされていないか設定で無効にされています。" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Git %2$sブランチの リビジョン%1$s を実行しています。" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Gitの情報が不足しています!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "別ウィンドウで開く" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "印刷用画面" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "バーをクリックしてページ上部にスクロール" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript を有効にしてください!" @@ -3871,20 +3897,20 @@ msgid "No index defined!" msgstr "インデックスが定義されていません!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "インデックス" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3894,59 +3920,59 @@ msgstr "インデックス" msgid "Action" msgstr "操作" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "キー名" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "圧縮" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "一意な値の数" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "コメント" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "主キーを削除しました。" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "インデックス %s を削除しました。" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "削除" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3955,19 +3981,19 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "ページ番号:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "サポートされていない言語のコードを無視します。" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "言語" @@ -3993,11 +4019,11 @@ msgstr "サーバ" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4016,14 +4042,15 @@ msgid "View" msgstr "ビュー" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4032,8 +4059,8 @@ msgid "Table" msgstr "テーブル" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4041,45 +4068,45 @@ msgstr "テーブル" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "検索" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "挿入" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "特権" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "SQL コマンドの追跡" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4095,16 +4122,16 @@ msgstr "トリガ" msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "クエリ" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "ルーチン" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4112,22 +4139,22 @@ msgstr "ルーチン" msgid "Events" msgstr "イベント" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "デザイナ" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "textarea の 1 行の文字数" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "データベース" @@ -4138,51 +4165,51 @@ msgid "User accounts" msgstr "ユーザグループ" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "バイナリログ" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "レプリケーション" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "変数" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "文字セット" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "エンジン" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "プラグイン" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d 行変更しました。" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d 行削除しました。" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4245,31 +4272,31 @@ msgstr "変数" msgid "Favorites" msgstr "変数" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "このブックマークされた検索に名前を付けてください。" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "Missing information to save the bookmarked search." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "ユーザ %s は既に存在します!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "この検索を呼び出すための情報に誤りがあります。" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4333,7 +4360,7 @@ msgstr "開いているテーブルを表示する" msgid "Show slave hosts" msgstr "スレーブホストを表示する" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "マスタステータスの表示" @@ -4385,78 +4412,78 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "このストレージエンジンにはステータスの詳細情報はありません。" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです。" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s は有効になっています。" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s は無効になっています。" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません。" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr "不明なテーブルステータス: " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "元にするデータベース `%s` が見つかりません!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "対象先のデータベース `%s` が見つかりません!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "不正なデータベースです" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "テーブル名が不正です" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "テーブル名を %1$s から %2$s に変更するときにエラーが発生しました" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "テーブル %1$s の名称を %2$s に変更しました。" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "テーブルに対する環境設定が保存できません" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4465,7 +4492,7 @@ msgstr "" "テーブルに対する環境設定のクリーンアップに失敗しました (参照 $cfg['Servers']" "[$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4475,19 +4502,19 @@ msgstr "" "環境プロパティ「%s」が保存できません。ページ更新の際、変更箇所が維持されるこ" "とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主キーの名前は PRIMARY でなければなりません!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "インデックス名を PRIMARY に変更することはできません!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "インデックス部分が定義されていません!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4803,7 +4830,7 @@ msgid "Date and time" msgstr "日付・時刻" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "文字列" @@ -4818,72 +4845,72 @@ msgstr "空間データ" msgid "Max: %s%s" msgstr "最長: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "統計データ" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "解析中に %d 個のエラーが見つかりました。" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL のメッセージ: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP コードを省略" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "クエリを実行する" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP コードの作成" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "再描画" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "プロファイリング" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4891,65 +4918,65 @@ msgid "Edit inline" msgstr "インデックスを編集する" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "日" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "パラメータがありません:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "データベース「%s」に移動します。" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "指定したアップロードディレクトリが利用できません。" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "アップロードファイルがありません" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "空にする" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "実行" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "ユーザ" @@ -4963,7 +4990,7 @@ msgstr "/ 分" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "/ 時" @@ -4971,12 +4998,12 @@ msgstr "/ 時" msgid "per day" msgstr "/ 日" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "検索:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4984,7 +5011,7 @@ msgstr "検索:" msgid "Description" msgstr "説明" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "この値を利用する" @@ -5025,22 +5052,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "名前" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "長さ/値" @@ -5051,7 +5078,7 @@ msgstr "長さ/値" msgid "Attribute" msgstr "属性" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 #, fuzzy msgid "A_I" msgstr "オート・インクリメント" @@ -5073,13 +5100,13 @@ msgstr "カラムを追加する" msgid "Select a column." msgstr "カラムを 2 つ選択してください" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "カラムを追加する" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5087,7 +5114,7 @@ msgstr "カラムを追加する" msgid "Attributes" msgstr "属性" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5096,27 +5123,27 @@ msgstr "" "PHP の設定で mbstring.func_overload が有効になっています。phpMyAdmin はこのオ" "プションに対応していないため、データが破壊されることがあります!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "サーバ" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5124,20 +5151,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください。" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "エラー: トークンが一致しません" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 変数が書き換えられている可能性があります" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "なんらかの攻撃をされている可能性があります" @@ -5833,7 +5860,7 @@ msgid "Compress on the fly" msgstr "逐次圧縮" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "設定ファイル" @@ -5960,13 +5987,13 @@ msgstr "" msgid "Maximum execution time" msgstr "最大実行時間" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s コマンドを追加する" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "ファイルに保存する" @@ -5976,7 +6003,7 @@ msgstr "ファイルの文字セット" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "フォーマット" @@ -6107,7 +6134,7 @@ msgid "Save on server" msgstr "サーバ上に保存する" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "既存のファイルは上書きする" @@ -6122,7 +6149,7 @@ msgid "Remember file name template" msgstr "ファイル名のテンプレートを記憶しておく" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" @@ -6131,7 +6158,7 @@ msgid "Enclose table and column names with backquotes" msgstr "テーブル名やカラム名を逆クォートで囲む" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL 互換モード" @@ -6165,7 +6192,7 @@ msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s を追加する" @@ -6362,7 +6389,7 @@ msgid "Customize the navigation tree." msgstr "ナビゲーションフレームの詳細設定" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "サーバ" @@ -7437,7 +7464,7 @@ msgstr "HTTP 領域" msgid "Authentication method to use." msgstr "使用する認証方法" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "認証タイプ" @@ -8378,7 +8405,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "設定に開発者向けタブを追加する" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "バージョンアップの確認" @@ -8388,10 +8415,10 @@ msgstr "バージョンアップの確認" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "phpMyAdmin のメインページ上で最終バージョンチェックを有効にします。" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "バージョンの確認" @@ -8548,25 +8575,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document テキスト" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "お気に入りリストが一杯です!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "テーブル %s を空にしました。" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "ビュー %s を破棄しました" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8581,12 +8608,12 @@ msgid "Position" msgstr "位置" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "イベント種別" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "サーバ ID" @@ -8595,7 +8622,7 @@ msgid "Original position" msgstr "元の位置" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "情報" @@ -8609,41 +8636,41 @@ msgstr "クエリの表示を切り詰める" msgid "Show Full Queries" msgstr "クエリ全体を表示" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "データベースが存在しません" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d 個のデータベースが正常に削除されました。" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "行" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "合計" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "オーバーヘッド" @@ -8672,35 +8699,35 @@ msgstr "" msgid "Enable statistics" msgstr "統計を有効にする" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "サーバ変数と設定値" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "変数の設定に失敗しました" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "データが存在しません" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "テーブル %1$s は正常に変更されました。" @@ -8752,7 +8779,7 @@ msgstr "カラムは正常に移動されました。" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "クエリエラー" @@ -8770,12 +8797,12 @@ msgstr "変更" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "インデックス" @@ -8796,13 +8823,13 @@ msgstr "全文" msgid "Distinct values" msgstr "件数集計" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s 拡張がありません。PHP の設定をチェックしてみてください。" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "変更なし" @@ -8828,139 +8855,143 @@ msgstr "" "ください!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "パスワード無し" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "パスワード:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "もう一度入力してください" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "パスワードハッシュ" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "現在のサーバからデータベースをエクスポート" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "データベース \"%s\" からテーブルをエクスポート" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "テーブル \"%s\" から行単位でデータをエクスポート" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "エクスポート形式" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "ファイル名のテンプレート:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "テーブル名" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "作成" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "ファイル名のテンプレート:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "一時テーブルがディスク上に展開される割合" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "クエリを更新する" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "テーブルを選択してください" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "エクスポート方法" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "簡易 - 最小限のオプションだけ表示" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "詳細 - 可能なオプションをすべて表示" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "データベース" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "テーブル" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "フォーマット:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "フォーマット特有のオプション:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8968,52 +8999,52 @@ msgstr "" "下にスクロールして選択したフォーマットのオプションで必要事項を記入し、他の" "フォーマットのオプションは無視してください。" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "エンコーディングへの変換:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "行:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "ダンプする行" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "開始行:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "すべての行をダンプする" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "出力:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "サーバ上のディレクトリ %s に保存する" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "ファイル名のテンプレート:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ はサーバ名に" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "、@DATABASE@ はデータベース名に" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "、@TABLE@ はテーブル名に" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -9025,118 +9056,118 @@ msgstr "" "す。)。その他のテキストはそのまま使われます。詳細については、%4$sFAQ%5$s を" "参照してください。" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "今後のエクスポートでこれを使用する" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "ファイルの文字セット:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "圧縮:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip 形式" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip 形式" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "出力をテキストで表示する" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "テーブル \"%s\" から行単位でデータをエクスポート" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "カラム名をエクスポートする" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "出力をファイルに保存する" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "テーブルを選択してください" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "テーブルを選択してください" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "データベース名" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "新しいページの名前: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "カラム名のコピー" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "カラム名のコピー" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "エクスポートプラグインをロードできません。正しくインストールされているか確認" "してください!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s (%2$s ブランチ)" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "ブランチ無し" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 #, fuzzy #| msgid "Git revision" msgid "Git revision:" msgstr "Git のリビジョン" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "最終コミット: %1$s、%2$s により" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "パッチ作成: %1$s、%2$s により" @@ -9604,13 +9635,13 @@ msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "空き容量不足でファイル %s を保存できません。" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9618,39 +9649,39 @@ msgstr "" "サーバ上に既存のファイル %s があります。ファイル名を変更するか、上書きオプ" "ションを有効にしてください。" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "このウェブサーバにはファイル %s を保存する権限がありません。" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました。" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "ロールバックが発生しました。" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "以下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "名前をクリックすることで構造内容を表示します。" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9659,42 +9690,42 @@ msgid "" msgstr "" "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "データベース %s に移動" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "%s に対する設定の変更を行います" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "テーブル %s に移動" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s の構造" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "ビュー %s に移動" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9705,82 +9736,83 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "%s つのカラムにインデックスを作成する" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "隠す" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "関数" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "長さによってはこのカラムを
編集できなくなる場合もあります。" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "バイナリ - 編集不可" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "または" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "編集/挿入" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "続いて" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9790,8 +9822,8 @@ msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9802,31 +9834,31 @@ msgstr "" msgid "Value" msgstr "値" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "成功!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "構造のみ" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "構造とデータ" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "データのみ" @@ -9837,14 +9869,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "制約を追加する" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9901,8 +9933,8 @@ msgstr "プロシージャ" msgid "Views:" msgstr "ビュー" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "表示" @@ -9948,19 +9980,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Clear series" msgid "Clear fast filter" msgstr "系列をクリアする" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9976,7 +10008,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "設定が保存できません" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9999,7 +10031,7 @@ msgstr "新規作成" msgid "Database operations" msgstr "データベースエクスポートオプション" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -10118,13 +10150,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "カラムを 2 つ選択してください" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Move column" msgid "No such column" @@ -10381,8 +10413,8 @@ msgid "Rename database to" msgstr "データベース名の変更" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10430,183 +10462,183 @@ msgstr "(1 回)" msgid "Move table to (database.table)" msgstr "テーブルを (データベース).(テーブル) へ移動する:" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "変更後のテーブル名称" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "テーブルのコメント" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "テーブルオプション" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "ストレージエンジン" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "テーブルを (データベース).(テーブル) にコピーする:" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "コピーしたテーブルに切り替える" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "テーブルメンテナンス" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "テーブルを分析する" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "テーブルをチェックする" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "テーブルをチェックする" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "テーブルのデフラグ" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "テーブル %s をフラッシュしました。" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "テーブルをフラッシュする (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "テーブルを最適化する" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "テーブルを修復する" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "データまたはテーブルの削除" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "テーブルを空にする (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "テーブルを削除する (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "分析" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "確認" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "最適化" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "再構築" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "修復" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "閉じる" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "パーティション管理" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "パーティション %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "パーティションを削除" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "参照整合性の確認:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "同じテーブルには移動できません!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "同じテーブルにはコピーできません!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "テーブル %s を %s に移動しました。" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "テーブル %s を %s にコピーしました。" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "テーブル %s を %s に移動しました。" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "テーブル %s を %s にコピーしました。" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "テーブル名が空です!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "この書式にはオプションはありません" @@ -10634,18 +10666,18 @@ msgstr "色表示" msgid "Only show keys" msgstr "キーの表示のみ" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "接続できません。設定が無効です。" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s へようこそ" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10654,7 +10686,7 @@ msgstr "" "設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" "ト%2$s を利用して設定ファイルを作成してください。" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10665,7 +10697,7 @@ msgstr "" "ユーザ名、パスワードが MySQL サーバの管理者から与えられた情報と一致するか確認" "してください。" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10693,15 +10725,15 @@ msgstr "ユーザ名:" msgid "Server Choice:" msgstr "サーバの選択" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10765,7 +10797,7 @@ msgstr "データのダンプオプション" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" @@ -10774,7 +10806,7 @@ msgstr "テーブルのデータのダンプ" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "イベント" @@ -10782,8 +10814,8 @@ msgstr "イベント" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "定義" @@ -10877,7 +10909,7 @@ msgstr "1 行目にカラム名を追加する" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11457,7 +11489,7 @@ msgstr "テーブルの内容" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "その他" @@ -11879,18 +11911,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "更新した設定ファイルを読み込むために phpMyAdmin にログインし直します。" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "説明がありません" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11898,41 +11930,41 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "マスタレプリケーション" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "接続しているスレーブの表示" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "スレーブレプリケーションのユーザ追加" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "マスタ設定" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11954,19 +11986,19 @@ msgstr "" "を無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よ" "りいずれかのモードを選択してください。" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "特定のデータベースだけを除いた残り全てをレプリケーションする:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "特定のデータベースだけレプリケーションする:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "データベースを選択してください:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11974,7 +12006,7 @@ msgstr "" "my.cnf の [mysqld] セクションの最後に以下の行を追加し、その後、MySQL サーバを" "再起動してください。" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11984,73 +12016,73 @@ msgstr "" "のサーバマスタとして設定されていることを知らせるメッセージが表示され" "ます。" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "スレーブレプリケーション" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "セキュリティで保護されていない接続" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "スレーブの SQL スレッドが実行していません!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "スレーブの IO スレッドが実行していません!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "サーバはレプリケーションプロセスではスレーブとして設定されています。どのよう" "にしたいですか:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "スレーブのステータステーブルを閲覧する" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "スレーブの操作:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "全開始" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "全停止" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "スレーブのリセット" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "SQL スレッドのみ開始" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "SQL スレッドのみ停止" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "IO スレッドのみ開始" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "IO スレッドのみ停止" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "マスタサーバの変更または再設定" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -12059,26 +12091,26 @@ msgstr "" "このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "管理エラー:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "エラーのスキップは、マスタとスレーブの同期を切ることになるかもしれません!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "現在のエラーをスキップする" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "現在のエラーをスキップする" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -12087,11 +12119,11 @@ msgstr "" "このサーバのレプリケーションプロセスには、マスタが設定されていません。設定を行いますか?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "スレーブの設定" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -12099,57 +12131,57 @@ msgstr "" "念のため、設定ファイル (my.cnf) 内でサーバ ID がユニークであるか確認してくだ" "さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "ユーザ名" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "ユーザ名" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "パスワード" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "ポート" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "マスタステータス" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "スレーブステータス" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "変数" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "ホスト" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -12157,41 +12189,41 @@ msgstr "" "--report-host=host_name オプションで起動したスレーブだけが、このリストに表示" "されます。" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "すべてのホスト" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "ローカル" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "このホスト" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "すべてのユーザ" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "テキスト入力項目の値を利用する" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12199,95 +12231,95 @@ msgstr "" "ホストテーブルが使用されている場合、この項目は無視され、代わりに使用されてい" "るホストテーブルに格納されている値を設定します。" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "もう一度入力してください" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "パスワードを生成する" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "レプリケーションステータス" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "マスタレプリケーション" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "グラフが正常に作成されました。" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "マスタレプリケーション" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "レプリケーションステータス" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "マスタレプリケーション" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "エラー" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "不明なエラーです" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "マスタ %s に接続していません。" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "マスタのログの位置が読み込めません。マスター上の特権問題の可能性があります。" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "マスタを切り替えることができません" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "マスタサーバを %s へ切り替えるのに成功しました。" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12308,7 +12340,7 @@ msgstr "イベント %1$s を変更しました。" msgid "Event %1$s has been created." msgstr "イベント %1$s を作成しました。" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -12320,79 +12352,79 @@ msgstr "リクエストの処理中に 1 つ以上のエラーが発生しま msgid "Edit event" msgstr "イベントを編集する" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "詳細" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "イベント名" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "%s に変更する" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "実行日時" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "実行間隔" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "開始" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "終了" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "完了後もイベントを残す" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "定義者" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 #, fuzzy #| msgid "The definer must be in the \"username@hostname\" format" msgid "The definer must be in the \"username@hostname\" format!" msgstr "定義者の指定は「ユーザ名@ホスト名」の形式でなければなりません。" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide an event name" msgid "You must provide an event name!" msgstr "イベント名は必須です" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "有効な実行間隔を指定してください。" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "有効な実行日時を指定してください。" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "有効な種別イベントを指定してください。" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "イベントの定義は必須です。" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -12415,7 +12447,7 @@ msgstr "イベントスケジュールの状態" msgid "The backed up query was:" msgstr "バックアップされていたクエリ:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "返り値" @@ -12431,99 +12463,99 @@ msgstr "" "敗する可能性があります![/strong] 問題を回避するためには、改良された" "「mysqli」拡張を使用するようにしてください。" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "ルーチンを編集する" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "ルーチンタイプが不正です: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "ルーチン %1$s を作成しました。" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "申し訳ありませんが、削除されたルーチンの復元に失敗しました。" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "ルーチン %1$s を変更しました。" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "ルーチン %1$s を変更しました。" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "ルーチン名" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "パラメータ" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "入出力" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "パラメータを追加する" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "最後のパラメータを削除する" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "返り値の種類" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "返り値の長さ/値" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "返り値のオプション" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "DETERMINISTIC" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "SQL SECURITY" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "データ干渉方式" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "ルーチン名は必須です" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "パラメータに対して不正な入出力「%s」が与えられています。" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -12531,24 +12563,24 @@ msgstr "" "ルーチンパラメータが ENUM、SET、VARCHAR、VARBINARY の場合、長さ/値は必須で" "す。" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "ルーチンの各パラメータに対して、名前とデータ型は必須です。" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "ルーチンに対して、有効な返り値の種類を指定してください。" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "ルーチンの定義は必須です。" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "ルーチン %s の実行結果" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12556,13 +12588,13 @@ 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 行の変更を行いました" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "ルーチンを実行する" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "ルーチンのパラメータ" @@ -12584,40 +12616,40 @@ msgstr "トリガ %1$s を作成しました。" msgid "Edit trigger" msgstr "トリガを編集する" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "トリガ名" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "実行時機" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a trigger name" msgid "You must provide a trigger name!" msgstr "トリガ名は必須です" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" msgstr "有効な実行時機を指定してください。" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid event for the trigger" msgid "You must provide a valid event for the trigger!" msgstr "有効なトリガイベントを指定してください" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "有効なテーブル名を指定してください" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "トリガの定義は必須です。" @@ -12744,92 +12776,92 @@ msgstr "文字セットと照合順序" msgid "Databases statistics" msgstr "データベースの統計" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "特権はありません。" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する。" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "データの読み込みを許可する。" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する。" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "データの修正を許可する。" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "データの削除を許可する。" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する。" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可する。" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定の再読み込み、サーバキャッシュのフラッシュを許可する。" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する。" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "全ユーザのプロセスを閲覧できるようにする。" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する。" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です。" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する。" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する。" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する。" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12839,536 +12871,487 @@ msgstr "" "ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" "ります。" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する。" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する。" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります。" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスタの照会を許可する。" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する。" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "イベントスケジューラにイベントを設定できるようにする。" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "トリガの作成・削除を許可する。" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する。" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する。" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する。" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "ユーザアカウントの作成・削除・名前の変更を許可する。" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する。" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "なし" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "永続的な接続" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "永続的な接続" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "リソースの制限" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します。" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "単位時間内にサーバに送信可能なクエリ数を制限する。" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する。" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "単位時間内に可能な新規接続回数を制限する。" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する。" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "ルーチン" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "ストアドルーチンの修正と削除を許可する。" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "ストアドルーチンの実行を許可する。" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "テーブル固有の特権" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "注意: MySQL の特権名は英語で表示されます" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "管理" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "グローバル特権" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "グローバル" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "データベースに固有の特権" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する。" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する。" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルの再読み込みなしでユーザ・特権の追加を許可する。" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "クッキー認証" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "サインオン認証" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "クッキー認証" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "ログイン情報" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "テキスト入力項目の値を利用する" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "ユーザ名" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "ログ名" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "認証" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "パスワードハッシュ" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました。" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s の特権を取り消しました。" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "ユーザを追加する" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "ユーザ専用データベース" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "同名のデータベースを作成してすべての特権を与える。" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える。" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "データベース \"%s\" への全ての特権を与える。" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" にアクセスできるユーザ" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "ビュー %s を破棄しました。" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "権限委譲" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "ユーザが存在しません。" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "すべて" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "グローバル" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "ワイルドカード" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "取り消し" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "サーバの編集" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "元のユーザも残す。" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する。" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する。" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする。" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "ログイン情報の変更 / ユーザの複製" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "同じ特権を持つ新しいユーザを作る…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "このカラムに固有の特権" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "選択したユーザを削除する" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "特権をすべて取り消してユーザを削除する。" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "ユーザと同名のデータベースを削除する。" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "特権を再読み込みしています" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "選択されたユーザは正常に削除されました。" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました。" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました。" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s に対する特権" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "ユーザ" -#: libraries/server_privileges.lib.php:4620 -#, fuzzy -#| msgid "New" -msgctxt "Create new user" -msgid "New" -msgstr "新規作成" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "ユーザグループ" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "ユーザ概略" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13381,7 +13364,7 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13400,11 +13383,11 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません。" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "新しいユーザを追加しました。" @@ -13719,12 +13702,12 @@ msgstr "コマンド" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "フィルタ" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13753,12 +13736,12 @@ msgstr "/ 分" msgid "per second:" msgstr "/ 秒" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "ステートメント" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "クエリ数" @@ -13782,17 +13765,17 @@ msgstr "生の値 (書式化なし) で表示する" msgid "Related links:" msgstr "関連リンク:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13801,16 +13784,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数。" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数。" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13821,24 +13804,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数。" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13846,23 +13829,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます。" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数。" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数。" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数。" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数。" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13872,7 +13855,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です。" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13882,7 +13865,7 @@ msgstr "" "もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 " "FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13890,7 +13873,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます。" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13900,7 +13883,7 @@ msgstr "" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま" "す。" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13908,7 +13891,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY … DESC の最適化に利用されます。" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13920,7 +13903,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります。" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13931,36 +13914,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します。" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数。" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数。" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数。" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数。" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数。" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "空きページ数。" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13970,7 +13953,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です。" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13982,11 +13965,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます。" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計。" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13994,7 +13977,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します。" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14002,11 +13985,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なテーブル全スキャンを行うときに発生します。" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数。" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14014,7 +13997,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数。" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14028,51 +14011,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです。" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数。" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数。" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数。" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数。" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数。" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)。" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "データ読み込み回数の合計。" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "データ書き込み回数の合計。" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)。" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14080,35 +14063,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数。" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数。" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数。" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数。" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数。" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数。" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数。" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "作成されたページ数。" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -14116,51 +14099,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます。" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "読み込んだページ数。" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "書き込んだページ数。" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数。" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数。" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数。" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数。" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数。" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数。" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14168,7 +14151,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした。" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14176,7 +14159,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます。" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14185,15 +14168,15 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です。" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "使われているキーキャッシュの比率 (計算値)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数。" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14203,7 +14186,7 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます。" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -14211,20 +14194,20 @@ msgstr "" "キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算" "値)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数。" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数。" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14234,17 +14217,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14252,19 +14235,19 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます。" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "開いているファイルの数。" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)。" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "開いているテーブルの数。" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -14274,19 +14257,19 @@ msgstr "" "ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" "るかもしれません。" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量。" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "キャッシュのヒット数。" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数。" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14298,7 +14281,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ" "て削除するクエリを決めます。" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14306,19 +14289,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数。" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数。" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数。" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)。" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -14326,11 +14309,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください。" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数。" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -14338,7 +14321,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14346,15 +14329,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルを全スキャンした結合の数。" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14362,23 +14345,23 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)。" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14387,23 +14370,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう。" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数。" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "ソート済の行数。" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数。" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数。" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14414,7 +14397,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください。" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14424,11 +14407,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください。" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "現在開いている接続の数。" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14439,11 +14422,11 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "スレッドキャッシュのヒット割合 (計算値)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数。" @@ -14480,49 +14463,49 @@ msgstr "データベースサーバ" msgid "Table level tabs" msgstr "テーブル名" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "ビュー" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "ユーザを追加する" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "特権はありません。" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "カラム名: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "サーバのバージョン" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "データベースサーバ" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14651,7 +14634,7 @@ msgstr "データベース %s 上でクエリを実行する" msgid "Run SQL query/queries on table %s" msgstr "データベース %s 上でクエリを実行する" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "クリア" @@ -14739,115 +14722,115 @@ msgstr "すぐに非アクティブにする" msgid "Version" msgstr "バージョン" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "作成日時" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "更新日時" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "世代を作成する" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "追跡レポート" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "構造のスナップショット" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "アクティブ" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "非アクティブ" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "追跡しているコマンド" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "レポートからこの追跡データを削除する" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "データが存在しません" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "種別:%1$s、期間:%2$s-%3$s、ユーザ:%4$sで絞り込む %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL 文のダンプ (ファイルでダウンロード)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL 文のダンプ" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" "このオプションは、テーブルやそれに含まれるデータを置き換えるかもしれません。" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL 文を実行" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "上の結果をエクスポートする %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "データ操作コマンド" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "データ定義コマンド" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "日時" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "ユーザ名" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "世代 %s のスナップショット (SQL コード)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "なし" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "追跡データ定義コマンドは正常に削除されました" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "追跡データ操作コマンドは正常に削除されました" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14855,68 +14838,68 @@ msgstr "" "作成された一時的なデータベースを使用してダンプを実行することができます。これ" "を実行できる特権を持っていることを確認してください。" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" "一時的なデータベースに対して実行しない場合は、この2行をコメントアウトします。" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL 文をエクスポートしました。ダンプしたものをコピーするか実行するかしてくだ" "さい。" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "テーブル `%s` に対しての追跡レポート" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s でアクティブです。" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s で非アクティブです。" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s に世代 %1$s を作成" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" "世代 %1$s を作成しました。%2$s の SQL コマンド追跡機能はアクティブです。" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "SQL コマンドを追跡していないテーブル" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "テーブルを追跡する" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "SQL コマンドを追跡しているテーブル" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "最後の世代" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "追跡データを削除しています" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "世代" @@ -14924,7 +14907,7 @@ msgstr "世代" msgid "Manage your settings" msgstr "ユーザ環境設定の管理" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "設定を保存しました。" @@ -14950,7 +14933,7 @@ msgstr "ZIP アーカイブにエラーがあります:" msgid "No files found inside ZIP archive!" msgstr "ZIP アーカイブにファイルが含まれていません!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14961,59 +14944,59 @@ msgid "Cannot save settings, submitted form contains errors!" msgstr "" "設定を保存することはできません。送信された内容にエラーが含まれています。" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "これをconfig.inc.phpに貼り付けてください" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "設定がインポートできませんでした" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "設定の一部に不正なデータが含まれています。" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "残っている設定を読み込みますか?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "保存日時:@DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "ファイルから読み込む" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "ブラウザ (Web Storage) から設定を読み込む" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "設定をブラウザ (Web Storage) から読み込みます。ローカルの保存場所ですがクッ" "キーではありません。" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "保存されている設定はありません!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "この機能はブラウザよってサポートされていません" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "現在の設定とマージする" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -15022,27 +15005,27 @@ msgstr "" "%sセットアップスクリプト%sを使用するなどして config.inc.php を変更することに" "より、より多くの設定を行うことができます。" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "ファイルに保存する" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "ブラウザ (Web Storage) に保存する" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" "設定がブラウザ (Web Storage) に保存されます。ローカルの保存場所ですがクッキー" "ではありません。" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "既に保存してある設定に上書きします!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "すべての設定をリセットして、デフォルト値に復元します。" @@ -15050,45 +15033,45 @@ msgstr "すべての設定をリセットして、デフォルト値に復元し msgid "View dump (schema) of databases" msgstr "データベースのダンプ (スキーマ) 表示" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "特権なし" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "スレッド %s は正常終了しました。" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです。" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "ダウンロード" @@ -15101,11 +15084,11 @@ msgstr "" "フォームセットが正しくありません。setup/frames/form.inc.php 内の $formsets 配" "列を確認してください。" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "設定の読み込み・保存が出来ません" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -15115,7 +15098,7 @@ msgstr "" "ベルディレクトリにウェブサーバで書き込める [em]config[/em] フォルダを作成して" "ください。そうしない場合は、ダウンロードするか表示するかのみになります。" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -15123,24 +15106,27 @@ msgstr "" "セキュリティで保護された接続を使用していません。全てのデータ(パスワードのよ" "うに、潜在的な機密情報を含む)が暗号化されずに転送されています!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "サーバが HTTPS 要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]" "をたどり安全な接続を使用するようにしてください。" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "セキュリティで保護されていない接続" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "設定を保存しました。" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -15149,61 +15135,61 @@ msgstr "" "います。それを使用するには、phpMyAdmin のトップレベルディレクトリにコピーし" "て、config ディレクトリは削除してください。" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "設定を保存しました。" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "一般" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "隠れているメッセージを表示する (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "設定するサーバがありません" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "新しいサーバ" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "デフォルト言語" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "ユーザに選択させる" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- 無し -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "デフォルトサーバ" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "改行コード" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "表示する" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "読み込む" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin オフィシャルサイト" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "寄付" @@ -15239,7 +15225,7 @@ msgstr "エラーを無視する" msgid "Show form" msgstr "フォームを表示する" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -15247,15 +15233,15 @@ msgstr "" "バージョンの読み込みに失敗しました。オフラインであるか、アップグレードサーバ" "が応答しません。" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "サーバから取得したバージョン文字列は無効なものです" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "解析できないバージョン文字列です" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -15264,7 +15250,7 @@ msgstr "" "Git 版を使用されていますので、[kbd]git pull[/kbd] で更新を行ってください。" "(^^)[br]最新の安定バージョンは %s で、%s にリリースされています。" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "入手可能な新しい安定バージョンはありません" @@ -15277,12 +15263,12 @@ msgstr "データが正しくありません" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "データベース '%s' が存在しません。" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "テーブル %s は既に存在します!" @@ -15295,35 +15281,35 @@ msgstr "テーブルのダンプ (スキーマ) 表示" msgid "Invalid table name" msgstr "テーブル名が不正です" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "行が選択されていません" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s の SQL コマンド追跡機能はアクティブです。" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "選択されたユーザは正常に削除されました。" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "行が選択されていません" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL 文が実行されました。" @@ -15543,7 +15529,7 @@ msgid "List of available transformations and their options" msgstr "利用できる変換機能" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15568,7 +15554,7 @@ msgstr "" "に) バックスラッシュでエスケープしてください。" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16091,17 +16077,17 @@ msgid "Size" msgstr "サイズ" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "作成日時" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "最終更新" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "最終検査" @@ -16139,6 +16125,12 @@ msgstr "" "Storage に) 保存しています。現在のセッションにその設定を読み込んでもよろしい" "ですか?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "追跡データを削除しています" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16163,10 +16155,47 @@ msgstr "テーブルに特権を追加" msgid "Add privileges on the following table:" msgstr "テーブルに特権を追加" +#: templates/privileges/add_user_fieldset.phtml:2 +#, fuzzy +#| msgid "New" +msgctxt "Create new user" +msgid "New" +msgstr "新規作成" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "なし" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "選択したユーザを削除する" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "特権をすべて取り消してユーザを削除する。" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "ユーザと同名のデータベースを削除する。" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "リソースの制限" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します。" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" @@ -16199,7 +16228,7 @@ msgstr "プラグイン" msgid "Author" msgstr "作者" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "無効" @@ -16373,7 +16402,7 @@ msgstr "ユーザ:" msgid "Comment:" msgstr "コメント" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16411,29 +16440,29 @@ msgstr "" msgid "Foreign key constraint" msgstr "外部キー制約" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "制約を追加する" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "内部リレーション" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "内部リレーション" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "対応する外部リレーションが存在する場合、内部リレーションは必要ありません。" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16497,13 +16526,13 @@ msgstr "元の位置" msgid "Replaced string" msgstr "関連リンク" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "レプリケーションしている" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "更なる検索条件" @@ -16584,7 +16613,7 @@ msgid "at beginning of table" msgstr "テーブルの先頭" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16620,28 +16649,28 @@ msgstr "行の長さ" msgid "Index length" msgstr "行の長さ" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "パーティション有り" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "パーティションを削除" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "ビューを編集する" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "ディスク使用量" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "有効" @@ -16668,33 +16697,33 @@ msgstr "テーブル構造を確認する" msgid "Track view" msgstr "追跡の閲覧" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "行の統計" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "静的" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "動的" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "パーティション有り" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "行の長さ" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "行のサイズ" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "次の自動付番" @@ -16707,50 +16736,50 @@ msgstr "カラム %s を削除しました。" msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "テーマ" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "他のテーマを入手する!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "利用できる MIME タイプ" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "利用できる変換機能" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "利用できる変換機能" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "説明" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "追跡レポート" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "特権不足でアクセスできません!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "プロファイルを更新しました。" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16827,7 +16856,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16852,19 +16881,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "テーブルが選択されていません。" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16927,29 +16956,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "イベント %1$s を作成しました。" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "テーブル名のテンプレート" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "テーブルの先頭" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "開始されているトランザクションはありません。" @@ -16968,10 +16997,16 @@ msgstr "予期しない文字 (行: %s)。" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "認識できないキーワードです。" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "テーブルの先頭" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17018,7 +17053,7 @@ msgstr "" msgid "strict error" msgstr "エラーを収集する" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "ビュー名を空にすることはできません" @@ -18403,6 +18438,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "クッキー認証" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/ka.po b/po/ka.po index c36d478659..68f2750838 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "ატრიბუტები" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "შეცვლა" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2138,298 +2143,298 @@ msgstr "" msgid "End of step" msgstr "სტრიქონის დასასრული" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "შენახვა" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL Query box" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ძებნა" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "სვეტების სახელები" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "სვეტების სახელები" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "ასლი" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lines terminated by" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add an inner ring" msgid "Inner ring" msgstr "შიდა ქსელის დამატება" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Lines terminated by" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "გვერდის ნომერი:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "ყველას მონიშნვა" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "ყველას მონიშნვა" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2437,242 +2442,242 @@ msgstr "ყველას მონიშნვა" msgid "Open page" msgstr "pages" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "ყველას მონიშნვა" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relational schema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: js/messages.php:569 +#: js/messages.php:570 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "%1$d row(s) affected." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Submit" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "საწყისი მდებარეობა" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "გაუქმება" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "შეწყვეტილია" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "ფაილების შემოტანა" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "ცხრილების არჩევა" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "დაბეჭდვა" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "ახალი ველის დამატება" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize export options" msgid "Link with main panel" msgstr "Customize export options" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize export options" msgid "Unlink from main panel" msgstr "Customize export options" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2680,126 +2685,126 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Create relation" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "სერვერის პორტი" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "სერვერის პორტი" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Other core settings" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Report title" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "იგნორირება" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy msgid "Execute this query again?" msgstr "SQL მოთხოვნები" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "ცხრილის კომენტარები" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL Query box" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2808,38 +2813,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copy database to" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "ახალი ველის დამატება" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Replace table data with file" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "წინა" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2847,96 +2872,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "მაი" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2944,78 +2969,78 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "დეკ" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3023,86 +3048,86 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3111,139 +3136,139 @@ msgstr "ვიკი" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "არაა" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "წამში" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "გამოიყენე ტექსტური ველი" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "შეცდომა" @@ -3305,20 +3330,20 @@ msgid "Charset" msgstr "სიმბოლოთა ნაკრები" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "კოლაცია" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "ბინარული" @@ -3515,7 +3540,7 @@ msgid "Czech-Slovak" msgstr "ჩეხოსლოვალური" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "უცნობი" @@ -3564,31 +3589,31 @@ msgstr "" msgid "Font size" msgstr "შრიფტის ზომა" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "ძებნა" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL მოთხოვნა" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to set configured collation connection!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3596,27 +3621,27 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "სერვერი არ პასუხობს" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "დეტალები…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Routines" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3726,67 +3751,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "ძებნა" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "ძებნა" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "ძებნა" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Search" msgid "Update bookmark" msgstr "ძებნა" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "ძებნა" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "ერთი სიტყვა მაინც" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "ყველა სიტყვა" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "ზუსტი ფრაზა" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "რეგულარული გამოსახულება" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3794,7 +3819,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Total: %s match(es)" msgstr[1] "Total: %s match(es)" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3802,52 +3827,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "არჩევა" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "ძებნა:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "ცხრილ(ებ)ში:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "მონიშნვის მოხსნა" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "სვეტში:" @@ -3874,16 +3894,16 @@ msgstr "ფაილები" msgid "Search this table" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "დასაწყისი" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3892,8 +3912,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "წინა" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3902,8 +3922,8 @@ msgctxt "Next page" msgid "Next" msgstr "შემდეგი" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3914,7 +3934,7 @@ msgstr "დასასრული" msgid "All" msgstr "ყველა" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3925,8 +3945,8 @@ msgstr "ველების რაოდენობა" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3948,10 +3968,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "პარამეტრები" @@ -3999,110 +4019,110 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "სტრიქონი წაიშალა" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "შეიძლება იყოს მიახლოებითი. იხილეთ [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "%s databases have been dropped successfully." msgid "Your SQL query has been executed successfully." msgstr "%s databases have been dropped successfully." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "სულ" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "ყველას შემოწმება" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "ბმული ვერ მოიძებნა" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4110,7 +4130,7 @@ msgid "None" msgstr "არაა" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4118,107 +4138,107 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "შემოტანა" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Automatic recovery mode" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "შეიძლება იყოს მიახლოებითი. იხილეთ [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "ინფორმაცია ვერსიის შესახებ" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -4227,20 +4247,20 @@ msgid "No index defined!" msgstr "ინდექსი არაა განსაზღვრული!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "ინდექსები" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4250,78 +4270,78 @@ msgstr "ინდექსები" msgid "Action" msgstr "მოქმედება" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "კომენტარი" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "გვერდის ნომერი:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "ენა" @@ -4345,11 +4365,11 @@ msgstr "სერვერი" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4368,14 +4388,15 @@ msgid "View" msgstr "ხედო" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4384,8 +4405,8 @@ msgid "Table" msgstr "ცხრილი" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4393,45 +4414,45 @@ msgstr "ცხრილი" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "ძებნა" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "ჩასმა" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "პრივილეგიები" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "მოქმედებები" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4447,16 +4468,16 @@ msgstr "ტრიგერები" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "მოთხოვნა" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4464,22 +4485,22 @@ msgstr "Routines" msgid "Events" msgstr "მოვლენები" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "შემქნელი" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR textarea columns" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "მონაცემთა ბაზები" @@ -4490,39 +4511,39 @@ msgid "User accounts" msgstr "მომხმარებელი" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "ბინარული ჟურნალი" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "რეპლიკაცია" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "ცვლადები" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "ძრავები" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." @@ -4530,7 +4551,7 @@ msgid_plural "%1$d rows affected." msgstr[0] "%1$d row(s) affected." msgstr[1] "%1$d row(s) affected." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." @@ -4538,7 +4559,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "წაიშალა %1$d სტრიქონი." msgstr[1] "წაიშალა %1$d სტრიქონი." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." @@ -4607,29 +4628,29 @@ msgstr "ცვლადები" msgid "Favorites" msgstr "ცვლადები" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "მომხმარებელი %s უკვე არსებობს!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Unknown error in file upload." @@ -4692,7 +4713,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 #, fuzzy msgid "Show master status" msgstr "Show slave status" @@ -4751,86 +4772,86 @@ msgid_plural "%d minutes" msgstr[0] "in use" msgstr[1] "in use" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s გათიშულია ამ MySQL სერვერზე." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Show slave status" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "არასწორი მონაცემთა ბაზა" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "ცხრილის არასწორი სახელი" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1 to %2" msgid "Failed to rename table %1$s to %2$s!" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Table %s has been renamed to %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save table UI preferences!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4838,19 +4859,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5119,7 +5140,7 @@ msgid "Date and time" msgstr "ახალი ინდექსის შექმნა" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5138,70 +5159,70 @@ msgstr "Log file count" msgid "Max: %s%s" msgstr "მაქს: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP კოდის გარეშე" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "მოთხოვნის გაგზავნა" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP კოდის შექმნა" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "განახლება" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profiling" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5209,68 +5230,68 @@ msgid "Edit inline" msgstr "რედაქტირების რეჟიმი" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "კვი" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Routines" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "There are no configured servers" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ცარიელი" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5286,7 +5307,7 @@ msgstr "წუთში" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "საათში" @@ -5294,14 +5315,14 @@ msgstr "საათში" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "ძებნა" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5309,7 +5330,7 @@ msgstr "ძებნა" msgid "Description" msgstr "აღწერილობა" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "გამოიყენეთ ეს ველი" @@ -5350,22 +5371,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "სახელი" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -5376,7 +5397,7 @@ msgstr "" msgid "Attribute" msgstr "ატრიბუტები" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5399,13 +5420,13 @@ msgstr "%s ველის დამატება" msgid "Select a column." msgstr "ველის სვეტების დამატება/წაშლა" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "%s ველის დამატება" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5413,7 +5434,7 @@ msgstr "%s ველის დამატება" msgid "Attributes" msgstr "ატრიბუტები" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5423,28 +5444,28 @@ msgstr "" "პარამეტრი არაა თავსებადი phpMyAdmin-თან და შეიძლება გამოიწვიოს მონაცემების " "დაზიანება!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "სერვერი" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5452,20 +5473,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6136,7 +6157,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "კონფიგურაციის ფაილი" @@ -6248,13 +6269,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Statements" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "ფაილის სახის შენახვა" @@ -6264,7 +6285,7 @@ msgstr "სომბოლოთა ნაკრები ფაილისა #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "ფორმატი" @@ -6407,7 +6428,7 @@ msgid "Save on server" msgstr "სერვერზე შენახვა" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -6421,7 +6442,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -6432,7 +6453,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Enclose table and field names with backquotes" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6464,7 +6485,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -6653,7 +6674,7 @@ msgid "Customize the navigation tree." msgstr "Customize navigation frame" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "სერვერები" @@ -7628,7 +7649,7 @@ msgstr "" msgid "Authentication method to use." msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "ავთენტიფიკაციის ტიპი" @@ -8402,7 +8423,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "უკანასკნელ ვერსიაზე შემოწმება" @@ -8410,10 +8431,10 @@ msgstr "უკანასკნელ ვერსიაზე შემოწ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "ვერსიის შემოწმება" @@ -8571,25 +8592,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "Field %s has been dropped." msgid "View %s has been dropped." msgstr "Field %s has been dropped" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Field %s has been dropped." msgid "Table %s has been dropped." @@ -8604,12 +8625,12 @@ msgid "Position" msgstr "მდებარეობა" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "მოვლენის ტიპი" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "სერვერის ID" @@ -8618,7 +8639,7 @@ msgid "Original position" msgstr "საწყისი მდებარეობა" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "ინფორმაცია" @@ -8632,42 +8653,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "მონაცემთა ბაზები არაა" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databases have been dropped successfully." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "სტრიქონები" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "სულ" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8697,35 +8718,35 @@ msgstr "" msgid "Enable statistics" msgstr "სტატისტიკის ჩართვა" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "სერვერის ცვლადები და პარამეტრები" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "მონაცემთა ბაზები არაა" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8777,7 +8798,7 @@ msgstr "%s databases have been dropped successfully." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -8797,12 +8818,12 @@ msgstr "შეცვლა" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "ინდექსი" @@ -8825,13 +8846,13 @@ msgstr "Fulltext" msgid "Distinct values" msgstr "სესიის მნიშვნელობა" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "ცვლილების გარეშე" @@ -8851,206 +8872,210 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "პაროლი არაა" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "პაროლი:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Re-type" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Password Hashing" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Allows locking tables for the current thread." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Create new table on database %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Create new table on database %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Export type" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "File name template" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "ცხრილის სახელი" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "შექმნა" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "File name template" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s table(s)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "მოთხოვნის განახლება" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "ცხრილების არჩევა" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Export type" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 #, fuzzy #| msgid "Customize default export options" msgid "Custom - display all possible options" msgstr "Customize default export options" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "მონაცემთა ბაზები" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "ცხრილები" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "ფორმატი" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "გარდაქმნის პარამეტრები" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy #| msgid "Recoding engine" msgid "Encoding Conversion:" msgstr "Recoding engine" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "სტრიქონები" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "სერვერის %s დირექტორიაში შენახვა" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "File name template" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -9065,123 +9090,123 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "სიმბოლოთა ნაკრები ფაილისთვის:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "შეკუმშვა" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zip-ით შეკუმშული\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzip-ით დაარქივებული\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "ფაილის სახის შენახვა" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Create new table on database %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy msgid "Export tables as separate files" msgstr "Export defaults" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "ფაილის სახის შენახვა" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "ცხრილების არჩევა" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "ცხრილების არჩევა" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "მონაცემთა ბაზა" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "ცხრილები არაა" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "სვეტების სახელები" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "სვეტების სახელები" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Create relation" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Create relation" @@ -9598,89 +9623,89 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "მხოლოდ სტრუქტურა" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Export defaults" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9692,92 +9717,93 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "დამალვა" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "ფუნქცია" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Because of its length,
this field might not be editable " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ან" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web server upload directory" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "ჩასმა" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restart insertion with %s rows" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "და შემდეგ" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9788,31 +9814,31 @@ msgstr "" msgid "Value" msgstr "მნიშვნელობა" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "მხოლოდ მონაცემები" @@ -9823,14 +9849,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Add AUTO_INCREMENT value" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9893,8 +9919,8 @@ msgstr "პროცედურები" msgid "Views:" msgstr "ხედო" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "ჩვენება" @@ -9939,19 +9965,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "ფაილის სახის შენახვა" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9967,7 +9993,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9990,7 +10016,7 @@ msgstr "" msgid "Database operations" msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -10095,13 +10121,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "ველის სვეტების დამატება/წაშლა" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "CHAR textarea columns" msgid "No such column" @@ -10355,8 +10381,8 @@ msgid "Rename database to" msgstr "ახალი მონაცემთა ბაზის შექმნა" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10403,83 +10429,83 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "ცხრილის პარამეტრები" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "ცხრილის შემოწმება" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10487,103 +10513,103 @@ msgstr "ცხრილის აღდგენა" msgid "Delete data or table" msgstr "Dumping data for table" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "მაგიდების წაშლა (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "შემოწმება" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "ოპტიმიზება" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "აღდგენა" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Count tables" msgid "Coalesce" msgstr "ცხრილების დათვლა" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "დანაყოფი %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "ცხრილის სახელი ცარიელია!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10612,25 +10638,25 @@ msgstr "ფერის ჩვენება" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "მოგესალმებათ %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10638,7 +10664,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10665,15 +10691,15 @@ msgstr "მომხმარებელი:" msgid "Server Choice:" msgstr "სერვერის არჩევა" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10752,7 +10778,7 @@ msgstr "მონაცემთა ბაზის ჩვენების პ #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10761,7 +10787,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "მოვლენა" @@ -10769,8 +10795,8 @@ msgstr "მოვლენა" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10878,7 +10904,7 @@ msgstr "Put fields names in the first row" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11451,7 +11477,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "ექსტრა" @@ -11875,59 +11901,59 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 #, fuzzy msgid "Master replication" msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 #, fuzzy msgid "Master configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11936,320 +11962,320 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 #, fuzzy msgid "Slave replication" msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "დაუცველი კავშირი" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 #, fuzzy msgid "Control slave:" msgstr "Control user" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "მხოლოდ SQL თემების გაშვება" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "გაეშვას მხოლოდ IO სტრუქტურა" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 #, fuzzy msgid "Slave configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "მომხმარებლის სახელი" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "მომხმარებლის სახელი" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "პაროლი" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "დალაგება" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 #, fuzzy msgid "Master status" msgstr "Show slave status" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 #, fuzzy msgid "Slave status" msgstr "Show slave status" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "ცვლადი" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "ჰოსტი" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "ლოკალური" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "პაროლის დაგენერირება" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy msgid "Replication started successfully." msgstr "რეპლიკაცია" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy msgid "Error starting replication." msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "The privileges were reloaded successfully." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy msgid "Error stopping replication." msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy msgid "Replication resetting successfully." msgstr "რეპლიკაცია" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy msgid "Error resetting replication." msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "შეცდომა" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "The privileges were reloaded successfully." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12272,7 +12298,7 @@ msgstr "Table %s has been dropped" msgid "Event %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12283,90 +12309,90 @@ msgstr "" msgid "Edit event" msgstr "სერვერის რედაქტირება" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "დეტალები…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "მოვლენის ტიპი" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "შეცვლა" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "ჩანიშნული მოთხოვნის გაშვება" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Startup" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "დასასრული" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "სრული ჩასმები" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "ცხრილის არასწორი სახელი" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12389,7 +12415,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12403,154 +12429,154 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "რედაქტირების რეჟიმი" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "პირდაპირი ბმულები" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "ახალი ველის დამატება" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Rename database to" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ცხრილის პარამეტრები" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "უსაფრთხოება" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "ცხრილის არასწორი სახელი" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12578,44 +12604,44 @@ msgstr "Table %1$s has been created." msgid "Edit trigger" msgstr "ახალი სერვერის დამატება" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "ტრიგერები" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "დრო" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "ცხრილის არასწორი სახელი" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "ცხრილის არასწორი სახელი" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "ცხრილის არასწორი სახელი" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "ცხრილის არასწორი სახელი" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12762,498 +12788,463 @@ msgstr "სიმბოლოთა ნაკრებები და კოლ msgid "Databases statistics" msgstr "მონაცემთა ბაზების სტატისტიკა" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "არაა" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Persistent connections" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Persistent connections" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Routines" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "ადმინისტრირება" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "გლობალულრი" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL authentication" msgstr "Host authentication order" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Host authentication order" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Host authentication order" -msgid "Native MySQL Authentication" -msgstr "Host authentication order" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "მომხმარებლის სახელი" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "ჟურნალის სახელი" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication type" msgid "Authentication Plugin" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Password Hashing" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "მომხმარებლის დამატება" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "View %s has been dropped" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "ნებისმიერი" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "გლობალულრი" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "სერვერის რედაქტირება" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… ძველის შენახვა." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13261,119 +13252,105 @@ msgstr "" "… ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "პრივილეგიების შემოწმება" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Remove selected users" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "პრივილეგიები" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "მომხმარებელი" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "მომხმარებელი" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "მომხმარებლის მიმოხილვა" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13382,7 +13359,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13391,11 +13368,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." @@ -13695,13 +13672,13 @@ msgstr "ბრძანება" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "ფაილები" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13731,12 +13708,12 @@ msgstr "წუთში" msgid "per second:" msgstr "წამში" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13768,35 +13745,35 @@ msgstr "Show open tables" msgid "Related links:" msgstr "Relations" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13804,78 +13781,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13883,7 +13860,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13891,42 +13868,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13934,33 +13911,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13969,244 +13946,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14214,99 +14191,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14314,18 +14291,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14333,13 +14310,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14376,49 +14353,49 @@ msgstr "მონაცემთა ბაზა მომხმარებლ msgid "Table level tabs" msgstr "ცხრილის სახელი" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "ხედო" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "მომხმარებლის დამატება" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "პრივილეგიები არაა." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "სვეტების სახელები" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "სერვერის ვერსია" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14530,7 +14507,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "SQL query history table" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "გაწმენდა" @@ -14621,105 +14598,105 @@ msgstr "" msgid "Version" msgstr "სპარსული" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "შეიქმნა" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Create relation" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "სნეიფშუთის სტრუქტურა" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "მონაცემთა ბაზები არაა" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, fuzzy, php-format msgid "Export as %s" msgstr "Export defaults" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "მონაცემები" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14727,78 +14704,78 @@ msgctxt "None for default" msgid "None" msgstr "არაა" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Create relation" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "ნანახი ცხრილები" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Allows inserting and replacing data." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "ვერსია" @@ -14808,7 +14785,7 @@ msgstr "ვერსია" msgid "Manage your settings" msgstr "Other core settings" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14836,7 +14813,7 @@ msgstr "შეცდომა ZIP არქივში:" msgid "No files found inside ZIP archive!" msgstr "ZIP არქივში ფაილების პოვნა ვერ მოხერხდა!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14846,90 +14823,90 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Submitted form contains errors" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin-ის დოკუმენტაცია" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Could not load default configuration from: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "ფაილების შემოტანა" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Other core settings" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "სერვერის კონფიგურაცია" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "ფაილის სახის შენახვა" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14937,45 +14914,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "პრივილეგიები არაა" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "ჩამოტვირთვა" @@ -14983,11 +14960,11 @@ msgstr "ჩამოტვირთვა" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " @@ -15004,90 +14981,89 @@ msgstr "" "html#setup_script]documentation[/a]. Otherwise you will be only able to " "download or display it." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "დაუცველი კავშირი" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Configuration file" msgid "Configuration saved." msgstr "კონფიგურაციის ფაილი" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration file" msgid "Configuration not saved!" msgstr "კონფიგურაციის ფაილი" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "განხილვა" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "ფარული შეტყობინებების ჩვენება (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "ახალი სერვერი" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "ნაგულისხმები ენა" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- არაა -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "ნაგულისხმები სერვერი" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "სტრიქონის დასასრული" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "ჩვენება" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "ჩატვირთვა" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin-ის სათაო გვერდი" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "შემოწირულობა" @@ -15123,21 +15099,21 @@ msgstr "შეცდომების იგნორირება" msgid "Show form" msgstr "ფორმის ჩვენება" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, fuzzy, php-format #| msgid "" #| " are using subversion version, run [kbd]svn update[/kbd] :-)[br]The est " @@ -15149,7 +15125,7 @@ msgstr "" "You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The " "latest stable version is %s, released on %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -15164,12 +15140,12 @@ msgstr "მონაცემთა ბაზები არაა" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "ცხრილი %s უკვე არსებობს!" @@ -15182,35 +15158,35 @@ msgstr "" msgid "Invalid table name" msgstr "ცხრილის არასწორი სახელი" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "Remove selected users" msgid "No row selected." msgstr "Remove selected users" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "%s databases have been dropped successfully." msgid "Tracking versions deleted successfully." msgstr "%s databases have been dropped successfully." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "Remove selected users" msgid "No versions selected." msgstr "Remove selected users" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15435,7 +15411,7 @@ msgid "List of available transformations and their options" msgstr "ხელმისაწვდომი გარდაქმნები" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15457,7 +15433,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15998,17 +15974,17 @@ msgid "Size" msgstr "ზომა" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "შეიქმნა" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "უკანასკნელი განახლება" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -16043,6 +16019,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Allows inserting and replacing data." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16065,10 +16047,47 @@ msgstr "პრივილეგიების დამატება შე msgid "Add privileges on the following table:" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "არაა" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Remove selected users" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" @@ -16104,7 +16123,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16300,7 +16319,7 @@ msgstr "მომხმარებელი" msgid "Comment:" msgstr "კომენტარი" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16338,32 +16357,32 @@ msgstr "" msgid "Foreign key constraint" msgstr "Foreign key limit" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Foreign key limit" msgid "+ Add constraint" msgstr "Foreign key limit" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Internal relations" msgid "Internal relations" msgstr "Internal relations" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Internal relations" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16431,13 +16450,13 @@ msgstr "საწყისი მდებარეობა" msgid "Replaced string" msgstr "Relations" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "რეპლიკაცია" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "SQL Query box" msgid "Additional search criteria" @@ -16527,7 +16546,7 @@ msgid "at beginning of table" msgstr "ცხრილის დასაწყისში" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16563,30 +16582,30 @@ msgstr "სტრიქონის სიგრძე" msgid "Index length" msgstr "სტრიქონის სიგრძე" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "დაყოფილი" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "partitioned" msgid "Edit partitioning" msgstr "დაყოფილი" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "ხედის ამობეჭდვა" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "ადგილის გამოყენება" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "ეფექტური" @@ -16616,33 +16635,33 @@ msgstr "ცხრილის სტრუქტურის შეთავა msgid "Track view" msgstr "ცხრილის შემოწმება" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Show statistics" msgid "Row statistics" msgstr "სტატისტიკის ჩევნება" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "სტატიკური" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "დინამიური" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "დაყოფილი" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "სტრიქონის სიგრძე" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "სტრიქონის ზომა" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16656,52 +16675,52 @@ msgstr "Table %s has been dropped" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "MIME-ის ხელმისაწვდომი ტიპები" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "ხელმისაწვდომი გარდაქმნები" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "ხელმისაწვდომი გარდაქმნები" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "აღწერილობა" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "შეცვლა" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "პროფილი განახლდა." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16774,7 +16793,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16799,19 +16818,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "Remove selected users" msgid "An alias was expected." msgstr "Remove selected users" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16868,27 +16887,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Table %1$s has been created." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ცხრილის დასაწყისში" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16905,10 +16924,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "ცხრილის დასაწყისში" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16953,7 +16978,7 @@ msgstr "" msgid "strict error" msgstr "შეცდომების იგნორირება" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18168,6 +18193,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Host authentication order" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Host authentication order" + #, fuzzy #~| msgid "Connect without password" #~ msgid "Try to connect without password." diff --git a/po/kab.po b/po/kab.po index aea12c2c8c..dc50853ce2 100644 --- a/po/kab.po +++ b/po/kab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-08-02 17:22+0000\n" "Last-Translator: Belkacem Mohammed \n" "Language-Team: Kabyle Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2322,105 +2327,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2429,349 +2434,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2832,20 +2857,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3040,7 +3065,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3084,48 +3109,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3219,110 +3244,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3342,30 +3362,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3374,7 +3394,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3383,8 +3403,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3406,10 +3426,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3449,102 +3469,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3552,97 +3572,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3651,20 +3671,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3674,78 +3694,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3769,11 +3789,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3792,14 +3812,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3808,8 +3829,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3817,45 +3838,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3871,16 +3892,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3888,20 +3909,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3910,53 +3931,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4004,27 +4025,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4086,7 +4107,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4140,76 +4161,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4217,19 +4238,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4496,7 +4517,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4511,126 +4532,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4644,7 +4665,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4652,12 +4673,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4665,7 +4686,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4702,22 +4723,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4726,7 +4747,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4743,11 +4764,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4755,33 +4776,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4789,20 +4810,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5327,7 +5348,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5427,12 +5448,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5442,7 +5463,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5567,7 +5588,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5580,7 +5601,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5589,7 +5610,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5619,7 +5640,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5785,7 +5806,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6616,7 +6637,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7251,7 +7272,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7259,10 +7280,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7397,24 +7418,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7428,12 +7449,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7442,7 +7463,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7456,42 +7477,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7516,32 +7537,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7584,7 +7605,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7601,12 +7622,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7627,13 +7648,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7653,165 +7674,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7819,98 +7844,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8307,86 +8332,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8397,84 +8422,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8485,31 +8511,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8518,14 +8544,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8570,8 +8596,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8612,17 +8638,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8637,7 +8663,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8656,7 +8682,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8755,11 +8781,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -8993,8 +9019,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9038,177 +9064,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9235,25 +9261,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9261,7 +9287,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9286,15 +9312,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9355,7 +9381,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9364,7 +9390,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9372,8 +9398,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9459,7 +9485,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9953,7 +9979,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10273,57 +10299,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10332,293 +10358,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10639,7 +10665,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10648,75 +10674,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10737,7 +10763,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10749,132 +10775,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10896,32 +10922,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11037,565 +11063,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11604,7 +11587,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11613,11 +11596,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11884,12 +11867,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11910,12 +11893,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -11939,33 +11922,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11973,78 +11956,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12052,7 +12035,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12060,42 +12043,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12103,33 +12086,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12138,242 +12121,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12381,99 +12364,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12481,18 +12464,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12500,11 +12483,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12533,37 +12516,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12658,7 +12641,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12743,172 +12726,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12916,7 +12899,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12940,7 +12923,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12948,78 +12931,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13027,45 +13010,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13073,97 +13056,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13199,28 +13181,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13233,12 +13215,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13251,29 +13233,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13439,7 +13421,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13457,7 +13439,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13885,17 +13867,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13930,6 +13912,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13946,10 +13932,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13980,7 +13999,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14134,7 +14153,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14166,26 +14185,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14238,11 +14257,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14311,7 +14330,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14335,24 +14354,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14377,31 +14396,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14414,44 +14433,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14519,7 +14538,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14540,17 +14559,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14602,24 +14621,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14636,10 +14655,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14676,7 +14699,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/kk.po b/po/kk.po index 61a4b40323..8a07628019 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "Бағана" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Бақылаудың есептемесі" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Дайын" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сақтау" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Бағана" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Бағана" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Көшіру" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Нүкте" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Сызық" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Көпбұрыш" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Ішкі пішін" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Сыртқы пішін" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Сыртқы кілтті таңдаңыз" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Save" msgid "Save page" msgstr "Сақтау" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save" msgid "Save page as" msgstr "Сақтау" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Жою" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Бiрлiк" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Байланыс схемасын түзету немесе экспорттау" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баған мәні" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Белгіні алу/орнату үшін шертіңіз" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "Атын көшіру үшін өріске тышқанмен екі рет шерту жасаңыз" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Бәрін көрсету" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Сызық" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "Импорт" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Барлығын ерекшелеу" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Сілтемеге өту" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Баған атын көшіру" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Шығару" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Тағы" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бәрін көрсету" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Индекстерді жасыру" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "Индекстерді көрсету" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2533,117 +2538,117 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "Соңғы тұрақты болжам:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Баптауын өзгерту" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Бәрін көрсету" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Елемеу" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Кестеге түсініктеме" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2652,359 +2657,379 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Дерекқорының көшірілуі" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Кестениң префиксін ауыстыру" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Кестениң префиксін ауыстыру" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Кестені префикс пен бірге көшіру" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Алдыңғы" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Келесі" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Бүгін" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Қаңтар" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Ақпан" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Наурыз" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Сәуір" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Мамыр" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Маусым" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Шілде" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Тамыз" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Қыркүйек" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Қазан" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Қараша" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Жел" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Жексенбі" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Дүйсенбі" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Сейсенбі" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Сәрсенбі" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Бейсенбі" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Жұма" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Сенбі" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Сен" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Жк" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Дс" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Сс" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Бс" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Жм" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Сн" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Апт" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Сағат" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Минут" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Секунд" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Барлығын ерекшелеу" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please enter at least {0} characters" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Қате" @@ -3065,20 +3090,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Салыстыру" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3273,7 +3298,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "белгісіз" @@ -3322,52 +3347,52 @@ msgstr "" msgid "Font size" msgstr "Қарiп өлшемi" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete" msgid "No bookmarks" msgstr "Жою" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to set configured collation connection!" msgstr "Локальды монитордың баптауы үйлеспеуде" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3475,74 +3500,74 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "%s дерекқорына SQL сұранысы:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Сұранысты жіберу" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Іздеу" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete" msgid "New bookmark" msgstr "Жою" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete" msgid "Create bookmark" msgstr "Жою" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Delete" msgid "Update bookmark" msgstr "Жою" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete" msgid "Delete bookmark" msgstr "Жою" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "кез-келген сөз" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "барлық сөздер" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "дәл сәйкестiк" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "жүйелі түрде айтылу" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s іздеу нәтижесі:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Барлығы: %s сәйкестік" msgstr[1] "Барлығы: %s сәйкестіктер" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -3551,48 +3576,43 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s кестедегi сәйкестiк %2$s" msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Шолу" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Дерекқорынан іздеу" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Іздеу үшін сөз немесе мағына (топтық таңба \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Сайт бойынша іздеу:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Сөз, бос орынмен бөлінеді (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Кесте бойынша:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Eрекшеленгендерді алып тастау" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Бағана бойынша:" @@ -3616,30 +3636,30 @@ msgstr "Сүзгі" msgid "Search this table" msgstr "Дерекқорынан іздеу" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3648,7 +3668,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3657,8 +3677,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3680,10 +3700,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3725,111 +3745,111 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "Table %s has been emptied." msgid "The row has been deleted." msgstr "%s кестесі аластанды" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "SQL-сұранысы сәтті орындалды" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "%d table(s)" msgid "%d total" msgstr "%d Кесте(лер)" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Белгi соғылғандарды:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Барлығын белгілеу" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Links to" msgid "Link not found!" msgstr "Сілтемелер" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3837,103 +3857,103 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Импорт" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Файлды жүктеу, оның кеңейтілім салдарынан тоқтатылды." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Файлды жүктеу кезіндегі белгісіз қате." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Файлды оқу мүмкін емес" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Жүктелген файлды ауыстыру кезіндегі қате." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Жүктелген файлды оқу(ауыстыру) мүмкін емес." -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Баспаға шығару түрі" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3942,20 +3962,20 @@ msgid "No index defined!" msgstr "Индексі анықталмаған!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Индекстер" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3965,78 +3985,78 @@ msgstr "Индекстер" msgid "Action" msgstr "Әрекет" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Индекс атауы" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Бірегей" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Қапталған" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Пікірлеу" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Индекс %s жойылған болатын." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Жою" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Бет номері:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Тіл" @@ -4060,11 +4080,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4083,14 +4103,15 @@ msgid "View" msgstr "Түр" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4099,8 +4120,8 @@ msgid "Table" msgstr "Кесте" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4108,45 +4129,45 @@ msgstr "Кесте" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Іздеу" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4162,16 +4183,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4179,22 +4200,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add columns" msgid "Central columns" msgstr "Бағаналар қосу" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Дерекқоры" @@ -4203,53 +4224,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4309,27 +4330,27 @@ msgstr "Қадағаланатын кестелер" msgid "Favorites" msgstr "Қадағаланатын кестелер" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4393,7 +4414,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4447,82 +4468,82 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, fuzzy, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - келісім бойынша орнатылған MySQL серверінің кесте типі" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Inside tables:" msgid "Unknown table status:" msgstr "Кесте бойынша:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Search in database" msgid "Invalid database:" msgstr "Дерекқорынан іздеу" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "Кесте бойынша:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4530,19 +4551,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4809,7 +4830,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Linestring" msgctxt "string types" @@ -4826,70 +4847,70 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Құрылған" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Сұранысты жіберу" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Құрылған" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4897,63 +4918,63 @@ msgid "Edit inline" msgstr "Индексті өзгерту" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Тазарту" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4967,7 +4988,7 @@ msgstr "Минутқа" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "сағатқа" @@ -4975,14 +4996,14 @@ msgstr "сағатқа" msgid "per day" msgstr "күнге" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Іздеу" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4990,7 +5011,7 @@ msgstr "Іздеу" msgid "Description" msgstr "Сипаттама" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Осы мәнді қолданыңыз" @@ -5029,22 +5050,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -5053,7 +5074,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5074,13 +5095,13 @@ msgstr "" msgid "Select a column." msgstr "Бағандарды Қосу/Өшіру" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add/Delete columns" msgid "Add new column" msgstr "Бағандарды Қосу/Өшіру" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5088,34 +5109,34 @@ msgstr "Бағандарды Қосу/Өшіру" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server:" msgid "Server %d" msgstr "Сервер:" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5123,20 +5144,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5679,7 +5700,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5785,12 +5806,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5800,7 +5821,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5925,7 +5946,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5940,7 +5961,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қосу" @@ -5949,7 +5970,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5979,7 +6000,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Қосу %s" @@ -6153,7 +6174,7 @@ msgid "Customize the navigation tree." msgstr "Индекстерді көрсету" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -7023,7 +7044,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7672,7 +7693,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7680,10 +7701,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7824,24 +7845,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s кестесі аластанды." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "%s көрсетілімі жойылған" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -7856,12 +7877,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7870,7 +7891,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7884,42 +7905,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s дерекқоры құрылды." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Қатарлар" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Барлығы" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7946,34 +7967,34 @@ msgstr "" msgid "Enable statistics" msgstr "Сұраныстардың статистикасы" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "Мәліметтер жоқ" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8026,7 +8047,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -8043,12 +8064,12 @@ msgstr "Өзгерту" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -8071,13 +8092,13 @@ msgstr "" msgid "Distinct values" msgstr "Осы мәнді қолданыңыз" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8097,181 +8118,185 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Құпия сөз:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "Құпия сөз:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export" msgid "Export templates:" msgstr "Экспорт" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "The database name is empty!" msgid "Template name" msgstr "Дерекқорының аты көрсетілмеген!" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Жаңартылған" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "Барлығын ерекшелеу" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export" msgid "Export method:" msgstr "Экспорт" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Дерекқоры" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Table" msgid "Tables:" msgstr "Кесте" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8279,112 +8304,112 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Export tables as separate files" msgstr "Әрбір мәнді жеке өріске енгізіңіз" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "Барлығын ерекшелеу" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "Барлығын ерекшелеу" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "The database name is empty!" msgid "New database name" msgstr "Дерекқорының аты көрсетілмеген!" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "Inside tables:" msgid "New table name" msgstr "Кесте бойынша:" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "Баған атын көшіру" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Баған атын көшіру" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8783,13 +8808,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файлды сақтау үшін %s дисктегі бос орын жеткіліксіз." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8797,74 +8822,74 @@ msgstr "" "Файл %s қазірдің өзінде серверде қолданыста бар, атын өзгертіңіз немесе " "қайта жазу параметрін қосыңыз." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "%s файлын веб-серверге сақтау үшін құқық жеткіліксіз." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "%s файлына дамп сақталынды." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8875,84 +8900,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Немесе" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8963,31 +8989,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Тек құрылымы ғана" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Құрылымы және мәліметтері" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Тек мәліметтер ғана" @@ -8998,14 +9024,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT қосу" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Шектеу қою" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Reloading Privileges" @@ -9060,8 +9086,8 @@ msgstr "Процесстер" msgid "Views:" msgstr "Түр" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Көрсету" @@ -9106,17 +9132,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9132,7 +9158,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Бағаналар қосу" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9153,7 +9179,7 @@ msgstr "" msgid "Database operations" msgstr "Дерекқорына түсініктеме: " -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show indexes" msgid "Show hidden items" @@ -9256,13 +9282,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete columns" msgid "Select one…" msgstr "Бағандарды Қосу/Өшіру" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy msgid "No such column" msgstr "Бағана іші" @@ -9511,8 +9537,8 @@ msgid "Rename database to" msgstr "Дерекқорының атауын қайта қою." #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9558,181 +9584,181 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Кестеге түсініктеме" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Кестенiң талдауы" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Кестені тексеру" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Кестені тексеру" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Кестені тиімді ету" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Кестені калпына келтіру" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Жабу" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9759,25 +9785,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s-ге қош келдіңіз" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9785,7 +9811,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9812,15 +9838,15 @@ msgstr "Қолданушы:" msgid "Server Choice:" msgstr "Сервер:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy msgid "You are not allowed to log in to this MySQL server!" msgstr "%s - келісім бойынша орнатылған MySQL серверінің кесте типі" @@ -9882,7 +9908,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9891,7 +9917,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9899,8 +9925,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9988,7 +10014,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10525,7 +10551,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10863,57 +10889,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10922,301 +10948,301 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Replace table prefix" msgid "Master connection:" msgstr "Кестениң префиксін ауыстыру" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "Username:" msgid "User name:" msgstr "Қолданушы:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Password:" msgid "Generate password:" msgstr "Құпия сөз:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Қате" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11237,7 +11263,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11246,75 +11272,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -11335,7 +11361,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -11347,132 +11373,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11494,32 +11520,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11640,591 +11666,546 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Replace table prefix" msgid "Does not require SSL-encrypted connections." msgstr "Кестениң префиксін ауыстыру" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Replace table prefix" msgid "Requires SSL-encrypted connections." msgstr "Кестениң префиксін ауыстыру" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Password:" msgid "SHA256 password authentication" msgstr "Құпия сөз:" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "Қолданушы:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Add constraints" msgid "Host name" msgstr "Шектеу қою" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Current settings" msgid "Authentication Plugin" msgstr "Ағымдағы баптау" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Құпия сөз:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Қолданушыны қосу" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Дерекқорына түсініктеме: " -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Reloading Privileges" msgid "Routine-specific privileges" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Removing Selected Users" -msgid "Remove selected user accounts" -msgstr "Таңдалынған қолдаушыларды жою" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12233,7 +12214,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12242,11 +12223,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12517,12 +12498,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -12551,12 +12532,12 @@ msgstr "Минутқа" msgid "per second:" msgstr "секундке" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12580,33 +12561,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12614,78 +12595,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12693,7 +12674,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12701,42 +12682,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12744,33 +12725,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12779,242 +12760,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13022,99 +13003,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13122,18 +13103,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13141,11 +13122,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13180,47 +13161,47 @@ msgstr "Дерекқорына түсініктеме: " msgid "Table level tabs" msgstr "Кестеге түсініктеме" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "in use" msgid "View users" msgstr "қолданыста" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Қолданушыны қосу" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Username:" msgid "Group name:" msgstr "Қолданушы:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Current settings" msgid "Server-level tabs" msgstr "Ағымдағы баптау" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database comment" msgid "Database-level tabs" msgstr "Дерекқорына түсініктеме: " -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13330,7 +13311,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "%s дерекқорына SQL сұранысы:" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -13418,176 +13399,176 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Құрылған" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Жаңартылған" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "Соңғы нұсқа" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Бақылаудың есептемесі" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Құрылым түсірілімі" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "қосулы" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "өшірулі" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Бақылауға болмайтын кестелер" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Кестені бақылау" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Қадағаланатын кестелер" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Соңғы нұсқа" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting" msgid "Delete tracking" msgstr "Жою" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Нұсқа" @@ -13595,7 +13576,7 @@ msgstr "Нұсқа" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13619,7 +13600,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13627,80 +13608,80 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin құжаттамасы" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13708,45 +13689,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13754,97 +13735,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13880,28 +13860,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13914,12 +13894,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13932,35 +13912,35 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Бірде-бір қатар таңдалынбады" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Tracking versions deleted successfully." msgstr "SQL-сұранысы сәтті орындалды" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Бірде-бір қатар таңдалынбады" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14154,7 +14134,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -14172,7 +14152,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -14663,17 +14643,17 @@ msgid "Size" msgstr "Мөлшері" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Құру" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Соңғы жаңартылым" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Соңғы тексерім" @@ -14708,6 +14688,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting" +msgid "Delete settings " +msgstr "Жою" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14724,10 +14710,45 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Removing Selected Users" +msgid "Remove selected user accounts" +msgstr "Таңдалынған қолдаушыларды жою" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14760,7 +14781,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14930,7 +14951,7 @@ msgstr "Қолданушы:" msgid "Comment:" msgstr "Пікірлеу" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14968,30 +14989,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Шектеу қою" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Table %s has been emptied." msgid "Internal relations" msgstr "%s кестесі аластанды" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Choose column to display:" @@ -15055,11 +15076,11 @@ msgstr "Сызық" msgid "Replaced string" msgstr "Кестениң префиксін ауыстыру" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -15140,7 +15161,7 @@ msgid "at beginning of table" msgstr "Кестениң префиксін ауыстыру" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -15170,28 +15191,28 @@ msgstr "Сызық" msgid "Index length" msgstr "Индекстер" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Description" msgid "Partition table" msgstr "Сипаттама" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit Index" msgid "Edit partitioning" msgstr "Индексті өзгерту" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -15221,33 +15242,33 @@ msgstr "Мәлімет қорлары" msgid "Track view" msgstr "Кестені бақылау" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Query statistics" msgid "Row statistics" msgstr "Сұраныстардың статистикасы" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15260,48 +15281,48 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Table comments" msgid "Available browser display transformations" msgstr "Кестеге түсініктеме:" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Бақылаудың есептемесі" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -15374,7 +15395,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15399,19 +15420,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." msgstr "Бірде-бір қатар таңдалынбады" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15468,26 +15489,26 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "Replace table prefix" msgid "Unexpected beginning of statement." msgstr "Кестениң префиксін ауыстыру" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15504,10 +15525,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Replace table prefix" +msgid "Unexpected ordering of clauses." +msgstr "Кестениң префиксін ауыстыру" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15550,7 +15577,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/km.po b/po/km.po index 749f9d06db..2ec388f410 100644 --- a/po/km.po +++ b/po/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Central Khmer Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "រួម​ចំណែក" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Reload page" msgid "Save page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Reload page" msgid "Save page as" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Reload page" msgid "Open page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Reload page" msgid "Delete page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "បោះបង់" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "នាំចូល" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2433,111 +2438,111 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "តើ​អ្នក​ពិត​ជា​លុប​ការ​ស្វែងរក \"%s\" មែនទេ?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2546,379 +2551,399 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "No databases selected." msgid "Copy tables to" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2979,20 +3004,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3187,7 +3212,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3231,49 +3256,49 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "New bookmark" msgid "No bookmarks" msgstr "បង្កើត​ចំណាំ​ថ្មី" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3367,112 +3392,107 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "បង្កើត​ចំណាំ​ថ្មី" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "បង្កើត​ចំណាំ" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "ធ្វើ​បច្ចុប្បន្នភាព​ចំណាំ" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "មិនរើសទាំងអស់" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3492,30 +3512,30 @@ msgstr "ត្រង​ជួរ​ដេក" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3524,7 +3544,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3533,8 +3553,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3556,10 +3576,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3601,104 +3621,104 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Track table" msgid "Check all" msgstr "តាមដាន​តារាង" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3706,99 +3726,99 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "នាំចូល" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "មិន​អាច​អាន​ឯកសារ​បាន!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3807,20 +3827,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3830,78 +3850,78 @@ msgstr "" msgid "Action" msgstr "សកម្មភាព" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "លុប" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3925,11 +3945,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3948,14 +3968,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3964,8 +3985,8 @@ msgid "Table" msgstr "តារាង" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3973,45 +3994,45 @@ msgstr "តារាង" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4027,16 +4048,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4044,20 +4065,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -4066,53 +4087,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4160,27 +4181,27 @@ msgstr "តារាង​ដែល​ពេញ​ចិត្ត" msgid "Favorites" msgstr "ដែល​ពេញ​ចិត្ត" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4242,7 +4263,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4296,76 +4317,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4373,19 +4394,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4652,7 +4673,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4667,68 +4688,68 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "បានបង្កើត" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "បានបង្កើត" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4736,63 +4757,63 @@ msgid "Edit inline" msgstr "កែ​សន្ទស្សន៍" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4806,7 +4827,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4814,12 +4835,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4827,7 +4848,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4864,22 +4885,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4890,7 +4911,7 @@ msgstr "" msgid "Attribute" msgstr "រួម​ចំណែក" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4911,11 +4932,11 @@ msgstr "" msgid "Select a column." msgstr "ជ្រើសទាំងអស់" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4923,33 +4944,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4957,20 +4978,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5507,7 +5528,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5609,12 +5630,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5624,7 +5645,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5749,7 +5770,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5762,7 +5783,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5771,7 +5792,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5801,7 +5822,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5969,7 +5990,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6804,7 +6825,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7445,7 +7466,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7453,10 +7474,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7591,24 +7612,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "បញ្ជី​ការ​ពេញ​ចិត្ត​គឺ​ពេញ​ហើយ!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7622,12 +7643,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7636,7 +7657,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7650,42 +7671,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "មូលដ្ឋាន​ទិន្នន័យ %1$s ត្រូវ​បាន​បង្កើត។" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "ជួរដេក" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7712,32 +7733,32 @@ msgstr "" msgid "Enable statistics" msgstr "បើក %s" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7779,7 +7800,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7796,12 +7817,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7822,13 +7843,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7848,177 +7869,181 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Invalid export type" msgid "Export templates:" msgstr "ប្រភេទ​នាំ​ចេញ​មិន​ត្រឹម​ត្រូវ" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "Reload page" msgid "New template:" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "The database name is empty!" msgid "Template name" msgstr "ឈ្មោះមូលដ្ឋានទិន្នន័យនៅទទេ!" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "បានធ្វើបច្ចុប្បន្នភាព" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "ជ្រើសទាំងអស់" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Database" msgid "Databases:" msgstr "មូលដ្ឋានទិន្នន័យ" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8026,104 +8051,104 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "ជ្រើសទាំងអស់" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "ជ្រើសទាំងអស់" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "The database name is empty!" msgid "New database name" msgstr "ឈ្មោះមូលដ្ឋានទិន្នន័យនៅទទេ!" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8522,86 +8547,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8612,84 +8637,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8700,31 +8726,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8733,14 +8759,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8785,8 +8811,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "បង្ហាញ" @@ -8828,17 +8854,17 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8853,7 +8879,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8872,7 +8898,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8971,13 +8997,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select All" msgid "Select one…" msgstr "ជ្រើសទាំងអស់" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9215,8 +9241,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9260,181 +9286,181 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Track table" msgid "Checksum table" msgstr "តាមដាន​តារាង" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "បិទ" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9461,25 +9487,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9487,7 +9513,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9512,15 +9538,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9581,7 +9607,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9590,7 +9616,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9598,8 +9624,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9685,7 +9711,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10185,7 +10211,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10517,57 +10543,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10576,297 +10602,297 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Connections" msgid "Master connection:" msgstr "ការ​តភ្ជាប់" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Change password" msgid "Generate password:" msgstr "ប្ដូរ​ពាក្យ​សម្ងាត់" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10887,7 +10913,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10896,75 +10922,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10985,7 +11011,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10997,131 +11023,131 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11143,32 +11169,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11289,573 +11315,528 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "ប្ដូរ​ពាក្យ​សម្ងាត់" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "មតិយោបល់​មូលដ្ឋាន​ទិន្នន័យ៖" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Index" msgid "Edit privileges" msgstr "កែ​សន្ទស្សន៍" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Removing Selected Users" -msgid "Remove selected user accounts" -msgstr "ការ​លុប​អ្នក​ប្រើ​ដែល​បាន​ជ្រើស" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11864,7 +11845,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11873,11 +11854,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12146,12 +12127,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -12174,12 +12155,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12203,33 +12184,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12237,78 +12218,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12316,7 +12297,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12324,42 +12305,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12367,33 +12348,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12402,242 +12383,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12645,99 +12626,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12745,18 +12726,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12764,11 +12745,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12797,37 +12778,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12922,7 +12903,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -13010,176 +12991,176 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "បានបង្កើត" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "បានធ្វើបច្ចុប្បន្នភាព" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "កំណែចុងក្រោយ" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "របាយការណ៍​តាមដាន" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "រូបភាព​រចនាសម្ព័ន្ធ" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "ដែល​សកម្ម" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ដែល​អសកម្ម" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "តារាង​ដែល​មិន​តាមដាន" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "តាមដាន​តារាង" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "តារាង​ដែល​តាមដាន" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "កំណែចុងក្រោយ" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "ការ​លុប​ទិន្នន័យ​តាមដាន" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "កំណែ" @@ -13187,7 +13168,7 @@ msgstr "កំណែ" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13211,7 +13192,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13219,78 +13200,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13298,45 +13279,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13344,97 +13325,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13470,28 +13450,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13504,12 +13484,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13522,33 +13502,33 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No databases selected." msgid "No row selected." msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No databases selected." msgid "No versions selected." msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13724,7 +13704,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13742,7 +13722,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Version information:" msgid "Input transformation" @@ -14199,17 +14179,17 @@ msgid "Size" msgstr "ទំហំ" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -14244,6 +14224,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "ការ​លុប​ទិន្នន័យ​តាមដាន" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14260,10 +14246,45 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Removing Selected Users" +msgid "Remove selected user accounts" +msgstr "ការ​លុប​អ្នក​ប្រើ​ដែល​បាន​ជ្រើស" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14294,7 +14315,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14452,7 +14473,7 @@ msgstr "អ្នកប្រើ៖" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14486,28 +14507,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add %s column(s) to index" msgid "+ Add constraint" msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14560,11 +14581,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14633,7 +14654,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14657,28 +14678,28 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Creation:" msgid "Partition table" msgstr "ការបង្កើត៖" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit Index" msgid "Edit partitioning" msgstr "កែ​សន្ទស្សន៍" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14705,31 +14726,31 @@ msgstr "" msgid "Track view" msgstr "តាមដាន​តារាង" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14742,44 +14763,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "The password is empty!" msgid "Password is too long!" @@ -14850,7 +14871,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14875,19 +14896,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14944,24 +14965,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14978,10 +14999,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15022,7 +15047,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/kn.po b/po/kn.po index 4b0251fb04..e6d4f8ca4e 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-07-24 13:05+0200\n" "Last-Translator: Shameem Ahmed A Mulla \n" "Language-Team: Kannada Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2330,105 +2335,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2437,351 +2442,371 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "No tables selected." msgid "Copy tables to" msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ." -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "ಜನವರಿ" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "ಫೆಬ್ರವರಿ" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "ಮಾರ್ಚ್" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "ಏಪ್ರಿಲ್" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "ಮೇ" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "ಜೂನ್" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "ಜುಲೈ" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "ಆಗಸ್ಟ್" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "ಸಪ್ಟೆಂಬರ್" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "ಅಕ್ಟೋಬರ್" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "ನವೆಂಬರ್" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "ಡಿಸೆಂಬರ್" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "ಜನ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "ಫೆಬ್ರು" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "ಮಾ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "ಏಪ್ರಿ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "ಮೇ" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "ಜೂ" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "ಜು" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "ಆಗ" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "ಸೆಪ್ಟೆಂ" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "ಅಕ್ಟೋ" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "ನವೆಂ" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "ಡಿಸೆಂ" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "ರವಿವಾರ" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "ಸೋಮವಾರ" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "ಮಂಗಳವಾರ" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "ಬುಧವಾರ" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "ಗುರುವಾರ" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "ಶುಕ್ರವಾರ" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "ಶನಿವಾರ" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "ರ" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "ಸೋ" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "ಮಂ" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "ಬು" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "ಗು" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "ಶು" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "ಶನಿ" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "ರ" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "ಸೋ" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "ಮಂ" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "ಬು" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "ಗು" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "ಶು" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "ಶನಿ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2842,20 +2867,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3050,7 +3075,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3094,48 +3119,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3229,112 +3254,107 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ಎಲ್ಲಾ ಆಯ್ಕೆರದ್ದುಮಾಡಿ" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3354,30 +3374,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3386,7 +3406,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3395,8 +3415,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3418,10 +3438,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3461,102 +3481,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3564,97 +3584,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3663,20 +3683,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3686,78 +3706,78 @@ msgstr "" msgid "Action" msgstr "ಕ್ರಿಯೆ" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "ენა" @@ -3781,11 +3801,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3804,14 +3824,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3820,8 +3841,8 @@ msgid "Table" msgstr "ಟೇಬಲ್" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3829,45 +3850,45 @@ msgstr "ಟೇಬಲ್" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3883,16 +3904,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3900,20 +3921,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3922,53 +3943,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4016,27 +4037,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4098,7 +4119,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4152,76 +4173,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4229,19 +4250,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4508,7 +4529,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4523,130 +4544,130 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "ರ" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "ಬಳಕೆದಾರರು" @@ -4660,7 +4681,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4668,12 +4689,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4681,7 +4702,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4718,22 +4739,22 @@ msgstr "ಹೌದು" msgid "NO" msgstr "ಯಾವುದೇ" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4742,7 +4763,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4759,11 +4780,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4771,33 +4792,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4805,20 +4826,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5345,7 +5366,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5445,12 +5466,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5460,7 +5481,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5585,7 +5606,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5598,7 +5619,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5607,7 +5628,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5637,7 +5658,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5803,7 +5824,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6634,7 +6655,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7269,7 +7290,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7277,10 +7298,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7415,24 +7436,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7446,12 +7467,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7460,7 +7481,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7474,42 +7495,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "ಡೇಟಾಬೇಸ್ %1$s ರಚಿಸಲಾಗಿದೆ." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "ಸಾಲುಗಳು" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7534,32 +7555,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7602,7 +7623,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7619,12 +7640,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7645,13 +7666,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7671,167 +7692,171 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Database Log" msgid "Databases:" msgstr "ಡೇಟಾಬೇಸ್ ದಾಖಲೆ" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7839,98 +7864,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8327,86 +8352,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8417,84 +8442,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8505,31 +8531,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8538,14 +8564,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8590,8 +8616,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "ತೋರಿಸು" @@ -8632,17 +8658,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8657,7 +8683,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8676,7 +8702,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8775,11 +8801,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9013,8 +9039,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9058,177 +9084,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9255,25 +9281,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9281,7 +9307,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9306,15 +9332,15 @@ msgstr "ಬಳಕೆಯ ಹೆಸರು:" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9375,7 +9401,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9384,7 +9410,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9392,8 +9418,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9479,7 +9505,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9973,7 +9999,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10293,57 +10319,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10352,293 +10378,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "ಬಳಕೆಯ ಹೆಸರು:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "ಬಳಕೆಯ ಹೆಸರು" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10659,7 +10685,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10668,75 +10694,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10757,7 +10783,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10769,132 +10795,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10916,32 +10942,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11060,569 +11086,526 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "ಬಳಕೆಯ ಹೆಸರು:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "User name" msgid "Host name" msgstr "ಬಳಕೆಯ ಹೆಸರು" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "ಸದಸ್ಯ" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11631,7 +11614,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11640,11 +11623,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11911,12 +11894,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11937,12 +11920,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -11966,33 +11949,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12000,78 +11983,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12079,7 +12062,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12087,42 +12070,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12130,33 +12113,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12165,242 +12148,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12408,99 +12391,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12508,18 +12491,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12527,11 +12510,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12560,37 +12543,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12685,7 +12668,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12770,172 +12753,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "ನವೀಕರಿಸಲಾಗಿದೆ" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "ಜಾಡೀಕರಣದ ವರದಿ" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "ರಚನೆಯ ಭಾವಚಿತ್ರ" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "ಸಕ್ರಿಯ" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ಸಕ್ರಿಯವಾಗಿಲ್ಲ" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "ಬಳಕೆಯ ಹೆಸರು" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "ಜಾಡೀಕರಣ ಮಾಡಲಾರದ ಕೋಷ್ಟಕಗಳು" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "ಕೋಷ್ಟಕಗಳನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಿ" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "ಕಂಡುಬರುವ ಕೋಷ್ಟಕಗಳು" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "ಕೊನೆಯ ಆವೃತ್ತಿ" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "ಜಾಡೀಕರಣ ಅಳಿಸು" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "ಆವೃತ್ತಿಗಳು" @@ -12943,7 +12926,7 @@ msgstr "ಆವೃತ್ತಿಗಳು" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12967,7 +12950,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12975,78 +12958,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13054,45 +13037,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13100,97 +13083,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13226,28 +13208,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13260,12 +13242,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13278,31 +13260,31 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No tables selected." msgid "No row selected." msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13472,7 +13454,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13490,7 +13472,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13921,17 +13903,17 @@ msgid "Size" msgstr "ಆಕಾರ" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13966,6 +13948,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "ಜಾಡೀಕರಣ ಅಳಿಸು" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13982,10 +13970,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14016,7 +14037,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14170,7 +14191,7 @@ msgstr "ವಿಶ್ಲೇಷಕ:" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14202,26 +14223,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14274,11 +14295,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14347,7 +14368,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14371,26 +14392,26 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Creation:" msgid "Partition table" msgstr "ಸೃಷ್ಟಿ:" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14415,31 +14436,31 @@ msgstr "" msgid "Track view" msgstr "ಮಾರ್ಗ ವೀಕ್ಷಣ" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14452,44 +14473,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14559,7 +14580,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14580,17 +14601,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14642,24 +14663,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14676,10 +14697,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14718,7 +14743,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/ko.po b/po/ko.po index 3a47118e75..5a5d2e9136 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-06 17:38+0000\n" "Last-Translator: Lee Joon Haeng \n" "Language-Team: Korean Are you sure you " "want to continue?" msgstr "컬럼 정의의 일부가 변경될 수도 있습니다.
계속하겠습니까?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "계속" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "기본키 추가" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "기본 키가 추가되었습니다." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "다음 단계로 가는 중…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "정규화의 첫번째 단계는 테이블 '%s'를 완성하는 것이다." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "단계의 끝" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "정규화의 두번째 단계 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "완료" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "부분 의존성 확인" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "선택된 부분의 의존성은 다음과 같음:" -#: js/messages.php:446 +#: js/messages.php:447 #, fuzzy msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " @@ -1944,19 +1949,19 @@ msgstr "" "참고: a, b -> d, f 는 컬럼 a와 컬럼 b의 결합된 값들이 컬럼 d와 컬럼 f의 값을 " "결정할 수 있다는 뜻입니다." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "부분 의존성이 선택되지 않았습니다!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "테이블의 데이터에 기초한 가능한 부분 의존성을 알려주세요" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "부분 의존성 목록을 숨김" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1964,166 +1969,166 @@ msgstr "" "잠시 기다리십시오! 데이터의 크기와 열의 갯수에 따라 수 초 가량 시간이 걸릴 " "수 있습니다." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "단계" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "다음 행동이 실행됩니다 :" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "컬럼%s을(를) 테이블%s로부터 DROP" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "다음 테이블을 생성" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "정규화의 세번째 단계 (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "이행 의존성 확인" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "선택된 의존성은 다음과 같다:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "의존성이 선택되지 않았습니다!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "저장" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "검색 조건 숨기기" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "검색 조건 보이기" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "범위 검색" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "열(컬럼) 최댓값:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "열(컬럼) 최솟값:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "최솟값:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "최댓값:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "찾기와 바꾸기 조건 숨김" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "찾기와 바꾸기 조건 보임" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "각 포인트는 데이터 행을 나타냅니다." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "포인트에 마우스를 올리면 라벨이 표시됩니다." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "확대하려면 마우스로 플롯의 한 영역을 선택하세요." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "줌 원래대로 보기 버튼을 클릭하면 원본 상태로 돌아갑니다." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "데이터 포인트(플롯 지점)를 클릭하면 행의 열람과 편집이 가능합니다." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "우측 하단 코너로 드래그하여 플롯을 확대할 수 있습니다." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "두 개의 열 선택" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "두 개의 서로다른 열 선택" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "데이터 포인트 내용" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "무시" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "복사" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "포인트" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "줄(열) 구분자" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "폴리곤" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "기하데이터" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "내부 원" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "외부 원" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "암호화 키를 복사하겠습니까?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "암호화 키" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2131,7 +2136,7 @@ msgstr "" "MySQL은 슬라이더로 선택되지 않는 추가값을 허용합니다; 값들을 직접 입력하길 원" "할 경우" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "" #| "MySQL accepts additional values not selectable by the slider; key in " @@ -2143,7 +2148,7 @@ msgstr "" "MySQL은 슬라이더로 선택되지 않는 추가값을 허용합니다; 값들을 직접 입력하길 원" "할 경우" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2151,24 +2156,24 @@ msgstr "" "이 페이지를 변경했다는것을 나타냅니다; 변경사항을 적용하지 않고 나갈 경우 확" "인 메시지가 표시 됩니다" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "참고키 선택" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "외래키 선택" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "기본키 혹은 유니크키를 선택하십시오!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2176,76 +2181,76 @@ msgstr "" "레이아웃의 변경을 저장하지 않았습니다. 저장하지 않으면, 변경사항이 손실됩니" "다. 이대로 계속 하시겠습니까?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "페이지 이름" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "페이지 저장" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "페이지를 다른 이름으로 저장" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "페이지 열기" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "페이지 삭제" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "제목 없음" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "계속할 페이지를 선택하세요" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "올바른 페이지 이름을 입력하세요" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "현재 페이지의 수정된 내용을 저장하겠습니까?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "페이지 삭제 성공" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "관계 스키마를 내보내기" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "컬럼 \"%s\"에 대한옵션 추가 ." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d 개의 개체가 생성되었습니다." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "확인" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "편집을 취소하려면 ESC를 누르세요." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2253,15 +2258,15 @@ msgstr "" "일부 데이터를 변경한 후 저장하지 않았습니다. 데이터를 저장하지 않고 페이지를 " "이동하기를 원합니까?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "재정렬하려면 드래그하세요." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "이 열의 값에 따라 결과를 정렬하려면 누르세요." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2271,26 +2276,26 @@ msgstr "" "
- Ctrl+Click 또는 Alt+Click (맥: Shift+Option+Click) 으로 ORDER BY 절로" "부터 이 컬럼 제거" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "선택/해제하려면 클릭하세요." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "칼럼명을 복사하려면 더블클릭하세요." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "칼럼보이기 여부를 바꾸려면
드롭다운 화살표를 클릭하세요." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "모두 보기" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2298,11 +2303,11 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 저장 시에 격자창 편집, 체크박" "스, 편집, 복사, 삭제 등의 기능이 정상적으로 동작하지 않을 수 있습니다." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "올바른 16진수 문자열을 입력하세요. 사용가능한 문자는 0-9, A-F 입니다." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2310,101 +2315,101 @@ msgstr "" "정말 모든 열을 보시겠습니까? 테이블 크기가 큰 경우 브라우저가 정지할 수 있습" "니다." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "원본 길이" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "취소" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "중지됨" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "성공" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "상태 가져오기" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "파일을 여기로 끌어오세요" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "데이터베이스를 먼저 선택하세요" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "인쇄" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "값을 더블클릭 하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "값을 클릭하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "다음 링크로 이동 :" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "컬럼 이름 복사." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "마우스 오른쪽버튼을 클릭하여 클립보드에 컬럼 이름을 복사할 수 있습니다." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "암호 생성" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "생성" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "더보기" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "패널 표시" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "패널 숨기기" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "숨겨진 탐색 트리의 항목보기." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "매인 패널에 링크" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "매인 패널에서 링크 해제" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "요청하신 페이지를 기록에서 찾을 수 없습니다. 만기 되었을 수도 있습니다." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2413,47 +2418,47 @@ msgstr "" "phpMyAdmin 업그레이드가 필요합니다. 최신버전은 %s이며 %s에 릴리즈 되었습니다." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", 최신 안정 버전:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "최신버전" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "뷰 생성" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "오류 보고서 전송" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "오류 보고서 제출" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "치명적인 자바스크립트 오류 발생. 오류를 전송할까요?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "보고서 설정 변경" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "보고서 상세 보기" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "PHP의 실행시간 제한에 걸려 내보내기가 완료되지 않았습니다!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2462,58 +2467,58 @@ msgstr "" "경고: 현재 페이지의 폼 필드는 %d개가 넘습니다. 폼이 전송될 때 PHP의 " "max_input_vars 설정에 의해 일부 필드가 손실될 수 있습니다." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "서버 에러가 감지되었습니다!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "이 창의 아래쪽을 보세요." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "모두 무시" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "각 설정은 현재 전송중입니다. 기다려주세요." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "이 질의를 다시 실행합니까?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "정말 이 북마크를 삭제하겠습니까?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "SQL 디버그 정보를 가져오는 중 오류가 발생하였습니다." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s 쿼리를 %s 번 %s 초 안에 처리했습니다." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s개의 인수가 전달됨" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "매개변수 보이기" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "매개변수 숨기기" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "소요 시간 :" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2528,349 +2533,369 @@ msgstr "" "수 있습니다. 사파리에서는 일반적으로 \"개인 모드 브라우징\"에 의해 발생 됩니" "다." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "테이블을 복사합니다" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "테이블 접두사 추가" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "접두사로 테이블 교체" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "테이블에 접두사를 추가하여 복제" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "이전" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "오늘" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "1월" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "2월" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "3월" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "4월" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "5월" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "6월" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "7월" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "8월" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "9월" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "10월" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "11월" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "12월" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "일요일" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "월요일" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "목요일" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "금요일" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "주" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "없음" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "시" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "분" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "초" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "해당 항목은 필수 항목입니다" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "이 필드를 수정하세요" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "올바른 이메일 주소를 입력하세요" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "올바른 URL을 입력하세요" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "올바른 날짜를 입력하세요" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "올바른 날짜(ISO 형식)를 입력하세요" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "올바른 숫자를 입력하세요" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "올바른 신용 카드 번호를 입력하세요" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "숫자만 입력해 주세요" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "같은 값을 한번 더 입력하세요" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "{0} 글자 이하로 입력해 주세요" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "최소 {0} 글자 이상 입력해주세요" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "{0} 글자에서 {1} 글자 사이로 입력해 주세요" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "{0} 에서 {1} 사이의 값을 입력하세요" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "{0}과 같거나 작은 값을 입력하세요" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "{0}과 같거나 큰 값을 입력하세요" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "올바른 날짜 또는 시간을 입력하세요" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "올바른 HEX값을 입력하세요" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "오류" @@ -2933,20 +2958,20 @@ msgid "Charset" msgstr "문자셋" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "데이터정렬방식" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "바이너리" @@ -3141,7 +3166,7 @@ msgid "Czech-Slovak" msgstr "체코슬로바키아어" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "알수없음" @@ -3188,25 +3213,25 @@ msgstr "" msgid "Font size" msgstr "글꼴 크기" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "%1$d 북마크 보이기 (개인 및 공유)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "북마크 없음" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL 질의 콘솔" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "정렬 방식 연결을 구성하는데 실패했습니다!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3214,23 +3239,23 @@ msgstr "" "서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 " "않습니다)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "서버가 응답하지 않습니다." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "디렉토리를 포함하는 데이터베이스의 권한을 확인하십시오." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "자세히…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "연결의 파라미터가 없습니다!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "관리사용자(controluser, 설정에 정의됨)로서의 접속에 실패." @@ -3324,108 +3349,103 @@ msgstr "삽입:" msgid "Del:" msgstr "삭제:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "데이터베이스 %s에 SQL 질의:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "질의 실행" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "저장된 북마크 검색:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "새 북마크" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "북마크 생성" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "북마크 업데이트" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "북마크 삭제" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "최소 한 단어" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "모든 단어" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "정확한 문구" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "정규표현식" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\"의 검색 결과 %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "총: %s 건 일치" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s 에서 %1$s 건 일치" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "보기" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "데이터베이스 검색" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "찾을 단어, 값 (와일드카드: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "찾는 방식:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "단어는 스페이스(\" \")로 구분됩니다." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "검색할 테이블:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "모두 선택해제" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "검색할 컬럼:" @@ -3445,30 +3465,30 @@ msgstr "행 필터링" msgid "Search this table" msgstr "현재 테이블 검색" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "처음" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "이전" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "다음" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "마지막" @@ -3477,7 +3497,7 @@ msgstr "마지막" msgid "All" msgstr "모두" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "행 갯수:" @@ -3486,8 +3506,8 @@ msgstr "행 갯수:" msgid "Sort by key" msgstr "키로 정렬" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3509,10 +3529,10 @@ msgstr "키로 정렬" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "옵션" @@ -3552,29 +3572,29 @@ msgstr "잘 알려진 텍스트" msgid "Well Known Binary" msgstr "잘 알려진 바이너리" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "행을 삭제 하였습니다." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "강제로 끝냄" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "근사값입니다. [doc@faq3-11]FAQ 3.11[/doc]를 참조하세요." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "쿼리가 성공적으로 실행되었습니다." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3582,73 +3602,73 @@ msgid "" msgstr "" "이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s - %2s행 표시 중" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "총 %1$d개 중 현재 쿼리에 %2$d개" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "합계 %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "질의 실행시간 %01.4f 초." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "선택한 것을:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "모두 체크" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "클립보드에 복사하기" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "쿼리 결과 처리방법" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "차트 표시" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "GIS 데이터를 시각화" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "링크를 찾을 수 없습니다!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "없음" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "전각 가나로 변환" @@ -3656,72 +3676,72 @@ msgstr "전각 가나로 변환" msgid "Too many error messages, some are not displayed." msgstr "오류메시지가 너무 많기 때문에 일부 메시지는 출력되지 않습니다." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "보고" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "다음부터 보고를 자동으로 보내기" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "파일은 업로드된 파일이 아닙니다." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니" "다." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "파일업로드가 완전하지 않게 실행되었습니다." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "임시 폴더가 없습니다." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "디스크 쓰기에 실패했습니다." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "확장프로그램 때문에 파일 업로드가 중지되었습니다." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "파일은 심볼릭 링크입니다" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "파일을 읽을 수 없습니다!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "업로드된 파일을 이동시킬 수 없습니다. [doc@faq1-11]FAQ 1.11[/doc] 참조." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "업로드된 파일을 이동하는 중에 오류가 발생하였습니다." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "업로드한 파일을 읽을 수 없습니다." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3730,28 +3750,28 @@ msgstr "" "지원되지 않는 압축(%s)형식의 파일을 업로드하려고 시도했습니다. 지원이 구현되" "지 않았거나 설정에서 사용하지 않게 되어있습니다." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "%2$s구분에서 현재 실행중인 Git 리버젼 %1$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git정보가 없습니다!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "새 창으로 phpMyAdmin 열기" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "인쇄용 보기" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "클릭하여 페이지 상단으로 이동" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "이 페이지를 넘기려면 Javascript 사용을 허용해야 합니다!" @@ -3760,20 +3780,20 @@ msgid "No index defined!" msgstr "인덱스가 설정되지 않았습니다!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "인덱스" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3783,59 +3803,59 @@ msgstr "인덱스" msgid "Action" msgstr "실행" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "키 이름" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "고유값" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "압축됨" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "관계성" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "설명" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "기본 키를 제거했습니다." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "인덱스 %s 를 제거했습니다." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "삭제" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3843,19 +3863,19 @@ msgid "" msgstr "" "인덱스 %1$s와 %2$s는 동일한 것으로, 두 가지 중 하나는 제거해도 상관없습니다." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "페이지 번호:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "지원되지 않는 언어의 코드는 무시합니다." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "언어" @@ -3879,11 +3899,11 @@ msgstr "서버" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3902,14 +3922,15 @@ msgid "View" msgstr "뷰" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3918,8 +3939,8 @@ msgid "Table" msgstr "테이블" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3927,45 +3948,45 @@ msgstr "테이블" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "검색" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "삽입" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "권한" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "테이블 작업" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "SQL 명령어 트래킹" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3981,16 +4002,16 @@ msgstr "트리거" msgid "Database seems to be empty!" msgstr "데이터베이스가 비어있는 것 같습니다!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "질의 마법사" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "루틴" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3998,20 +4019,20 @@ msgstr "루틴" msgid "Events" msgstr "이벤트" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "디자이너" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "중심 열" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "데이터베이스" @@ -4020,51 +4041,51 @@ msgid "User accounts" msgstr "사용자 계정" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "바이너리 로그" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "복제" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "환경설정값" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "문자셋" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "엔진" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "플러그인" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d 열에 적용되었습니다." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d 열이 삭제되었습니다." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4111,27 +4132,27 @@ msgstr "즐겨찾기 테이블" msgid "Favorites" msgstr "즐겨찾기" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "즐겨찾기될 검색에 대한 이름을 입력하세요." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "즐겨찾기될 검색을 저장할 정보가 없습니다." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "같은 이름의 엔트리가 이미 존재합니다." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "검색을 삭제하기 위한 정보가 없습니다." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "검색을 불러오기 위한 정보가 없습니다." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "검색을 불러오는 중에 오류가 발생하였습니다." @@ -4193,7 +4214,7 @@ msgstr "열려있는 테이블 보기" msgid "Show slave hosts" msgstr "슬레이브 호스트 보기" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "마스터 상태 보기" @@ -4245,69 +4266,69 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 분" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "이 유형의 스토리지 엔진은 자세한 상태 정보를 제공하지 않습니다." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s 는 이 MySQL 서버에서 가능합니다." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 는 이 MySQL 서버에서 비활성화되었습니다." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "알 수 없는 테이블 상태:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "원본 데이터베이스 '%s'를 찾을 수 없습니다!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "목표 데이터베이스 '%s'를 찾을 수 없습니다!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "잘못된 데이터베이스:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "잘못된 테이블 이름:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "테이블 이름 %1$s를 %2$s(으)로 바꾸는데 실패했습니다!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "테이블 %1$s을(를) %2$s(으)로 이름을 변경하였습니다." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "테이블 UI 설정을 저장할 수 없습니다!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4316,7 +4337,7 @@ msgstr "" "테이블 UI 설정을 정리하는 데 실패했습니다. ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s 를 참조하세요)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4326,19 +4347,19 @@ msgstr "" "UI 특성 %s을(를) 저장할 수 없습니다. 새로고침후에도 이 변경은 반영되지 않을것" "입니다. 테이블 구조가 변경되었는지 확인 바랍니다." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "기본 키의 이름은 반드시 PRIMARY여야 합니다!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "인덱스 이름을 PRIMARY 로 바꿀 수 없습니다!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "인덱스 부분의 정의가 없음!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s의 외래키 생성 에러 (데이터 타입을 확인하세요)" @@ -4652,7 +4673,7 @@ msgid "Date and time" msgstr "날짜와 시간" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "문자열" @@ -4667,126 +4688,126 @@ msgstr "공간(좌표)형" msgid "Max: %s%s" msgstr "최대: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "정적 분석 :" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "분석 중에 %d개의 오류가 발생했습니다." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL 해석 생략" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "%s의 분석 설명" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "PHP 코드 없이 보기" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "쿼리 실행" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "PHP 코드 보기" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "다시 보기" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "프로파일링" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "인라인 편집" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "일" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %s분 %s초" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "매개 변수 누락:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "데이터베이스 \"%s\" 로 이동." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십시오" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "업로드 파일:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "웹 서버 업로드 디렉토리중 %s에서 선택:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "설정한 업로드 디렉토리에 접근할 수 없습니다." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "업로드할 파일이 없습니다!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "비우기" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "실행하기" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "사용자" @@ -4800,7 +4821,7 @@ msgstr "분당" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "시간당" @@ -4808,12 +4829,12 @@ msgstr "시간당" msgid "per day" msgstr "하루당" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "검색:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4821,7 +4842,7 @@ msgstr "검색:" msgid "Description" msgstr "설명" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "이 값을 사용합니다" @@ -4858,22 +4879,22 @@ msgstr "예" msgid "NO" msgstr "아니오" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "이름" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "길이/값*" @@ -4882,7 +4903,7 @@ msgstr "길이/값*" msgid "Attribute" msgstr "속성" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "자동 증분" @@ -4899,11 +4920,11 @@ msgstr "컬럼 추가" msgid "Select a column." msgstr "컬럼 선택." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "새 컬럼 추가" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4911,7 +4932,7 @@ msgstr "새 컬럼 추가" msgid "Attributes" msgstr "보기" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4920,26 +4941,26 @@ msgstr "" "PHP 설정에서 mbstring.func_overload를 활성화해야합니다. 이 옵션은 phpMyAdmin" "와 호환되지 않고 일부 데이터가 손상될 수 있습니다!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "잘못된 서버 인덱스: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "서버 %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "설정 파일에 잘못된 인증 방식 설정되어 있습니다.:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4947,20 +4968,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s를 %s 이상으로 업그레이드 하십시오." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "오류: 토큰 불일치" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 덮어쓰기 시도" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "어떤 공격을 받고있을 가능성이 있습니다" @@ -5530,7 +5551,7 @@ msgid "Compress on the fly" msgstr "즉시 압축" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "설정 파일" @@ -5635,12 +5656,12 @@ msgstr "" msgid "Maximum execution time" msgstr "최대 실행 시간" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "%s 구문 사용" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "파일로 저장" @@ -5650,7 +5671,7 @@ msgstr "파일 문자셋" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "형식" @@ -5775,7 +5796,7 @@ msgid "Save on server" msgstr "서버에 저장" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "기존 파일 덮어쓰기" @@ -5788,7 +5809,7 @@ msgid "Remember file name template" msgstr "파일명 템플릿을 저장하기" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" @@ -5797,7 +5818,7 @@ msgid "Enclose table and column names with backquotes" msgstr "테이블과 열 이름을 백쿼트(`)로 감싸기" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL 호환 모드" @@ -5827,7 +5848,7 @@ msgstr "phpMyAdmin 설정 공간으로부터 관련 메타데이터 내보내기 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s 추가" @@ -5995,7 +6016,7 @@ msgid "Customize the navigation tree." msgstr "내비게이션 트리 사용자화." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "서버" @@ -6869,7 +6890,7 @@ msgstr "HTTP 렐름" msgid "Authentication method to use." msgstr "사용할 인증 방법." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "인증 형식" @@ -7595,7 +7616,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "설정화면에서 개발자 탭을 가능하게 함" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "최신 버전 확인" @@ -7603,10 +7624,10 @@ msgstr "최신 버전 확인" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "phpMyAdmin 메인 화면에서 최근 버전 확인을 활성화함." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "버전 확인" @@ -7747,25 +7768,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument 형식" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "즐겨찾기 목록이 가득 찼습니다!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "테이블 %s 을 비웠습니다." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "뷰 %s가 제거되었습니다." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -7780,12 +7801,12 @@ msgid "Position" msgstr "위치" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "이벤트 종류" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "서버 아이디" @@ -7794,7 +7815,7 @@ msgid "Original position" msgstr "원본 위치" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "정보" @@ -7808,41 +7829,41 @@ msgstr "보여줄 쿼리 중략하기" msgid "Show Full Queries" msgstr "전체 쿼리 보기" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "데이터베이스가 없습니다" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d개의 데이터베이스를 삭제했습니다." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "행" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "전체 쿼리수" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "부담" @@ -7870,33 +7891,33 @@ msgstr "" msgid "Enable statistics" msgstr "통계 보기" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "서버의 환경설정" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "데이터를 가져오기 위한 SQL 쿼리가 없습니다." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "테이블에 숫자형 컬럼이 없어 표시할 수 없습니다." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "표시할 데이터 없음" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "테이블 %1$s 가 성공적으로 수정되었습니다." @@ -7940,7 +7961,7 @@ msgstr "컬럼을 이동했습니다." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "질의 오류" @@ -7958,12 +7979,12 @@ msgstr "변경" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "인덱스" @@ -7984,13 +8005,13 @@ msgstr "Fulltext" msgid "Distinct values" msgstr "중복되지 않은 값" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s 확장기능이 설치되지 않았습니다. PHP의 설정을 확인하십시오." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "변화 없음" @@ -8012,179 +8033,183 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "개요 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "암호 없음" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "암호:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "재입력:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "비밀번호 해싱:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "현재 서버에서 데이터베이스를 내보내기" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "데이터베이스 %s에서 테이블을 추출" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "\"%s\" 테이블 내보내기" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "내보내기 형식" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "파일명 템플릿:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "테이블 이름" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "만들기" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "파일명 템플릿:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "임시 디스크 비율" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "수정됨" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "테이블 선택" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "내보내기 방법:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "퀵 - 필요최소한의 옵션만을 표시함" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "커스텀 - 모든 옵션들을 표시함" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "데이터베이스:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "테이블:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "형식:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "형식 특정 옵션 :" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "인코딩 변환:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "행 :" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "일부 행을 덤프하기" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "시작행:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "모든 행을 덤프" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "출력:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "서버의 %s 디렉토리에 저장" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "파일명 템플릿:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@는 서버 이름이 됨" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@는 데이터베이스 이름이 됨" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@은 테이블 이름이 됨" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8195,103 +8220,103 @@ msgstr "" "서 변경할 수 있습니다. 또한, 다음과 같은 변환도 일어납니다: %3$s. 그 외의 문" "자는 그대로 유지됩니다. 자세한 정보는 %4$sFAQ%5$s를 참고하세요." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "추후 내보내기에 이것을 사용" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "파일 문자셋:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "압축:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip 압축" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip 압축" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "출력를 텍스트로 표시" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "뷰를 테이블로 내보내기" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "테이블 제목(header) 내보내기" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "파일로 저장" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "데이터베이스 선택" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "테이블 선택" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "새로운 데이터베이스명" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "새 테이블 이름" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "옛 컬럼 이름" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "새로운 컬럼 이름" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "내보내기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "브랜치 없음" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git 리비전:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%2$s에 의해 %1$s에 커밋됨" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%2$s에 의해 %1$s에 작성됨" @@ -8728,13 +8753,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "PBXT에 관한 문서나 추가 정보는 %sPrimeBase XT 홈페이지%s에 있습니다." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "파일 %s를 저장하기에 공간이 부족합니다." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8742,74 +8767,74 @@ msgstr "" "%s 라는 이름의 파일이 이미 서버에 존재합니다. 파일명을 변경하거나 덮어쓰기 옵" "션을 설정해주세요." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "웹 서버에 파일 %s를 저장할 권한이 없습니다." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "덤프 파일이 %s에 저장되었습니다." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "데이터베이스 이동: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "%s 에 대한 설정 변경" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "테이블 이동: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s 의 구조" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "뷰로 이동: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8820,78 +8845,79 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "숨기기" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "함수" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "컬럼의 길이 때문에,
이 컬럼을 편집할 수 없을 수도 있습니다." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "바이너리 - 편집 금지" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "또는" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "웹 서버 업로드 디렉터리:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "편집/삽입" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 개의 행을 추가로 삽입" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "이어서" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "새 행을 삽입합니다" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "새 행을 삽입하고 에러를 무시합니다" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "이전 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "이 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "다음 행 수정" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8899,8 +8925,8 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8911,31 +8937,31 @@ msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" msgid "Value" msgstr "값" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "삽입된 행의 id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "성공!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "구조만" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "구조와 데이터 모두" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "데이터만" @@ -8946,14 +8972,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "제약조건 추가" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9004,8 +9030,8 @@ msgstr "프로시저:" msgid "Views:" msgstr "뷰:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "보기" @@ -9047,19 +9073,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "%s 개의 결과가 발견됨" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "빠른 필터 비우기" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "전부 접기" @@ -9075,7 +9101,7 @@ msgstr "\"%1$s\"를 클래스 이름으로 사용할 수 없음, 기본 값 \"No msgid "Could not load class \"%1$s\"" msgstr "컬럼을 추가할 수 없음!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "펼치기/접기" @@ -9094,7 +9120,7 @@ msgstr "새" msgid "Database operations" msgstr "데이터베이스 연산" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "숨겨진 항목 보기" @@ -9196,13 +9222,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select a column." msgid "Select one…" msgstr "컬럼 선택." -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "그런 컬럼이 없습니다" @@ -9444,8 +9470,8 @@ msgid "Rename database to" msgstr "데이터베이스 이름을 변경합니다" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9491,183 +9517,183 @@ msgstr "(단독으로)" msgid "Move table to (database.table)" msgstr "테이블 이동 (데이터베이스명.테이블명)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "테이블 이름 바꾸기" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "테이블 설명" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "테이블 옵션" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "스토리지 엔진" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "테이블 복사 (데이터베이스명.테이블명)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "복사한 테이블로 옮겨감" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "테이블 유지보수" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "테이블 분석" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "테이블 검사" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "테이블 검사" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "테이블 단편화 제거" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "테이블 %s을 플러시 했습니다." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "테이블 갱신 (캐시 삭제)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "테이블 최적화" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "테이블 복구" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "데이터나 테이블 삭제" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "테이블 내용 비우기(TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "테이블 삭제(DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "분석" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "검사" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "옵티마이저" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "리빌드" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "복구" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "접기" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "파티션 유지 보수" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "파티션 %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "파티셔닝 삭제" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "referential 무결성 검사:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "같은 테이블이 있어 옮길 수 없음!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "같은 테이블이 있어 복사할 수 없음!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "테이블명이 없습니다!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "이 형식은 옵션이 없음" @@ -9697,18 +9723,18 @@ msgstr "색깔 보기" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "연결할 수 없습니다: 잘못된 설정." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s에 오셨습니다" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9717,7 +9743,7 @@ msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9728,7 +9754,7 @@ msgstr "" "습니다. 당신의 설정의 호스트, ID, 패스워드가 맞게 입력됐는지, 또는 MySQL 서버" "의 관리자가 제공해 준 정보를 맞게 입력했는지 확인하세요." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9753,15 +9779,15 @@ msgstr "사용자명:" msgid "Server Choice:" msgstr "서버 선택:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -9826,7 +9852,7 @@ msgstr "데이터 덤프 옵션" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" @@ -9835,7 +9861,7 @@ msgstr "테이블의 덤프 데이터" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "이벤트" @@ -9843,8 +9869,8 @@ msgstr "이벤트" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "정의" @@ -9932,7 +9958,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10470,7 +10496,7 @@ msgstr "목차(차례)" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "추가" @@ -10823,18 +10849,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "수정된 설정 파일을 적용하기 위해 phpMyAdmin에 다시 로그인해야 합니다." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "설명이 없습니다" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -10842,41 +10868,41 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "마스터 리플리케이션" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "이 서버는 이중화 환경을 위한 마스터 서버로 구성되었습니다." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "연결된 슬레이브 보기" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "슬레이브 복제 사용자 추가" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "마스터 환경 구성" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10885,27 +10911,27 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 #, fuzzy #| msgid "No databases selected." msgid "Ignore all databases; Replicate:" msgstr "데이터베이스를 선택하지 않았습니다." -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "데이터베이스를 선택하세요:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -10914,71 +10940,71 @@ msgstr "" "MySQL 서버를 재시작 했으면 실행(Go) 버튼을 클릭하세요. 그 후, 서버가 마스터" "로 설정되었다는 안내 메시지를 볼 수 있을겁니다." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "슬레이브 리플리케이션" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "보호되지 않은 연결" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "슬레이브 SQL 쓰레드가 동작하지 않습니다!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "슬레이브 IO 쓰레드가 동작하지 않습니다!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Slave 상태 테이블 보기" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "슬레이브 조정:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "전체 시작" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "전체 중지" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "슬레이브 초기화" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "SQL 스레드만 시작" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "SQL 스레드만 중지" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "IO 스레드만 시작" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "IO 스레드만 중지" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10987,24 +11013,24 @@ msgstr "" "이 서버는 복제 프로세스에서 슬레이브로 구성되지 않았습니다. 구" "성하시겠습니까?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "에러 관리:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11013,101 +11039,101 @@ msgstr "" "이 서버는 복제 프로세스에서 마스터로 구성되지 않았습니다. 구성" "하시겠습니까?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "사용자명:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "사용자명" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "암호" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "포트:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "마스터 상태" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "슬레이브 상태" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "변수" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "호스트" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "아무데서나" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "로컬" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "현재 호스트" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "아무나" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "호스트 테이블 사용" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11115,92 +11141,92 @@ msgstr "" "호스트 테이블을 사용하면 이 필드는 무시되고 대신 호스트 테이블에 저장된 값이 " "사용됩니다." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "재입력" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "암호 생성" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication" msgid "Replication started successfully." msgstr "복제" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "마스터 리플리케이션" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Replication" msgid "Replication stopped successfully." msgstr "복제" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "마스터 리플리케이션" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication" msgid "Replication resetting successfully." msgstr "복제" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "마스터 리플리케이션" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "성공." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "오류." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "알려지지 않은 오류" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "마스터 %s에 접속할 수 없음." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "마스터의 로그 위치를 읽어올 수 없습니다. 마스터 쪽의 권한 문제일 수 있습니다." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "마스터를 변경할 수 없음" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "마스터 서버가 성공적으로 %s로 변경되었습니다." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11221,7 +11247,7 @@ msgstr "이벤트 %1$s 를 변경했습니다." msgid "Event %1$s has been created." msgstr "이벤트 %1$s 를 생성했습니다." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "요청을 처리하는 중에 하나 혹은 그 이상의 오류가 발생했습니다:" @@ -11230,75 +11256,75 @@ msgstr "요청을 처리하는 중에 하나 혹은 그 이상의 오류가 발 msgid "Edit event" msgstr "이벤트 수정" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "자세한 내용" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "이벤트 이름" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "%s 로 변경" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "실행일시" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "실행간격" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "시작" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "완료" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "완료 후에 남기기" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "디파이너" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "디파이너의 형식은 \"username@hostname\" 이어야 합니다!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "이벤트 이름을 지정하세요!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "이벤트의 올바른 시간 간격을 입력하세요." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "이벤트 실행 시간을 올바르게 입력하세요." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "올바른 이벤트 타입을 입력하세요." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "이벤트 정의를 입력하세요." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "요청 처리 중 에러가 발생:" @@ -11319,7 +11345,7 @@ msgstr "이벤트 스케줄러 상태" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "반환값" @@ -11334,120 +11360,120 @@ msgstr "" "니다. [strong]저장 루틴 수행중 일부가 실패할 수 있습니다![/strong] 향상된 " "'mysqli' 확장을 사용하여 문제를 해결하세요." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "루틴 수정" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "잘못된 루틴 타입: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "루틴 %1$s가 생성되었습니다." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "죄송합니다만 삭제한 루틴을 복구하지 못했습니다." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "루틴 %1$s가 수정되었습니다." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "루틴 %1$s가 수정되었습니다." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "루틴 이름" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "파라미터" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "방향" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "파라미터 추가" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "마지막 파라미터 제거" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "반환(return) 종류" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "반환(return) 길이/값" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "반환(return) 옵션" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "보안 타입" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "루틴 이름이 필요합니다!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -11455,13 +11481,13 @@ 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개의 로우가 영향을 받음" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "루틴 실행" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "루틴 파라미터" @@ -11483,32 +11509,32 @@ msgstr "트리거 %1$s를 생성했습니다." msgid "Edit trigger" msgstr "트리거 수정" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "트리거 이름" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "시간" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "트리거 이름을 입력하세요!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "트리거의 올바른 타이밍을 입력하세요!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "트리거의 올바른 이벤트를 입력하세요!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "올바른 테이블 이름을 입력하세요!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "트리거 정의를 입력하세요." @@ -11633,601 +11659,554 @@ msgstr "문자셋과 정렬" msgid "Databases statistics" msgstr "데이터베이스 사용량 통계" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "권한 없음." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "데이터 읽기 허용." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "데이터 변경 허용." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "데이터 삭제 허용." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "서버 종료 허용." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용합니다." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "복제서버(replication slaves)에 필요합니다." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "트리거 생성 및 삭제 허용." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "사용자 계정을 생성, 삭제 및 계정명 변경하는 것을 허용." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "없음" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "영속적인 연결" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "SSL로 암호화된 연결이 필요합니다." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "유효한 X509 인증서가 요구됨." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "리소스 제한" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "사용자가 서버에 시간당 보낼 수 있는 질의(쿼리)의 갯수를 제한함." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "루틴" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "인덱스 생성 및 삭제 허용." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy msgid "Allows executing this routine." msgstr "테이블 생성 허용." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "주의: MySQL 권한 이름은 영어로 표시됩니다." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "관리" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "전체적 권한" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "테이블 생성 허용." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "쿠키 인증" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon 인증" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "쿠키 인증" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "로그인 정보" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "텍스트 입력 필드를 사용" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "호스트명:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "호스트명" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "인증" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "비밀번호 해시 방식" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s의 권한을 제거했습니다." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "사용자 추가" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "유저 전용 데이터베이스" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "동명의 데이터베이스를 생성하고 모든 권한을 부여." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" 데이터베이스에 대한 모든 권한을 부여." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" 에 접근할 수 있는 사용자들" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "사용자가 추가되었습니다." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "허용" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "사용자가 없습니다." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "누구나" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "데이터베이스 고유" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "Databases" msgid "table-specific" msgstr "데이터베이스" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "권한 수정" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "제거" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "서버 수정" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 #, fuzzy #| msgid "Delete the matches for the %s table?" msgid "… delete the old one from the user tables." msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "... 이전 버전의 모든 활성화된 권한을 취소한 후 이전 버전을 삭제합니다." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... 사용자 테이블로부터 이전 것을 삭제하고, 권한 정보를 새로고침 합니다." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "로그인 정보 변경 / 사용자 복사" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "새로운 사용자 계정을 동일한 권한으로 생성하고 …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "선택한 사용자를 삭제" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "사용자명과 같은 이름의 데이터베이스를 삭제합니다." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "삭제할 사용자를 선택하세요!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s 을 삭제합니다" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s에 대한 권한" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "사용자" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "권한 수정:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "사용자 계정" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "주의: 지금 로그인된 사용자의 권한을 수정할려고 합니다." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "사용자 개요" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12239,7 +12218,7 @@ msgstr "" "다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 " "수 있습니다. 이 경우, %sreload the privileges%s를 먼저 수행하세요." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12257,11 +12236,11 @@ msgstr "" "다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 " "수 있습니다. 이 경우, %sreload the privileges%s를 먼저 수행하세요." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." @@ -12553,12 +12532,12 @@ msgstr "커맨드" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "검색어" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -12581,12 +12560,12 @@ msgstr "분당:" msgid "per second:" msgstr "초당:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "명세" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12610,17 +12589,17 @@ msgstr "원본 값 보기" msgid "Related links:" msgstr "추천 링크:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "연결을 닫지 않고 클라이언트가 죽어서 중지된 연결의 수." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL 서버에 연결 실패한 횟수." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12629,16 +12608,16 @@ msgstr "" "트랜잭션의 구문을 임시로 저장하기 위해 바이너리 로그 캐시를 사용했지만 " "binlog_cache_size 값을 넘어버려 임시 파일을 사용한 트랜잭션 수." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "임시 바이너리 로그 캐시를 사용한 트랜잭션의 수." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL 서버에 연결 시도(성공 및 실패)한 횟수." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12649,78 +12628,78 @@ msgstr "" "Created_tmp_disk_tables 값이 크면, tmp_table_size 값을 늘려서 임시 테이블을 " "디스크에 생성하지 않고 메모리에 생성하도록 할 수 있습니다." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "mysqld가 생성한 임시파일의 갯수." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "구문을 실행하는 동안 서버가 메모리에 임시로 생성한 테이블 수." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "어떤 오류(중복된 키 등)로 인해 INSERT DELAYED로 기록된 행의 수." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12728,7 +12707,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12736,42 +12715,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "디스크에 저장이 필요한 페이지 수." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12779,33 +12758,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12814,205 +12793,205 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "현재 미완료된 fsync() 작업의 갯수." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "현재 미완료된 읽기 작업의 갯수." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "현재 미완료된 쓰기 작업의 갯수." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "현재까지 읽은 데이터의 바이트 수." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "데이터를 읽은 총 횟수." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "데이터를 쓴 총 횟수." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "현재까지 쓴 데이터의 바이트 수." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "이중쓰기 작업으로 쓰여진 페이지 수." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "이중쓰기 작업이 수행된 횟수." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "행에 대한 락을 획득하기 위해 기다릴 최대 시간 (밀리초)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED 큐에서 쓰기 작업을 대기중인 행의 수." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13020,19 +12999,19 @@ msgstr "" "열린 테이블 수. 열린 테이블이 많다면, 테이블 캐시값이 작은 경우일 수 있습니" "다." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "열린 파일 수." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "열린 스트림 수 (주로 로그 남기기용)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "열린 테이블 수." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13041,19 +13020,19 @@ msgstr "" "쿼리 캐시에 비어있는 메모리 블럭 수. 숫자가 크다면 파편화 문제가 있을 수 있으" "며, FLUSH QUERY CACHE 구문으로 해결할 할 수도 있습니다." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "쿼리 캐시의 빈 메모리 양." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "캐시 히트 수." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "캐시에 추가된 쿼리의 수." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13064,7 +13043,7 @@ msgstr "" "를 조정하는데 도움이 될겁니다. 쿼리캐시는 LRU 알고리즘을 사용하여 삭제할 쿼리" "를 선택합니다." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13072,19 +13051,19 @@ msgstr "" "캐시되지 않은 쿼리의 수(캐시 불가능한 것 또는 query_cache_type 설정때문에 캐" "시되지 않은 것)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "캐시에 등록된 쿼리 수." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "쿼리 캐시의 총 블럭 수." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe 리플리케이션 상태 (아직 구현 안 됨)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13092,75 +13071,75 @@ msgstr "" "인덱스를 사용하지 않은 조인의 수. 이 값이 0이 아니라면 테이블의 인덱스들을 주" "의 깊게 체크하세요." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "레퍼런스 테이블의 레인지 검색에 사용된 조인의 수." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "첫번째 테이블을 풀스캔한 조인의 갯수." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "지정된 범위에 완료된 정렬 수." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "정렬된 행의 개수." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13168,18 +13147,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13187,11 +13166,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "스레드 캐시 적중률 (계산된 값)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13226,43 +13205,43 @@ msgstr "데이터베이스 서버" msgid "Table level tabs" msgstr "테이블 설명" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "사용자 보기" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "사용자 그룹 추가" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "권한 없음." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "그룹명:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "서버 버전" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "데이터베이스 서버" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13379,7 +13358,7 @@ msgstr "데이터베이스 %s에 SQL 질의를 실행" msgid "Run SQL query/queries on table %s" msgstr "테이블 %s에 SQL 질의를 실행" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "제거" @@ -13467,178 +13446,178 @@ msgstr "지금 비활성화" msgid "Version" msgstr "버전" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "생성됨" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "수정됨" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "버전 삭제" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "추적 보고서" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "구조 요약" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "활성" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "비활성" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "추적 상태" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "이 테이블에 대한 추적 데이터를 제거" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "데이터 없음" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL 덤프(파일 다운로드)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL 덤프" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "이 옵션은 테이블과 그 안에 담겨 있는 데이터를 교체하게 됩니다." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL 실행" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "%s로 내보내기" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 #, fuzzy #| msgid "Data point content" msgid "Data definition statement" msgstr "데이터 포인트 내용" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "날짜" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "사용자명" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "버전 %s 스냅샷 (SQL 코드)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "없음" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "필요치 않을 경우 이 두 줄을 주석처리하시기 바랍니다." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 구문이 추출되었습니다. 덤프된 내용을 복사하거나 실행하세요." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, fuzzy, php-format #| msgid "Tracking report" msgid "Tracking report for table `%s`" msgstr "추적 보고서" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s의 %1$s 버전 생성" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "추적되지 않은 테이블" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "테이블 추적" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "추적된 테이블" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "최근 버전" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "추적 데이터 삭제" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "버전" @@ -13646,7 +13625,7 @@ msgstr "버전" msgid "Manage your settings" msgstr "나만의 설정 관리" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "설정 저장 완료." @@ -13672,7 +13651,7 @@ msgstr "ZIP 압축파일 오류:" msgid "No files found inside ZIP archive!" msgstr "ZIP 압축 안에서 파일을 발견하지 못했습니다!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "심각한 오류: 네비게이션은 AJAX를 통해서만 접근할 수 있습니다" @@ -13680,57 +13659,57 @@ msgstr "심각한 오류: 네비게이션은 AJAX를 통해서만 접근할 수 msgid "Cannot save settings, submitted form contains errors!" msgstr "설정을 저장할 수 없음, 전송된 폼 값에 오류가 있음!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "설정을 가져올 수 없습니다" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "설정의 일부 항목에 잘못된 데이터가 있습니다." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "나머지 설정을 가져오겠습니까?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "저장일: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "파일에서 가져오기" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "브라우저 스토리지에서 가져오기" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "웹 브라우저의 로컬 스토리지로부터 설정을 불러옵니다." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "저장된 설정이 없습니다!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "현재 웹 브라우저에서 이 기능을 지원하지 않음" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "현재 설정과 합치기" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13739,25 +13718,25 @@ msgstr "" "%s셋업 스크립트%s를 사용하는 등의 방법으로 config.inc.php를 수정하여 더 많은 " "설정을 조정할 수 있습니다." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "파일로 저장" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "브라우저의 저장 공간에 저장" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "설정 내용이 웹 브라우저의 로컬 스토리지에 저장됩니다." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "기존 설정에 덮여쓰여집니다!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "모든 설정을 초기화할 수 있습니다." @@ -13765,31 +13744,31 @@ msgstr "모든 설정을 초기화할 수 있습니다." msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "권한 없음" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "쓰레드 %s 를 죽였습니다." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -13797,15 +13776,15 @@ msgstr "" "phpMyAdmin이 쓰레드 %s를 종료하는데 실패했습니다. 이미 해당 쓰레드가 종료되었" "을 것입니다." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "다운로드" @@ -13813,11 +13792,11 @@ msgstr "다운로드" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "설정을 불러오거나 저장할 수 없음" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -13827,7 +13806,7 @@ msgstr "" "리에 웹 서버가 쓰기 가능한 [em]config[/em] 폴더를 생성하세요. 그러지 않을 경" "우 변경된 내용을 저장할 수 없습니다." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -13835,84 +13814,83 @@ msgstr "" "현재, 암호화 되지 않은 접속을 통해 연결되어 있습니다. 모든 데이터(패스워드 " "등 민감한 정보 포함)는 평문으로 전송됩니다!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "보호되지 않은 연결" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "설정이 저장되었습니다." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "설정이 저장되었습니다." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 #, fuzzy #| msgid "There are no recent tables" msgid "There are no configured servers" msgstr "최근 테이블이 없습니다." -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "새 서버" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "기본 언어" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "사용자 선택" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "-없음-" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "기본 서버" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "줄 끝" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "보기" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "로드" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin 홈페이지" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "기부" @@ -13948,21 +13926,21 @@ msgstr "오류 무시" msgid "Show form" msgstr "폼 보기" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -13971,7 +13949,7 @@ msgstr "" "Git 버전을 사용하고 있습니다. [kbd]git pull[/kbd]을 실행하세요 :-)[br]최신 안" "정 버전은 %s이며 %s에 공개되었습니다." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "더 최신의 안정 버전이 없음" @@ -13984,12 +13962,12 @@ msgstr "잘못된 데이터" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s'라는 데이터베이스가 존재하지 않습니다." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "테이블 %s 가 이미 존재합니다!" @@ -14002,35 +13980,35 @@ msgstr "테이블의 덤프(스키마) 데이터 보기" msgid "Invalid table name" msgstr "잘못된 테이블 이름" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "선택된 행이 없습니다" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s의 트래킹이 활성화되었습니다." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "선택된 행이 없습니다" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL 문장이 실행되었습니다." @@ -14236,7 +14214,7 @@ msgid "List of available transformations and their options" msgstr "버전 정보" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14261,7 +14239,7 @@ msgstr "" "면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -14716,17 +14694,17 @@ msgid "Size" msgstr "크기" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "생성" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "마지막 업데이트" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "마지막 검사" @@ -14763,6 +14741,12 @@ msgstr "" "당신의 브라우저에 현재 도메인을 위한 phpMyAdmin 설정이 존재합니다. 현재 세션" "을 위해 이를 불러오시겠습니까?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "추적 데이터 삭제" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "다음 데이터베이스들에 대한 권한 추가:" @@ -14781,10 +14765,45 @@ msgstr "다음 테이블에 대한 권한 추가:" msgid "Add privileges on the following table:" msgstr "다음 테이블에 대한 권한 추가:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "없음" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "선택한 사용자를 삭제" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "사용자명과 같은 이름의 데이터베이스를 삭제합니다." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "리소스 제한" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "표시할 바이너리 로그를 선택하세요" @@ -14815,7 +14834,7 @@ msgstr "플러그인" msgid "Author" msgstr "저자" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "사용불가" @@ -14985,7 +15004,7 @@ msgstr "사용자:" msgid "Comment:" msgstr "설명:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15023,27 +15042,27 @@ msgstr "" msgid "Foreign key constraint" msgstr "외래키 제약" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ 제약조건 추가" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "내부 릴레이션" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "내부 릴레이션" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "외래키 릴레이션이 있을 경우, 거기에 해당하는 내부 릴레이션은 필요 없습니다." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "출력할 필드 선택:" @@ -15098,11 +15117,11 @@ msgstr "원본 문자열" msgid "Replaced string" msgstr "문자열 변경" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "변경" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "추가적인 검색 조건" @@ -15177,7 +15196,7 @@ msgid "at beginning of table" msgstr "테이블의 처음" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15211,28 +15230,28 @@ msgstr "행 길이" msgid "Index length" msgstr "인덱스 길이" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "파티션 있음" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "파티셔닝 삭제" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "뷰 편집" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "공간 사용량" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "실제량" @@ -15259,31 +15278,31 @@ msgstr "테이블 구조 개선" msgid "Track view" msgstr "테이블 추적" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "행(레코드) 통계" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "정적" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "동적(다이내믹)" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "파티션 있음" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "행 길이" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "행 크기" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "다음 자동인덱스" @@ -15296,50 +15315,50 @@ msgstr "컬럼 %s을 삭제했습니다." msgid "Click to toggle" msgstr "토글하려면 클릭" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "테마" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "더 많은 테마들!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "사용가능한 MIME 형식" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "이용 가능한 변환 기능" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "이용 가능한 변환 기능" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "설명" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "다음 단계로 가는 중…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "어떻게 들어오셨어요? 지금 여기 있을 권한이 없습니다!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "프로파일을 업데이트했습니다." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15416,7 +15435,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15441,19 +15460,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "테이블이 선택되지 않았습니다." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15516,29 +15535,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "이벤트 %1$s 를 생성했습니다." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "파일명 템플릿" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "테이블의 처음" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15557,10 +15576,16 @@ msgstr "%s 라인에 알 수 없는 문자가 있습니다." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "테이블의 처음" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15607,7 +15632,7 @@ msgstr "" msgid "strict error" msgstr "오류 수집" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16833,6 +16858,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert가 0으로 설정되었습니다" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "쿠키 인증" + #~ msgid "Try to connect without password." #~ msgstr "암호없이 연결 시도." diff --git a/po/ksh.po b/po/ksh.po index 7f40ce5d72..64c8a9d5df 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Alle ußwähle" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "not active" msgid "Show panel" msgstr "nit aktief" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2343,105 +2348,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2450,353 +2455,373 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Table" msgid "Copy tables to" msgstr "Tabäll" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Alle ußwähle" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2857,20 +2882,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3065,7 +3090,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3109,7 +3134,7 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3117,41 +3142,41 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3245,57 +3270,57 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3303,7 +3328,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -3311,48 +3336,43 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Alle nit mieh ußwähle" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3372,30 +3392,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3404,7 +3424,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3413,8 +3433,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3436,10 +3456,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3481,103 +3501,103 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy msgid "Check all" msgstr "Ein Tabäll" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3585,97 +3605,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3684,20 +3704,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3707,78 +3727,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Falle lohße" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3802,11 +3822,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3825,14 +3845,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3841,8 +3862,8 @@ msgid "Table" msgstr "Tabäll" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3850,45 +3871,45 @@ msgstr "Tabäll" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3904,16 +3925,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3921,20 +3942,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3943,39 +3964,39 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -3983,7 +4004,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -3991,7 +4012,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4040,27 +4061,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4122,7 +4143,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4178,76 +4199,76 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4255,19 +4276,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4534,7 +4555,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4549,130 +4570,130 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Aanjelaat" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Aanjelaat" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4686,7 +4707,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4694,12 +4715,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4707,7 +4728,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4744,22 +4765,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4768,7 +4789,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4789,11 +4810,11 @@ msgstr "" msgid "Select a column." msgstr "Alle ußwähle" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4801,33 +4822,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4835,20 +4856,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5383,7 +5404,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5483,12 +5504,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5498,7 +5519,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5623,7 +5644,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5636,7 +5657,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5645,7 +5666,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5675,7 +5696,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5841,7 +5862,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6672,7 +6693,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7310,7 +7331,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7318,10 +7339,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7456,24 +7477,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7487,12 +7508,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7501,7 +7522,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7515,16 +7536,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Di Dahtebangk %1$s wood aanjelaat." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -7532,26 +7553,26 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Reije" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7578,32 +7599,32 @@ msgstr "" msgid "Enable statistics" msgstr "Tabäll" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7647,7 +7668,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7664,12 +7685,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7690,13 +7711,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7716,171 +7737,175 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "The database name is empty!" msgid "Template name" msgstr "Kein Name för di Dahtebangk!" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "Alle ußwähle" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Database" msgid "Databases:" msgstr "Dahtebangk" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7888,104 +7913,104 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "Alle ußwähle" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "Alle ußwähle" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "The database name is empty!" msgid "New database name" msgstr "Kein Name för di Dahtebangk!" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8382,86 +8407,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8472,84 +8497,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8560,31 +8586,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8593,14 +8619,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8645,8 +8671,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8688,17 +8714,17 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8713,7 +8739,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8732,7 +8758,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8831,13 +8857,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select All" msgid "Select one…" msgstr "Alle ußwähle" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9071,8 +9097,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9116,178 +9142,178 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy msgid "Checksum table" msgstr "Ein Tabäll" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9314,25 +9340,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9340,7 +9366,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9365,15 +9391,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9434,7 +9460,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9443,7 +9469,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9451,8 +9477,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9538,7 +9564,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10033,7 +10059,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10353,57 +10379,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10412,293 +10438,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10719,7 +10745,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10728,75 +10754,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10817,7 +10843,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10829,119 +10855,119 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -10949,13 +10975,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10977,32 +11003,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11118,565 +11144,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11685,7 +11668,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11694,11 +11677,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11965,12 +11948,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -11993,12 +11976,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12022,33 +12005,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12056,78 +12039,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12135,7 +12118,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12143,42 +12126,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12186,33 +12169,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12221,242 +12204,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12464,99 +12447,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12564,18 +12547,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12583,11 +12566,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12616,37 +12599,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12741,7 +12724,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12826,172 +12809,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Aanjelaat" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktief" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "nit aktief" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Väsjohne" @@ -12999,7 +12982,7 @@ msgstr "Väsjohne" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13023,7 +13006,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13031,78 +13014,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13110,45 +13093,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13156,97 +13139,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13282,28 +13264,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13316,12 +13298,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13334,29 +13316,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13524,7 +13506,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13542,7 +13524,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13979,17 +13961,17 @@ msgid "Size" msgstr "Ömfang" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -14024,6 +14006,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14040,10 +14026,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14074,7 +14093,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14230,7 +14249,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14262,26 +14281,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14334,11 +14353,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14407,7 +14426,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14431,25 +14450,25 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy msgid "Partition table" msgstr "Ein Tabäll" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14474,31 +14493,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14511,44 +14530,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14619,7 +14638,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14640,17 +14659,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14702,24 +14721,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14736,10 +14755,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14778,7 +14801,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/ky.po b/po/ky.po index fe454767a6..eada6f5c2a 100644 --- a/po/ky.po +++ b/po/ky.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Ички шакекче %d:" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Сырткы шакекче:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" мамычанын мааниси" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Баарын танда" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2368,107 +2373,107 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2477,353 +2482,373 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Table comments:" msgid "Copy tables to" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Баарын танда" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2884,20 +2909,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3092,7 +3117,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3136,48 +3161,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3271,112 +3296,107 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Баарынан баш тарт" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3396,30 +3416,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3428,7 +3448,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3437,8 +3457,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3460,10 +3480,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3505,109 +3525,109 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Check all" msgstr "%s жадыбал" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Links to" msgid "Link not found!" msgstr "Шилтемелер" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3615,99 +3635,99 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Файл окулбай жатат" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3716,20 +3736,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3739,78 +3759,78 @@ msgstr "" msgid "Action" msgstr "Кыймыл" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Алып сал" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3834,11 +3854,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3857,14 +3877,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3873,8 +3894,8 @@ msgid "Table" msgstr "Жадыбал" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3882,45 +3903,45 @@ msgstr "Жадыбал" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3936,16 +3957,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3953,22 +3974,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Central columns" msgstr "\"%s\" мамычанын мааниси" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3977,53 +3998,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4071,27 +4092,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4153,7 +4174,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4207,76 +4228,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4284,19 +4305,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4563,7 +4584,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4578,130 +4599,130 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Жасалды" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Жасалды" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4715,7 +4736,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4723,12 +4744,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4736,7 +4757,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4773,22 +4794,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4797,7 +4818,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4818,13 +4839,13 @@ msgstr "" msgid "Select a column." msgstr "Баарын танда" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Add new column" msgstr "\"%s\" мамычанын мааниси" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4832,33 +4853,33 @@ msgstr "\"%s\" мамычанын мааниси" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4866,20 +4887,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5414,7 +5435,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5516,12 +5537,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5531,7 +5552,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5656,7 +5677,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5669,7 +5690,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5678,7 +5699,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5708,7 +5729,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5874,7 +5895,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6707,7 +6728,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7351,7 +7372,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7359,10 +7380,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7497,25 +7518,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %s has been dropped." @@ -7530,12 +7551,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7544,7 +7565,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7558,42 +7579,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "катарлар" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7620,32 +7641,32 @@ msgstr "" msgid "Enable statistics" msgstr "Жадыбал" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7690,7 +7711,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7707,12 +7728,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7733,13 +7754,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7759,173 +7780,177 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "The database name is empty!" msgid "Template name" msgstr "Берилигтер базасынын аты бош калды!" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Жаңыланды" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "Баарын танда" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Database" msgid "Databases:" msgstr "Берилиштер базасы" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7933,104 +7958,104 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "Баарын танда" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "Баарын танда" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "The database name is empty!" msgid "New database name" msgstr "Берилигтер базасынын аты бош калды!" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8429,13 +8454,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8443,74 +8468,74 @@ msgstr "" "%s аттуу файл серверде бар, файлдын атын өзгөртүңүз же болбосо үстүнө жазуу " "опцияларын текшериңиз." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "%s Бул файлды сактоо үчүн веб сервердин уруксаты жок." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8521,84 +8546,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8609,31 +8635,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8642,14 +8668,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8694,8 +8720,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Көрсөт" @@ -8736,17 +8762,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8761,7 +8787,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8780,7 +8806,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8879,13 +8905,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select All" msgid "Select one…" msgstr "Баарын танда" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9123,8 +9149,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9168,50 +9194,50 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "%s table" @@ -9219,129 +9245,129 @@ msgstr "" msgid "Checksum table" msgstr "%s жадыбал" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9368,25 +9394,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9394,7 +9420,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9419,15 +9445,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9488,7 +9514,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9497,7 +9523,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9505,8 +9531,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9592,7 +9618,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10087,7 +10113,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10421,57 +10447,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10480,293 +10506,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10787,7 +10813,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10796,75 +10822,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10885,7 +10911,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10897,132 +10923,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11044,32 +11070,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11188,569 +11214,526 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Add user account" msgstr "\"%s\" мамычанын мааниси" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Берилиштер базасы жөнүндө маалымат:" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11759,7 +11742,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11768,11 +11751,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12039,12 +12022,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -12067,12 +12050,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12096,33 +12079,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12130,78 +12113,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12209,7 +12192,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12217,42 +12200,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12260,33 +12243,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12295,242 +12278,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12538,99 +12521,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12638,18 +12621,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12657,11 +12640,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12690,37 +12673,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12815,7 +12798,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12903,174 +12886,174 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Жасалды" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Жаңыланды" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "Акыркы версия" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "активдүү" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "активдүү эмес" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Акыркы версия" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Версиялар" @@ -13078,7 +13061,7 @@ msgstr "Версиялар" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13102,7 +13085,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13110,78 +13093,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13189,45 +13172,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13235,97 +13218,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13361,28 +13343,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13395,12 +13377,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13413,31 +13395,31 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "Database %1$s has been created." msgid "No row selected." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13611,7 +13593,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13629,7 +13611,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -14071,17 +14053,17 @@ msgid "Size" msgstr "Олчом" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -14116,6 +14098,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Last version" +msgid "Delete settings " +msgstr "Акыркы версия" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14132,10 +14120,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14166,7 +14187,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14322,7 +14343,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14356,30 +14377,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "+ Add constraint" msgstr "\"%s\" мамычанын мааниси" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14435,11 +14456,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14510,7 +14531,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14534,26 +14555,26 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Creation:" msgid "Partition table" msgstr "Тузуу:" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14578,31 +14599,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14615,44 +14636,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14722,7 +14743,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14747,19 +14768,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14813,24 +14834,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14847,10 +14868,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14891,7 +14916,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/li.po b/po/li.po index 68d4cec843..abebf1dbdc 100644 --- a/po/li.po +++ b/po/li.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-12-29 15:36+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Limburgish Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2318,105 +2323,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2425,349 +2430,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "jannewarie" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "fibberwarie" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "miert" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "april" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "mei" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "augustus" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "september" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "november" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Oer" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "secónd" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2828,20 +2853,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3036,7 +3061,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3080,48 +3105,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3215,110 +3240,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3338,30 +3358,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3370,7 +3390,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3379,8 +3399,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3402,10 +3422,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3445,102 +3465,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3548,97 +3568,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3647,20 +3667,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3670,78 +3690,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3765,11 +3785,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3788,14 +3808,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3804,8 +3825,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3813,45 +3834,45 @@ msgstr "" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3867,16 +3888,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3884,20 +3905,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3906,53 +3927,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4000,27 +4021,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4082,7 +4103,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4136,76 +4157,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4213,19 +4234,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4492,7 +4513,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4507,126 +4528,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4640,7 +4661,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4648,12 +4669,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4661,7 +4682,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4698,22 +4719,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4722,7 +4743,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4739,11 +4760,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4751,33 +4772,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4785,20 +4806,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5323,7 +5344,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5423,12 +5444,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5438,7 +5459,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5563,7 +5584,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5576,7 +5597,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5585,7 +5606,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5615,7 +5636,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5781,7 +5802,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6612,7 +6633,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7247,7 +7268,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7255,10 +7276,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7393,24 +7414,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7424,12 +7445,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7438,7 +7459,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7452,42 +7473,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7512,32 +7533,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7580,7 +7601,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7597,12 +7618,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7623,13 +7644,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7649,165 +7670,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Databases:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7815,98 +7840,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8303,86 +8328,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8393,84 +8418,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8481,31 +8507,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8514,14 +8540,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8566,8 +8592,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8608,17 +8634,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8633,7 +8659,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8652,7 +8678,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8751,11 +8777,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -8989,8 +9015,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9034,177 +9060,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9231,25 +9257,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9257,7 +9283,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9282,15 +9308,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9351,7 +9377,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9360,7 +9386,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9368,8 +9394,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9455,7 +9481,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9949,7 +9975,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10269,57 +10295,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10328,293 +10354,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10635,7 +10661,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10644,75 +10670,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10733,7 +10759,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10745,132 +10771,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10892,32 +10918,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11033,565 +11059,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Gebroeker" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11600,7 +11583,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11609,11 +11592,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11880,12 +11863,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11906,12 +11889,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -11935,33 +11918,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11969,78 +11952,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12048,7 +12031,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12056,42 +12039,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12099,33 +12082,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12134,242 +12117,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12377,99 +12360,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12477,18 +12460,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12496,11 +12479,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12529,37 +12512,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12654,7 +12637,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12739,172 +12722,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12912,7 +12895,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12936,7 +12919,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12944,78 +12927,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13023,45 +13006,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13069,97 +13052,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13195,28 +13177,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13229,12 +13211,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13247,29 +13229,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13433,7 +13415,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13451,7 +13433,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13879,17 +13861,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13924,6 +13906,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13940,10 +13926,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13974,7 +13993,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14128,7 +14147,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14160,26 +14179,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14232,11 +14251,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14305,7 +14324,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14329,24 +14348,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14371,31 +14390,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14408,44 +14427,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14513,7 +14532,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14534,17 +14553,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14596,24 +14615,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14630,10 +14649,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14670,7 +14693,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/lt.po b/po/lt.po index 4ca6f29032..1aa666edc2 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -28,33 +28,33 @@ msgstr "" "Failas %s nėra prieinamas šioje sistemoje, norint sužinoti daugiau prašome " "apsilankyti www.phpmyadmin.net." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 #, fuzzy #| msgid "Click to sort" msgid "Click to sort." msgstr "Spustelėkite, kad surūšiuoti" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Rodomos eilutės %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Duomenų bazės komentaras" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Lentelės komentarai:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -66,13 +66,13 @@ msgstr "Lentelės komentarai:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -83,9 +83,9 @@ msgstr "Lentelės komentarai:" msgid "Column" msgstr "Stulpelis" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -96,12 +96,12 @@ msgstr "Stulpelis" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -113,9 +113,9 @@ msgstr "Stulpelis" msgid "Type" msgstr "Tipas" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -126,15 +126,15 @@ msgstr "Tipas" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -145,14 +145,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Nutylint" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -162,7 +162,7 @@ msgstr "Nutylint" msgid "Links to" msgstr "Sąryšis su" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -176,19 +176,19 @@ msgstr "Sąryšis su" msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Pirminis" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -196,13 +196,13 @@ msgstr "Pirminis" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -210,17 +210,17 @@ msgstr "Pirminis" msgid "No" msgstr "Ne" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -229,13 +229,13 @@ msgstr "Ne" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -247,15 +247,15 @@ msgstr "Taip" msgid "View dump (schema) of database" msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Duomenų bazėje nerasta lentelių." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -264,8 +264,8 @@ msgid "Tables" msgstr "Lentelės" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -273,10 +273,10 @@ msgstr "Lentelės" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -289,29 +289,29 @@ msgstr "Struktūra" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Duomenys" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Pažymėti visas" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Nenurodytas duomenų bazės vardas!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Duomenų bazė %1$s pervadinta į %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Duomenų bazė %1$s buvo nukopijuota į %2$s." @@ -322,41 +322,41 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin nustatymų saugykla išjungta. %sIšsiaiškinkite kodėl%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Pasirinkite bent vieną stulpelį išvedimui!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pereiti į %svizualią daryklę%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Priėjimas uždraustas!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy #| msgid "Replication status" msgid "Tracking data deleted successfully." msgstr "Dauginimo būsena" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Nepažymėjote duomenų bazės." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Duomenų bazės žurnalas" @@ -392,152 +392,152 @@ msgstr "Blogas tipas!" msgid "Bad parameters!" msgstr "Blogi parametrai!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Reikšmė „%s“ stulpeliui" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometrija %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Taškas:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Taškas %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Pridėti tašką" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Linestring" msgid "Linestring %d:" msgstr "Atkarpų seka" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Išorinis žiedas:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Vidinis žiedas %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Sukurti atkarpų seką" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Sukurti vidinį žiedą" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Daugiakampis %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Pridėti daugiakampį" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Pridėti geometriją" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Vykdyti" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Išvedimas" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Pavyko" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Nepavyko" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "complete inserts" msgid "Incomplete params" msgstr "užbaigti įterpimus" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -546,15 +546,15 @@ msgstr "" "Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " "%sdokumentaciją%s būdams kaip apeiti šį apribojimą." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Nuoroda ištrinta." -#: import.php:489 +#: import.php:486 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 " @@ -564,17 +564,17 @@ msgstr "" "failo dydis viršija didžiausią leidžiamą dydį PHP konfigūracijos. Žiūrėti " "[doc@faq1-16]DUK 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "Žymė %s sukurta" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -583,7 +583,7 @@ msgstr[0] "Importavimas sėkmingai baigtas, įvykdyta %d užklausų." msgstr[1] "Importavimas sėkmingai baigtas, įvykdyta %d užklausų." msgstr[2] "Importavimas sėkmingai baigtas, įvykdyta %d užklausų." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -595,7 +595,7 @@ msgstr "" "Baigėsi skripto vykdymui skirtas laikas, jeigu norite pabaigti importuoti " "prašome dar kartą siųsti tą patį failą ir importavimas bus tęsiamas." -#: import.php:632 +#: import.php:629 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." @@ -604,7 +604,7 @@ msgstr "" "dažniausiai reiškia, kad phpMyAdmin negali baigti importuoti nebent Jūs " "padidintumėte PHP laiko limitą." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "„DROP DATABASE“ komandos įvykdyti negalima." @@ -612,19 +612,19 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Atgal" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy #| msgid "phpMyAdmin homepage" msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin tinklalapis" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -632,47 +632,47 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General Settings" msgid "General settings" msgstr "Pagrindiniai nustatymai" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Serverio ryšio palyginimas" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "Appearance Settings" msgid "Appearance settings" msgstr "Išvaizdos nustatymai" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Daugiau nustatymų" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Duomenų bazės serveris" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Darbinė stotis:" -#: index.php:295 +#: index.php:296 #, fuzzy #| msgid "Server port" msgid "Server type:" msgstr "Serverio jungtis" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -680,79 +680,79 @@ msgstr "Serverio jungtis" msgid "Server version:" msgstr "Serverio versija" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Protocol version" msgid "Protocol version:" msgstr "Protokolo versija" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Naudotojas" -#: index.php:314 +#: index.php:315 #, fuzzy #| msgid "Server charset" msgid "Server charset:" msgstr "Serverio koduotė" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Interneto serveris" -#: index.php:338 +#: index.php:339 #, fuzzy #| msgid "Database client version" msgid "Database client version:" msgstr "Duomenų bazės kliento versija" -#: index.php:342 +#: index.php:343 #, fuzzy #| msgid "PHP extension" msgid "PHP extension:" msgstr "PHP plėtinys" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "PHP versija" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Versijos informacija:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacija" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Oficialus phpMyAdmin tinklalapis" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Prisidėti" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Gauti pagalbą" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Pakeitimų sąrašas" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 " @@ -762,13 +762,13 @@ msgstr "" "simbolių kodaciją. Be mbstring plėtinio phpMyAdmin negali tesingai skaidyti " "stringų, todėl galite sulaukti netikėtų rezultatų." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -776,21 +776,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 #, fuzzy #| msgid "" #| "Directory [code]config[/code], which is used by the setup script, still " @@ -806,7 +806,7 @@ msgstr "" "yra Jūsų phpMyAdmin kataloge. Jūs turėtumėte jį pašalinti iškart po to kai " "sukonfigūruosite phpMyAdmin." -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage is not completely configured, some " @@ -818,12 +818,12 @@ msgstr "" "phpMyAdmin nustatymų saugykla nėra visiškai sukonfigūruota, išplėstinės " "funkcijos išjungtos. %sIšsiaiškinkite kodėl%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -832,7 +832,7 @@ msgstr "" "Jūsų PHP MySQL bibliotekos versija %s skiriasi nuo Jūsų MySQL serverio " "versijos %s. Tai gali sukelti nenuspėjamą elgesį." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1012,7 +1012,7 @@ msgid "Save & close" msgstr "Išsaugoti į failą" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -1054,7 +1054,7 @@ msgstr "Pridėti indeksą" msgid "Edit index" msgstr "Redaguoti indeksą" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Pridėti %s stulpelį(-ius) į indeksą" @@ -1087,10 +1087,10 @@ msgstr "Pridėti %s stulpelį(-ius) į indeksą" msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1106,7 +1106,7 @@ msgstr "užklausa vykdoma" msgid "Matched rows:" msgstr "Paveiktos eilutės:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1127,13 +1127,13 @@ msgstr "Tuščias prisijungimo adresas!" msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" @@ -1141,8 +1141,8 @@ msgstr "Slaptažodžiai nesutampa!" msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Uždaryti" @@ -1170,19 +1170,19 @@ msgstr "Eilutė buvo ištrinta" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Kita" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1296,40 +1296,40 @@ msgid "Processes" msgstr "Procesai" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1347,7 +1347,7 @@ msgstr "" msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nustatymai" @@ -1365,16 +1365,16 @@ msgid "Please add at least one variable to the series!" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Ne" @@ -1560,20 +1560,20 @@ msgstr "Analizuojama…" msgid "Explain output" msgstr "Paaiškinti išvestį" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Būsena" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Laikas" @@ -1661,10 +1661,10 @@ msgstr "" "į numatytąją konfigūraciją…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importuoti" @@ -1747,7 +1747,7 @@ msgstr "Blogi parametrai!" msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" @@ -1795,8 +1795,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nepažymėjote duomenų bazės." @@ -1844,7 +1844,7 @@ msgstr "Kopijuojama duomenų bazė" msgid "Changing charset" msgstr "Keičiama koduotė" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1878,74 +1878,79 @@ msgstr "Peržiūrėti" msgid "Deleting" msgstr "Šaliname" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Ištrinti sutapimus %s lentelėje(ei)?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Apibrėžimas „stored“ funkcijos turi turėti RETURN teiginį!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Eksportuoti" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktorius" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Stulpelio „%s“ reikšmės" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Reikšmės naujajam stulpeliui" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje" -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Pridėti %d reikšmę(-es)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Pastaba: Jei failas turi keletą lentelių jos bus sukombinuotos į vieną." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Slėpti užklausos laukelį" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Rodyti užklausos laukelį" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1953,108 +1958,108 @@ msgstr "Rodyti užklausos laukelį" msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Trinti" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d nėra galimas eilutės numeris." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Kintamasis" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nepasirinkti įrašai" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Paieška duomenų bazėje" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Laisva atmintis" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Prisidėti" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Pridėti pirminį raktą" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Stulpeliui %s sukurtas PIRMINIS raktas." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Sekimo ataskaita" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2062,544 +2067,544 @@ msgstr "" msgid "End of step" msgstr "Eilutės galas" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Atlikta" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Sekančios užklausos buvo įvykdytos:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Išsaugoti" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Paieška" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Stulpelių vardai: " -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Stulpelių vardai: " -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Pasirinkite du stulpelius" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Pasirinkite du skirtingus stulpelius" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Duomenų rodyklės dydis" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopijuoti" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Taškas" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Atkarpų seka" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Daugiakampis" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Vidinis žiedas" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Išorinis žiedas:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Puslapio vardas" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "Pasirinkite puslapį" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "Pasirinkite puslapį" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Tušti puslapiai" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Pasirinkite puslapį" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienetas" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Pasirinkite puslapį redagavimui" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Pridėti parinktį stulpeliui/skilčiai " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Siųsti" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "Paspausti escape (klavišas Esc), kad išeiti iš redagavimo" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "Vilkite, kad pertvarkytumėte" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Paspauskite, kad (at)pažymėti" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Rodyti viską" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pirminė padėtis" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atšaukti" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Nutraukta" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Importuoti numatytąsias reikšmes" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pasirinkite lenteles" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Spausdinti" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Eiti pagal nuorodą" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Daugiau" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rodyti viską" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Nerodyti indeksų" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Logotipą rodyti kairiame rėmelyje" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2609,124 +2614,124 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "naujausias" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Sukurti rodinį" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverio jungtis" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverio jungtis" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Keisti nustatymus" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Rodyti atidarytas lenteles" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoruoti" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rodyti šią užklausą vėl" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Ar tikrai norite vykdyti „%s“?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Įvykdytos užklausos" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Lentelės komentarai" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2735,36 +2740,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopijuoti duomenų bazę į" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "Pridėti lentelės priešdėlį" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Pakeisti lentelės pavadinimo priešdėlį" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopijuoti lentelę su pavadinimo priešdėliu" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Ankstesnis" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2772,149 +2797,149 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Šiandien" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "sausio" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "vasario" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "kovo" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "balandžio" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Geg" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "birželio" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "liepos" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "rugsėjo" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "spalio" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "lapkričio" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Grd" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2922,207 +2947,207 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sav." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Ne" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Valanda" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minutė" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekundės" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Naudokite teksto įvedimo lauką" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Klaida" @@ -3188,20 +3213,20 @@ msgid "Charset" msgstr "Koduotė" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Palyginimas" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Dvejetainis" @@ -3398,7 +3423,7 @@ msgid "Czech-Slovak" msgstr "Čekų-slovakų" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nežinoma" @@ -3453,7 +3478,7 @@ msgstr "" msgid "Font size" msgstr "Šrifto dydis" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3461,25 +3486,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Ištrinti sąryšį" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL užklausos langelis" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3487,27 +3512,27 @@ msgid "" "configured)." msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatsako" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalės…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Trūkstamas parametras:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3615,67 +3640,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-užklausa duomenų bazėje %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Vykdyti užklausą" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Paieška" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Ištrinti sąryšį" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Ištrinti sąryšį" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Rodomos žymelės" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Ištrinti sąryšį" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "bent vienas iš žodžių" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "visi žodžiai" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "ištisa frazė" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "kaip reguliarųjį išsireiškimą" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Paieškos rezultatai frazei „%s“ %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3683,7 +3708,7 @@ msgstr[0] "Iš viso: %s atitikmuo" msgstr[1] "Iš viso: %s atitikmenys" msgstr[2] "Iš viso: %s atitikmenų" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3693,48 +3718,43 @@ msgstr[0] "%s atitikmuo lentelėje %s" msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Peržiūrėti" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Ištrinti sutapimus %s lentelėje(ei)?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Paieška duomenų bazėje" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simboliui: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Rasti:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Žodžiai atskirti tarpo simboliu („ “)." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Viduje lentelių:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Atžymėti visas" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Stulpelio viduje:" @@ -3760,16 +3780,16 @@ msgstr "Filtrai" msgid "Search this table" msgstr "Paieška duomenų bazėje" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Pradžia" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3778,8 +3798,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Ankstesnis" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3788,8 +3808,8 @@ msgctxt "Next page" msgid "Next" msgstr "Kitas" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3800,7 +3820,7 @@ msgstr "Pabaiga" msgid "All" msgstr "Viską" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Eilučių skaičius:" @@ -3809,8 +3829,8 @@ msgstr "Eilučių skaičius:" msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3832,10 +3852,10 @@ msgstr "Rūšiuoti pagal raktą" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Nustatymai" @@ -3879,35 +3899,35 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Eilutė buvo ištrinta" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Gali būti apytikslis. Žiūrėkite [doc@faq3-11]DUK 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3916,80 +3936,80 @@ msgstr "" "Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " "%sdokumentacijoje%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Rodomi įrašai" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "iš viso" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Užklausa užtruko %01.4f sek." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Pasirinktus:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Pažymėti visas" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Sąryšis nerastas" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Nėra" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konvertuoti į Kana" @@ -3997,27 +4017,27 @@ msgstr "Konvertuoti į Kana" msgid "Too many error messages, some are not displayed." msgstr "Per daug klaidų žinučių, dėl to kai kurių neparodėme." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Importuoti" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatically create versions" msgid "Automatically send report next time" msgstr "Automatiškai sukurti versijas" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Failas nebuvo įkeltasis failas." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4025,53 +4045,53 @@ msgstr "" "Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML " "formoje." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Įkeliamas failas buvo tik dalinai įkeltas." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Trūksta laikino katalogo." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Nepavyko įrašyti failo į diską." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Nežinoma klaida failų įkėlime." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Negalima perskaityti failo" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Klaida perkeliant įkeltą failą, žiūrėti [doc@faq1-11]DUK 1.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Klaida perkeliant atsiųstą failą." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Negalima perskaityti (perkelti) įkelto failo." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4080,30 +4100,30 @@ msgstr "" "Jūs bandote įkelti failą su nepalaikomu glaudinimu (%s). Palaikymas gali " "būti neįgyvendintas arba išjungtas Jūsų konfigūracijoje." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Versija" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Atverti naują phpMyAdmin langą" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Spausdinti struktūrą" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4114,20 +4134,20 @@ msgid "No index defined!" msgstr "Nėra aprašytų indeksų!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksai" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4137,59 +4157,59 @@ msgstr "Indeksai" msgid "Action" msgstr "Veiksmas" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Indekso pavadinimas" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Elementų skaičius" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komentaras" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Panaikintas pirminis raktas." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeksas %s ištrintas." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Šalinti" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4197,19 +4217,19 @@ msgid "" msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Puslapis:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Kalba" @@ -4233,11 +4253,11 @@ msgstr "Serveris" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4256,14 +4276,15 @@ msgid "View" msgstr "Rodinys" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4272,8 +4293,8 @@ msgid "Table" msgstr "Lentelė" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4281,45 +4302,45 @@ msgstr "Lentelė" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Paieška" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Įterpti" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegijos" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Veiksmai" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Sekimas" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4335,16 +4356,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Duomenų bazė atrodo tuščia!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "SQL užklausa" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4352,22 +4373,22 @@ msgstr "" msgid "Events" msgstr "Įvykiai" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Projektavimas" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Textarea stulpeliai" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Duomenų bazės" @@ -4378,39 +4399,39 @@ msgid "User accounts" msgstr "Naudotojai" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Dvejetainis log'as" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikavimas" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Kintamieji" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Koduotės" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Varikliai" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4418,7 +4439,7 @@ msgstr[0] "Pakeista %1$d eilutė." msgstr[1] "Pakeistos %1$d eilutės." msgstr[2] "Pakeista %1$d eilučių." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4426,7 +4447,7 @@ msgstr[0] "Ištrinta %1$d eilutė." msgstr[1] "Ištrintos %1$d eilutės." msgstr[2] "Ištrinta %1$d eilučių." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4491,31 +4512,31 @@ msgstr "Kintamieji" msgid "Favorites" msgstr "Kintamieji" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "Missing information to save the bookmarked search." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Vartotojas %s jau yra!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4580,7 +4601,7 @@ msgstr "Rodyti atidarytas lenteles" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Rodyti pagrindinio serverio būklę" @@ -4638,88 +4659,88 @@ msgstr[0] "Minutė" msgstr[1] "Minutė" msgstr[2] "Minučių" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s galimas šiame MySQL serveryje." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s šiame MySQL serveryje yra išjungtas." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr "lentelės būsena nežinoma: " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Iš duomenų bazės" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nerasta!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Neteisingas duomenų bazės vardas" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Klaida pervadinant lentelę iš %1$s į %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Lentelė %s pervadinta į %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "Nepavyko išsaugoti lentelės naudotojo sąsajos nustatymų" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4727,19 +4748,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Pirminio rakto pavadinimas turi būti \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Negalima pervadinti indekso į PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Neaprašytos indekso dalys!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5014,7 +5035,7 @@ msgid "Date and time" msgstr "Sukurti naują indeksą" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5031,72 +5052,72 @@ msgstr "" msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statiniai duomenys" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Paaiškinti SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "be PHP kodo" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Vykdyti užklausą" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP kodas" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profiliavimas" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5104,65 +5125,65 @@ msgid "Edit inline" msgstr "Redagavimo režimas" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Sek" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s d., %s val., %s min. ir %s s" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Trūkstamas parametras:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Pereiti į „%s“ duomenų bazę." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Aplankas, kuris nurodytas įkeliamiems failams, nepasiekiamas." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Nėra failų išsiuntimui" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Išvalyti" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Vykdyti" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Naudotojai" @@ -5176,7 +5197,7 @@ msgstr "per minutę" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per valandą" @@ -5184,14 +5205,14 @@ msgstr "per valandą" msgid "per day" msgstr "per dieną" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Paieška" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5199,7 +5220,7 @@ msgstr "Paieška" msgid "Description" msgstr "Paaiškinimas" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Naudokite šią reikšmę" @@ -5240,22 +5261,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Pavadinimas" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Ilgis/reikšmės*" @@ -5266,7 +5287,7 @@ msgstr "Ilgis/reikšmės*" msgid "Attribute" msgstr "Atributai" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5287,13 +5308,13 @@ msgstr "Pridėti stulpelį" msgid "Select a column." msgstr "Pasirinkite du stulpelius" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "Pridėti stulpelį" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5301,7 +5322,7 @@ msgstr "Pridėti stulpelį" msgid "Attributes" msgstr "Atributai" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5310,27 +5331,27 @@ msgstr "" "Savo PHP konfigūracijoje Jūs įjungėte mbstring.func_overload. Šis nustatymas " "nėra suderinamas su phpMyAdmin ir gali pažeisti Jūsų duomenis!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Blogas serverio indeksas: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Serveris" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5338,20 +5359,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "galimas pažeidžiamumas" @@ -6014,7 +6035,7 @@ msgid "Compress on the fly" msgstr "Glaudinti" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Nustatymų failas" @@ -6142,13 +6163,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Ilgiausias vykdymo laikas" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Įtraukti %s sakinį" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Išsaugoti į failą" @@ -6158,7 +6179,7 @@ msgstr "Failo simbolių koduotė" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formatas" @@ -6293,7 +6314,7 @@ msgid "Save on server" msgstr "Išsaugoti serveryje" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Perrašyti esamus failus" @@ -6308,7 +6329,7 @@ msgid "Remember file name template" msgstr "Atsiminti failo vardo šabloną" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" @@ -6317,7 +6338,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL suderinamumo režimas" @@ -6351,7 +6372,7 @@ msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Pridėti %s" @@ -6549,7 +6570,7 @@ msgid "Customize the navigation tree." msgstr "Adaptuoti navigacijos rėmelį" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serveriai" @@ -7644,7 +7665,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Atpažinimo nustatymai" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Autentifikacijos tipas" @@ -8495,7 +8516,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Patikrinti ar naujausia versija" @@ -8506,10 +8527,10 @@ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Įjungia naujausios versijos patikrinimą pagrindiniame phpMyAdmin puslapyje" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versijos patikrinimas" @@ -8664,25 +8685,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document rašyklė" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Lentelės reikšmės %s ištuštintos." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Rodinys %s buvo panaikintas" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8697,12 +8718,12 @@ msgid "Position" msgstr "Padėtis" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Įvykio tipas" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Serverio ID" @@ -8711,7 +8732,7 @@ msgid "Original position" msgstr "Pirminė padėtis" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informacija" @@ -8725,16 +8746,16 @@ msgstr "Trumpinti rodomas užklausas" msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nėra duomenų bazių" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8743,26 +8764,26 @@ msgstr[0] "Sėkmingai pašalintos %s duomenų bazės." msgstr[1] "Sėkmingai pašalintos %s duomenų bazės." msgstr[2] "Sėkmingai pašalintos %s duomenų bazės." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Eilutės" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Iš viso" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Perteklius" @@ -8791,35 +8812,35 @@ msgstr "" msgid "Enable statistics" msgstr "Leisti statistiką" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Serverio kintamieji ir nustatymai" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data" msgid "No data to display" msgstr "Nėra duomenų" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Lentelė %1$s sėkmingai pakeista." @@ -8877,7 +8898,7 @@ msgstr "Pažymėti vartotojai sėkmingai pašalinti." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Užklausos klaida" @@ -8895,12 +8916,12 @@ msgstr "Redaguoti" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeksas" @@ -8923,13 +8944,13 @@ msgstr "Fulltext" msgid "Distinct values" msgstr "Peržiūrėti skirtingas reikšmes" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nėra pakeitimų" @@ -8951,190 +8972,194 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nėra slaptažodžio" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Slaptažodis:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Įveskite dar kartą" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Slaptažodžių Hešavimas" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Eksportuojamos šio serverio duomenų bazės" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Eksportuojamos duomenų bazės „%s“ lentelės" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Eksportuojamos eilutės iš „%s“ lentelės" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Eksportavimo tipas" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Failo pavadinimo šablonas:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Lentelės vardas" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Sukurti" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Failo pavadinimo šablonas:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s lentelė" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Atnaujinta" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Pasirinkite lenteles" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Eksporto metodas" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Trumpas - rodomi tik minimalūs nustatymai" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Pritaikytas - rodyti visus nustatymus" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Duomenų bazės" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Lentelės" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formatas:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Formato specifiniai nustatymai:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Koduotės konvertavimas:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Eilutės:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Parodyti keletą eilučių(tes)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Eilutės prasideda nuo:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Išvesti visas eilutes" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Išvestis:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Išsaugoti serverio kataloge pavadinimu %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Failo pavadinimo šablonas:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ taps serverio pavadinimu" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ taps duomenų bazės pavadinimu" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ taps lentelės pavadinimu" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -9145,115 +9170,115 @@ msgstr "" "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " "tekstas bus paliktas kaip yra. Žiūrėti %4$sDUK%5$s smulkesnei informacijai." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "naudoti šitai ateities eksportams" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Simbolių koduotė faile:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Glaudinti:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Rodyti išvedimą kaip tekstą" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "Eksportuojamos eilutės iš „%s“ lentelės" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horizontalūs (pasukti pavadinimai)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Išsaugoti į failą" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Pasirinkite lenteles" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Pasirinkite lenteles" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "Duomenų bazės vardas" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "Naujas puslapio vardas: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Stulpelių vardai" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Stulpelių vardai" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Nepavyko įkelti eksportuojamų plėtinių, prašome patikrinti įdiegtį!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "Sukurti versiją" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -9690,13 +9715,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nėra pakankamai vietos išsaugoti failui %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9704,38 +9729,38 @@ msgstr "" "Failas pavadinimu %s jau yra darbinėje stotyje, pakeiskite norimą pavadinimą " "arba pasirinkite nustatymą leidžiantį perrašyti esamus failus." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nėra teisių išsaugoti failui %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Atvaizdis įrašytas faile %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9744,45 +9769,45 @@ msgid "" msgstr "" "Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Keisti nustatymus %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktūra %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Eiti į rodinį (view)" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9793,84 +9818,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Sukurti indeksą  %s stulpeliams" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Paslėpti" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcija" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Dėl jo ilgio,
šis laukelis gali būti neredaguojamas (tinas)" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Arba" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web serverio katalogas atsiuntimams" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Įterpti" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ir tada" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9879,8 +9905,8 @@ msgid "" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9891,31 +9917,31 @@ msgstr "" msgid "Value" msgstr "Reikšmė" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Tik struktūra" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktūra ir duomenys" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Tik duomenys" @@ -9926,14 +9952,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Pridėti apribojimą" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9992,8 +10018,8 @@ msgstr "Procedūros" msgid "Views:" msgstr "Rodinys (Views)" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Rodyti" @@ -10041,19 +10067,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Išsaugoti į failą" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -10069,7 +10095,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Nepavyko išsaugoti konfigūracijos" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -10090,7 +10116,7 @@ msgstr "" msgid "Database operations" msgstr "Duomenų bazės eksportavimo nustatymai" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show indexes" msgid "Show hidden items" @@ -10193,13 +10219,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Pasirinkite du stulpelius" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -10455,8 +10481,8 @@ msgid "Rename database to" msgstr "Pervadinti duomenų bazę į" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10504,183 +10530,183 @@ msgstr "(pavieniui)" msgid "Move table to (database.table)" msgstr "Perkelti lentelę į (duomenų_bazė.lentelė)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Pervadinti lentelę į" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Lentelės komentarai" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Lentelės parinktys" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Saugojimo variklis" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopijuoti lentelę į (duomenų_bazė.lentelė)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Pereiti į lentelės kopiją" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Lentelės diagnostika" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Patikrinti lentelę" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Patikrinti lentelę" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentuoti lentelę" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Lentelės buferis %s išvalytas." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Išvalyti ir perkrauti lentelės podėlį (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizuoti" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Taisyti lentelę" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Ištrinti duomenis arba lentelę" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Ištrinti lentelės duomenis (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Ištrinti lentelę (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizuoti" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Pažymėti" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimizuoti" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Perdaryti" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Taisyti" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Uždaryti" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Skaidinio diagnostika" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Skaidinys %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Pašalinti skaidymą" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Negalima perkelti lentelės į ją pačią!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Negalima kopijuoti lentelės į ją pačią!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Lentelė %s perkelta į %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Letelė %s nukopijuota į %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Lentelė %s perkelta į %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Letelė %s nukopijuota į %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tuščias lentelės vardas!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Šis formatas neturi nustatymų" @@ -10710,18 +10736,18 @@ msgstr "Rodyti spalvą" msgid "Only show keys" msgstr "Rodyti tik raktus" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Neįmanoma prisijungti: neteisingi duomenys." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Jūs naudojate %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10730,7 +10756,7 @@ msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 #, fuzzy msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " @@ -10743,7 +10769,7 @@ msgstr "" "stoties adresą, prisijungimo vardą ir slaptažodį) ir įsitikinkite ar jie " "sutampa su duomenimis gautais iš darbinės stoties administratoriaus." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10770,15 +10796,15 @@ msgstr "Naudotojo vardas:" msgid "Server Choice:" msgstr "Pasirinkti serverį" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10841,7 +10867,7 @@ msgstr "Duomenų išvedimo nustatymai" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" @@ -10850,7 +10876,7 @@ msgstr "Sukurta duomenų kopija lentelei" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Įvykis" @@ -10858,8 +10884,8 @@ msgstr "Įvykis" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10955,7 +10981,7 @@ msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11540,7 +11566,7 @@ msgstr "Turinys" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Papildomai" @@ -11982,18 +12008,18 @@ msgstr "" "Iš naujo prisijunkite prie phpMyAdmin tam, kad užkrautumėte atnaujintą " "konfigūracijos failą." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Aprašymo nėra" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12001,43 +12027,43 @@ msgid "" "configuration storage there." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Pagrindinio serverio replikavimas" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo " "(replication) procese." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Rodyti prisijungusius pavaldinius" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Pridėti pavaldžiojo serverio (slave) dauginimo (replication) naudotoją" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Pagrindinio serverio nustatymai" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -12058,19 +12084,19 @@ msgstr "" "arba Jūs galite pasirinkti ignoruoti visas duomenų bazes ir pasirinkti " "kažkurias duomenų bazes dauginimui. Prašome pasirinkti režimą:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Padauginti visas duomenų bazes; Ignoruoti:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignoruoti visas duomenų bazes; Padauginti:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Prašome pasirinkti duomenų bazes:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -12078,7 +12104,7 @@ msgstr "" "Dabar įdėkite sekančias eilutes į [mysqld] skyrelio pabaigą faile my.cnf ir " "po to prašome iš naujo paleiskite MySQL serverį." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -12088,73 +12114,73 @@ msgstr "" "to turėtumėte pamatyti informacinę žinutę, kad šis serveris yra " "sukonfigūruotas kaip pagrindinis (master)." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Pavaldžiojo serverio replikavimas" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Nesaugus susijungimas" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Pavaldžioji (slave) SQL gija neveikia!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Pavaldžioji (slave) IO gija neveikia!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Serveris yra sukonfigūruotas kaip pavaldusis (slave) dauginimo (replication) " "procese. Ar norėtume:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Valdyti pavaldinį:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Pilnas paleidimas" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Pilnas išjungimas" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Paleisti iš naujo pavaldųjį serverį (reset slave)" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Pradėti tik SQL giją" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Sustabdyti tik SQL giją" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Pradėti tik IO giją" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Sustabdyti tik IO giją" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Pakeisti arba perkonfigūruoti pagrindinį (master) serverį" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -12163,27 +12189,27 @@ msgstr "" "Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis " "(slave). Ar norėtumėte sukonfigūruoti?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Klaidų valdymas:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Klaidų praleidinėjimas gali nuvesti iki nesusinchronizavimo tarp pagrindinio " "ir jam pavaldžių serverių!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Praleisti šią klaidą" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Praleisti šią klaidą" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -12192,11 +12218,11 @@ msgstr "" "Šis serveris nėra sukonfigūruotas kaip pagrindinio serverio dauginimo " "procesas. Ar Jūs norėtumėte sukonfigūruoti jį?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Pavaldžiojo (Slave) serverio konfigūracija" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -12205,192 +12231,192 @@ msgstr "" "nustatymų faile (my.cnf). Jei ne, tada įterpkite šią eilutę į [mysqld] " "skiltį:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Naudotojo vardas" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Naudotojo vardas" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Slaptažodis" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Prievadas (jungtis)" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Pagrindinio serverio būklė (Master status)" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Kintamasis" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Darbinė stotis" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Bet kurį vartotoją" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Įveskite dar kartą" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Generuoti slaptažodį" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Dauginimo būsena" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Pagrindinio serverio replikavimas" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Diagrama sėkmingai sukurta." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Pagrindinio serverio replikavimas" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Dauginimo būsena" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Pagrindinio serverio replikavimas" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Klaida" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Nežinoma klaida" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Nepavyko prisijungti prie pagrindinio (master) serverio %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nepavyko perskaityti pagrindinio (master) serverio žurnalo (log). Galima " "privilegijų problema pagrindiniame serveryje." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Nepavyko pakeisti pagrindinio (master) serverio" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "Pagrindinis (master) serveris sėkmingai pakeistas į %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12411,7 +12437,7 @@ msgstr "Įvykis %1$s buvo pakeistas." msgid "Event %1$s has been created." msgstr "Įvykis %1$s buvo sukurtas." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -12423,83 +12449,83 @@ msgstr "Viena ar daugiau klaidų įvyko vykdant Jūsų užklausą:" msgid "Edit event" msgstr "Redaguoti įvykį" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detalės" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Įvykio tipas" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Pakeisti į %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Vykdyti" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Vykdyti kas" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "Paleisti" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Pabaiga" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Pabaigus išlaikyti" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide an event name!" msgstr "Jūs privalote pateikti teisingą lentelės vardą" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -12522,7 +12548,7 @@ msgstr "Įvykių planuotojo būsena" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Grąžina" @@ -12534,129 +12560,129 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redagavimo režimas" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Blogas serverio indeksas: %s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Sukurta %1$s lentelė." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Column %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Stulpelis %s panaikintas" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Column %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Stulpelis %s panaikintas" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Stulpelių vardai" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametrai" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Nukreipimas" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Pridėti parametrą" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Pašalinti paskutinį parametrą" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Gražinimo tipas" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Grąžinimo Ilgis/reikšmės" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Grąžinimo parametrai" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Yra apibrėžtas" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Saugumo tipas" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL duomenų priėjimas" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a routine name!" msgstr "Jūs privalote pateikti teisingą lentelės vardą" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12664,13 +12690,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12692,42 +12718,42 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Laikas" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a trigger name!" msgstr "Jūs privalote pateikti teisingą lentelės vardą" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Jūs privalote pateikti teisingą lentelės vardą" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid event for the trigger!" msgstr "Jūs privalote pateikti teisingą lentelės vardą" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "Jūs privalote pateikti teisingą lentelės vardą" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12854,93 +12880,93 @@ msgstr "Simbolių rinkiniai ir Palyginimai" msgid "Databases statistics" msgstr "Duomenų bazių statistika" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Be teisių." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Įtraukti visas teises, išskyrus GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duomenų bazes ir lenteles." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duomenų bazes ir lenteles." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti serverio nustatymus, bei išvalyti laikinąją atmintį (cache)." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Leisti peržiūrėti procesus visiems naudotojams" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Negalioja šioje MySQL versijoje." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duomenų bazių sąrašo." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12950,134 +12976,108 @@ msgstr "" "administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " "vartotojų atjungimui." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus rodinius (view)." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Leisti įterpti ir pašalinti trigerius" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujas saugomas programas (stored routines)." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Leisti įvykdyti saugomas programas (stored routines)." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Nėra" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Ilgalaikiai sujungimai" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Ilgalaikiai sujungimai" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Išteklių apribojimai" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Riboti užklausų, kurias naudotojas gali siųsti į serverį, kiekį per valandą." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13085,287 +13085,280 @@ msgstr "" "Riboti komandų, kurios modifikuoja lenteles ar duomenų bazes, kiekį per " "valandą." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Riboti prisijungimų kiekį per valandą." # gal labiau kartu vykstančių -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turėti." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Column names" msgid "Routine" msgstr "Stulpelių vardai" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Leisti įvykdyti saugomas programas (stored routines)." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administracija" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globalios teisės" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "globalus" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Specifinės duomenų bazių privilegijos" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " "privilegijų lentelės." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentifikavimas slapukais" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Prisijungimo tapatybės nustatymas" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Autentifikavimas slapukais" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Prisijungimo informacija" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Naudotojo vardas" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Logo pavadinimas" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Atpažinimas" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Slaptažodžių Hešavimas" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs panaikinote privilegijas %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Pridėti naudotoją" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Vartotojo duomenų bazė" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Suteikti visas privilegijas duomenų bazei „%s“." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Naudotojas buvo pridėtas." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Suteikti" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Nerasta jokių naudotojų." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Bet kurį(ią)" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globalus" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "pakaitos simbolis" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Panaikinti" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redaguoti serverį" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… palikti seną vartotoją." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… pašalinti seną vartotoją iš vartotojų lentelės." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13373,124 +13366,107 @@ msgstr "" "… pašalinti seną vartotoją iš vartotojų lentelės ir po to perkrauti " "privilegijas." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Pašalinti pažymėtus vartotojus" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " -"vartotojai." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegijos" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Naudotojas" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Naudotojai" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Naudotojų apžvalga" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13502,7 +13478,7 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13520,11 +13496,11 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." @@ -13814,12 +13790,12 @@ msgstr "Komanda" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtrai" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show more actions" msgid "Show only active" @@ -13849,12 +13825,12 @@ msgstr "per minutę" msgid "per second:" msgstr "per sekundę" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Parametrai" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13878,33 +13854,33 @@ msgstr "Rodyti nesuformatuotas reikšmes" msgid "Related links:" msgstr "Susijusios nuorodos:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13912,78 +13888,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13991,7 +13967,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13999,42 +13975,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Skaičius užklausų, kad atnaujinti eilutę lentelėje." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Skaičius užklausų, kad įtraukti eilutę lentelėje." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Tuščių puslapių skaičius." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14042,33 +14018,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14077,244 +14053,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Esamu momentu laukiančių skaitymų skaičius." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Sukurtų puslapių skaičius." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Puslapių skaitymų skaičius." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Įrašytų puslapių skaičius." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Įkelto failo formatas" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Failų kurie yra atidaryti skaičius." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Lentelių kurios yra atidarytos skaičius." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Podėlio kreipimųsi skaičius." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14322,99 +14298,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Surikiuotų eilučių skaičius." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14422,18 +14398,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14441,13 +14417,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sekimas yra neaktyvus." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14484,49 +14460,49 @@ msgstr "Duomenų bazės serveris" msgid "Table level tabs" msgstr "Lentelės komentarai" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Rodinys (Views)" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Pridėti naudotoją" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Be teisių." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Stulpelių vardai: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Serverio versija" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Duomenų bazės serveris" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14642,7 +14618,7 @@ msgstr "Vykdyti SQL sakinius duomenų bazėje %s" msgid "Run SQL query/queries on table %s" msgstr "Vykdyti SQL sakinius duomenų bazėje %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Išvalyti" @@ -14735,179 +14711,179 @@ msgstr "Deaktyvuoti dabar" msgid "Version" msgstr "Versija" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Sukurta" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Atnaujinta" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Sukurti versiją" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Sekimo ataskaita" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Momentinė struktūros kopija" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktyvus" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "neaktyvus" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Ištrinti sekimo duomenis iš ataskaitos" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nėra duomenų" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL vykdymas" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Eksportuoti kaip %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Vartotojo vardas" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Jokio" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Užkomentuokite (panaikinkite) šias dvi eilutes jeigu Jums jų nereikia." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version" msgid "Version %1$s of %2$s was deleted." msgstr "Sukurti versiją" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nesekamos lentelės" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sekti lentelę" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Sekamos lentelės" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Paskutinė versija" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Trinami sekimo duomenys" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versijos" @@ -14915,7 +14891,7 @@ msgstr "Versijos" msgid "Manage your settings" msgstr "Keiskite savo nustatymus" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfigūracija išsaugota." @@ -14941,7 +14917,7 @@ msgstr "Klaida ZIP archyve:" msgid "No files found inside ZIP archive!" msgstr "ZIP archyve nerasta failų!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14951,57 +14927,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Nepavyko išsaugoti nustatymų, išsiųstoje formoje yra klaidų" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nepavyko importuoti konfigūracijos" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfigūracijoje yra neteisingų duomenų tam tikruose laukeliuose." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Išsaugota: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importuoti iš failo" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importuoti iš naršyklės atminties" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Nustatymai bus importuoti iš Jūsų naršyklės vidinės atminties." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Jūs neturite išsaugotų nustatymų!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Šios galimybės Jūsų interneto naršyklė nepalaiko" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Sulieti su dabartiniais nustatymais" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -15010,25 +14986,25 @@ msgstr "" "Jūs galite nustatyti daugiau nuostatų modifikuojant config.inc.php, " "pavyzdžiui naudojantis %sDiegimo scenarijumi%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Išsaugoti į failą" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Išsaugoti į naršyklės atmintinę" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Nustatymai bus išsaugoti Jūsų naršyklės vidinėje atmintyje." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Esantys nustatymai bus perrašyti!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "Jūs galite atkurti (nustatyti) pradinius nustatymus." @@ -15036,46 +15012,46 @@ msgstr "Jūs galite atkurti (nustatyti) pradinius nustatymus." msgid "View dump (schema) of databases" msgstr "Peržiūrėti duomenų bazių atvaizdį (schemą)" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nėra privilegijų" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Gija %s buvo sėkmingai išjungta." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Parsisiųsti" @@ -15083,11 +15059,11 @@ msgstr "Parsisiųsti" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Nepavyko įkelti arba išsaugoti konfigūracijos" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -15098,7 +15074,7 @@ msgstr "" "[doc@setup_script]dokumentacijoje[/doc]. Kitaip Jūs galėsite jį tik " "parsisiųsti ir peržiūrėti." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -15107,84 +15083,87 @@ msgstr "" "potencialiai jautrią informaciją, kaip slaptažodžius) yra perduodami " "(persiunčiami) nešifruotai!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Jeigu Jūsų serveris sukonfigūruotas priimti HTTPS užklausas eikite [a@" "%s]čia[/a] tam, kad naudoti saugų susijungimą." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Nesaugus susijungimas" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfigūracija išsaugota." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfigūracija išsaugota." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Apžvalga" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Rodyti paslėptas žinutes (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Nėra jokių sukonfigūruotų serverių" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Naujas serveris" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Įprastinė kalba" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "leisti vartotojui pasirinkti" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- tuščia -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Įprastinis serveris" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Eilutės galas" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Rodymas" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Įkelti" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin tinklalapis" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Paremti" @@ -15221,7 +15200,7 @@ msgstr "Ignoruoti klaidas" msgid "Show form" msgstr "Rodyti formą" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -15229,15 +15208,15 @@ msgstr "" "Nepavyko nuskaityti versijos. Galbūt Jūs esate atsijungęs arba serveris " "neatsako." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Gautas netinkamas versijos formatas iš serverio" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Nesuprantama versijos eilutė" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -15246,7 +15225,7 @@ msgstr "" "Jūs naudojate Git versiją, paleiskite [kbd]git pull[/kbd] :-)[br]Naujausia " "stabili versija yra %s, išleista %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Prieinama naujesnė stabili versija" @@ -15261,12 +15240,12 @@ msgstr "Nėra duomenų" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "„%s“ duomenų bazė neegzistuoja." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Lentelė %s jau yra!" @@ -15279,36 +15258,36 @@ msgstr "Peržiūrėti lentelės struktūros atvaizdį" msgid "Invalid table name" msgstr "Neteisingas lentelės vardas" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Nepasirinkti įrašai" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Nepasirinkti įrašai" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL užklausos įvykdytos." @@ -15533,7 +15512,7 @@ msgid "List of available transformations and their options" msgstr "Galimos transformacijos" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15560,7 +15539,7 @@ msgstr "" "\\xyz' ar 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16094,17 +16073,17 @@ msgid "Size" msgstr "Dydis" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Sukurta" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Paskutinis atnaujinimas" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Paskutinis patikrinimas" @@ -16139,6 +16118,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Trinami sekimo duomenys" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16161,10 +16146,48 @@ msgstr "Sukurti privilegijas šiai lentelei" msgid "Add privileges on the following table:" msgstr "Sukurti privilegijas šiai lentelei" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Nėra" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Pašalinti pažymėtus vartotojus" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " +"vartotojai." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Išteklių apribojimai" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" @@ -16197,7 +16220,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16384,7 +16407,7 @@ msgstr "Naudotojas" msgid "Comment:" msgstr "Komentaras" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16424,30 +16447,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Pridėti apribojimą" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Vidiniai sąryšiai" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Vidiniai sąryšiai" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16513,13 +16536,13 @@ msgstr "Pirminė padėtis" msgid "Replaced string" msgstr "Susijusios nuorodos" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "Padaugintas" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" @@ -16608,7 +16631,7 @@ msgid "at beginning of table" msgstr "Lentelės pradžioje" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16642,28 +16665,28 @@ msgstr "Eilutės ilgis" msgid "Index length" msgstr "Eilutės ilgis" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Partition %s" msgid "Partition table" msgstr "Skaidinys %s" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Pašalinti skaidymą" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Keisti rodinį" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Vietos naudojimas" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektyvus" @@ -16694,33 +16717,33 @@ msgstr "Analizuoti lentelės struktūrą" msgid "Track view" msgstr "Sekti lentelę" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Eilučių statistika" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "pastovus" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinaminis" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Eilutės ilgis" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Eilutės dydis" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16733,50 +16756,50 @@ msgstr "Stulpelis %s panaikintas." msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Išvaizda" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Gauti daugiau išvaizdų!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Galimi MIME-tipai" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Galimos transformacijos" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Galimos transformacijos" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Paaiškinimas" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Sekimo ataskaita" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Neturite pakankamai teisių čia būti!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profilis papildytas." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16852,7 +16875,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16877,19 +16900,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Nepažymėjote duomenų bazės." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16950,29 +16973,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Įvykis %1$s buvo sukurtas." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Lentelės vardo šablonas" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Lentelės pradžioje" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16989,10 +17012,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Lentelės pradžioje" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17039,7 +17068,7 @@ msgstr "" msgid "strict error" msgstr "Rinkti klaidas" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18246,6 +18275,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autentifikavimas slapukais" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/lv.po b/po/lv.po index ac662c25d9..cd9a8b5b6f 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-01-23 11:11+0000\n" "Last-Translator: Arturs Nikolajevs \n" "Language-Team: Latvian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Piedalies" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primārā atslēga pievienota uz lauka %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Labot" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2012,294 +2018,294 @@ msgstr "" msgid "End of step" msgstr "Tabulas beigās" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Saglabāt" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Meklēt" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Izvēlies 2 kolonnas" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Izvēlies 2 dažādas kolonnas" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Satura rādītājs" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopēt" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkts" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Līnija" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Ģeometrija" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Iekšējais aplis" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ārējais aplis:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lapas numurs:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Iezīmēt visu" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Iezīmēt visu" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2307,243 +2313,243 @@ msgstr "Iezīmēt visu" msgid "Open page" msgstr "Aizņem" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Iezīmēt visu" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienība" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izvēlieties lapu redigēšanai" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid page name" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relāciju shēma" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Kolonnas vērtība \"%s\"" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Nosūtīt" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Rādīt visu" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Oriģinālā pozīcija" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atcelt" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Pārtraukts" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Importēt failus" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izvēlieties tabulas" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Drukāt" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Nav datubāzu" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rādīt visu" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Pievienot jaunu lauku" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Rādīt režģi" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2551,122 +2557,122 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "Servera ID" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "Servera ID" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "Rādīt tabulas" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignorēt" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rādīt šo vaicājumu šeit atkal" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to delete user group \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Vai Jūs tiešām vēlaties dzēst lietotāju grupu \"%s\"?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL vaicājums" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentārs tabulai" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2675,38 +2681,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopēt datubāzi uz" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Pievienot jaunu lauku" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Iepriekšējie" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2714,96 +2740,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2811,78 +2837,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2890,225 +2916,225 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nav" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundē" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Lietot teksta lauku" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid credit card number" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a value less than or equal to {0}" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Kļūda" @@ -3169,20 +3195,20 @@ msgid "Charset" msgstr "Kodējums" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Izkārtojumi" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binārais" @@ -3379,7 +3405,7 @@ msgid "Czech-Slovak" msgstr "Čehu-Slovāku" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nazināma" @@ -3429,7 +3455,7 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3437,48 +3463,48 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Meklēt" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL vaicājums" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatbild" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Add new field" msgid "Missing connection parameters!" msgstr "Pievienot jaunu lauku" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3590,67 +3616,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL vaicājums uz datubāzes %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Izpildīt vaicājumu" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Meklēt" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Meklēt" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Meklēt" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Rāda grāmatzīmi" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Meklēt" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "kaut viens no vārdiem" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "visi vārdi" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "precīza frāze" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "kā regulārā izteiksme" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Meklēšanas rezultāti \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3658,7 +3684,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Kopumā: %s rezultāti" msgstr[1] "Kopumā: %s rezultāti" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3666,53 +3692,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Apskatīt" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Dati tabulai" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Meklēt datubāzē" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Atrast:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Vārdi ir atdalīti ar tukšumu (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tabulā(s):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Neiezīmēt neko" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -3740,16 +3760,16 @@ msgstr "Filtrs" msgid "Search this table" msgstr "Meklēt datubāzē" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Sākums" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3758,8 +3778,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Iepriekšējie" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3768,8 +3788,8 @@ msgctxt "Next page" msgid "Next" msgstr "Nākamie" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3780,7 +3800,7 @@ msgstr "Beigas" msgid "All" msgstr "Visi" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3791,8 +3811,8 @@ msgstr "Rindu skaits vienā lapā" msgid "Sort by key" msgstr "Kārtot pēc atslēgas" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3814,10 +3834,10 @@ msgstr "Kārtot pēc atslēgas" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "Darbības" @@ -3867,111 +3887,111 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Ieraksts tika dzēsts" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Nogalināt" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Var būt aptuvens skaits. Skatīt [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Parādu rindas" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "kopā" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Vaicājums ilga %01.4f s" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Ar iezīmēto:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Iezīmēt visu" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Links nav atrasts" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -3979,7 +3999,7 @@ msgid "None" msgstr "Nav" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3987,73 +4007,73 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Imports" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy msgid "Automatically send report next time" msgstr "Servera versija" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Nevar nolasīt failu!" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4062,29 +4082,29 @@ msgstr "" "Jūs mēģinājāt augšupielādēt failu ar neatbalstītu kompresijas tipu (%s). Vai " "nu šis tips nav atbalstīts vai ir izslēgts konfigurācijā." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy msgid "Git information missing!" msgstr "Piekļuves informācija" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Izdrukas versija" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4095,20 +4115,20 @@ msgid "No index defined!" msgstr "Nav definēti indeksi!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4118,31 +4138,31 @@ msgstr "Indeksi" msgid "Action" msgstr "Darbība" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Atslēgas nosaukums" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalitāte" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4150,47 +4170,47 @@ msgstr "Kardinalitāte" msgid "Comment" msgstr "Komentāri" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primārā atslēga tika izdzēsta." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indekss %s tika izdzēsts." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Likvidēt" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Lapas numurs:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4214,11 +4234,11 @@ msgstr "Serveris" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4237,14 +4257,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4253,8 +4274,8 @@ msgid "Table" msgstr "Tabula" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4262,45 +4283,45 @@ msgstr "Tabula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Meklēt" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Pievienot" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilēģijas" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Darbības" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4316,16 +4337,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4333,22 +4354,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Datubāzes" @@ -4359,12 +4380,12 @@ msgid "User accounts" msgstr "Lietotājs" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binārais log-fails" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4372,34 +4393,34 @@ msgid "Replication" msgstr "Relācijas" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Mainīgie" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row deleted." @@ -4407,7 +4428,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Rindas nav iezīmētas" msgstr[1] "Rindas nav iezīmētas" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row inserted." @@ -4475,29 +4496,29 @@ msgstr "Mainīgie" msgid "Favorites" msgstr "Mainīgie" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Lietotājs %s jau eksistē!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Allows reading data." msgid "Error while loading the search." @@ -4565,7 +4586,7 @@ msgstr "Rādīt tabulas" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4621,82 +4642,82 @@ msgid_plural "%d minutes" msgstr[0] "lietošanā" msgstr[1] "lietošanā" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "Rādīt tabulas" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy msgid "Invalid database:" msgstr "Nav datubāzu" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "Tabulā(s):" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Servera versija" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabula %s tika pārsaukta par %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4704,19 +4725,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primārās atslēgas nosaukumam jābūt \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Nevar pārsaukt indeksu par PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nav definēto indeksa daļu!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4987,7 +5008,7 @@ msgid "Date and time" msgstr "Izveidot jaunu indeksu" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5006,70 +5027,70 @@ msgstr "Kopā" msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez PHP koda" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izpildīt vaicājumu" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Izveidot PHP kodu" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Atjaunot" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5077,66 +5098,66 @@ msgid "Edit inline" msgstr "Pievienot jaunu lauku" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Sv" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Pievienot jaunu lauku" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "pāriet pie datubāzes \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web servera augšupielādes direktorija" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Iztukšot" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5152,7 +5173,7 @@ msgstr "minūtē" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "stundā" @@ -5160,14 +5181,14 @@ msgstr "stundā" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Meklēt" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5175,7 +5196,7 @@ msgstr "Meklēt" msgid "Description" msgstr "Apraksts" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Lietot šo vērtību" @@ -5216,22 +5237,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nosaukums" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Garums/Vērtības*" @@ -5242,7 +5263,7 @@ msgstr "Garums/Vērtības*" msgid "Attribute" msgstr "Atribūti" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5265,13 +5286,13 @@ msgstr "Pievienot %s lauku(s)" msgid "Select a column." msgstr "Izvēlies 2 kolonnas" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "Pievienot %s lauku(s)" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5279,34 +5300,34 @@ msgstr "Pievienot %s lauku(s)" msgid "Attributes" msgstr "Atribūti" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Serveris" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5314,20 +5335,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5887,7 +5908,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6000,13 +6021,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Parametrs" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Saglabāt kā failu" @@ -6017,7 +6038,7 @@ msgstr "Tabulas kodējums:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formats" @@ -6163,7 +6184,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Pārrakstīt eksistējošos failus" @@ -6179,7 +6200,7 @@ msgid "Remember file name template" msgstr "Faila nosaukuma šablons" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" @@ -6190,7 +6211,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6222,7 +6243,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -6402,7 +6423,7 @@ msgid "Customize the navigation tree." msgstr "Datubāzu eksporta opcijas" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 #, fuzzy msgid "Servers" msgstr "Serveris" @@ -7309,7 +7330,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7999,7 +8020,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8007,10 +8028,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8156,24 +8177,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentācija" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabula %s tika iztukšota." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Lauks %s tika izdzēsts" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8188,12 +8209,12 @@ msgid "Position" msgstr "Pozīcija" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Notikuma tips" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Servera ID" @@ -8202,7 +8223,7 @@ msgid "Original position" msgstr "Oriģinālā pozīcija" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informācija" @@ -8216,16 +8237,16 @@ msgstr "Ierobežot parādīto vaicājumu garumu" msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nav datubāzu" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Datubāze %1$s tika izveidota." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8233,26 +8254,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s datubāzes tika veiksmīgi dzēstas." msgstr[1] "%s datubāzes tika veiksmīgi dzēstas." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rindas" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Kopā" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Pārtēriņš" @@ -8282,35 +8303,35 @@ msgstr "" msgid "Enable statistics" msgstr "Ieslēgt statistiku" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Servera mainīgie un konfigurācija" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "Dati netika atrasti" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." @@ -8365,7 +8386,7 @@ msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8384,12 +8405,12 @@ msgstr "Labot" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indekss" @@ -8411,13 +8432,13 @@ msgstr "Pilni teksti" msgid "Distinct values" msgstr "Pārlūkot ārējās vērtības" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Netika labots" @@ -8439,202 +8460,206 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Nevar ielādēt importētos spraudņus, lūdzu pārbaudi savu instalāciju!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nav paroles" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Parole:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Atkārtojiet" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Paroles jaukšana" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Izveidot jaunu tabulu datubāzē %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Izveidot jaunu tabulu datubāzē %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Eksporta veids" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Faila nosaukuma šablons" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "User name" msgid "Template name" msgstr "Lietotājvārds" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Izveidot" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Faila nosaukuma šablons" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s tabula(s)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Atjaunot vaicājumu" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Izvēlieties tabulas" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Eksporta veids" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Datubāzes" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tabulas" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Formats" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Transformācijas opcijas" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Rindas" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Saglabāt uz servera direktorijā %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Faila nosaukuma šablons" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8642,124 +8667,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Tabulas kodējums:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Kompresija" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "Arhivēts ar zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "Arhivēts ar gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Saglabāt kā failu" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Izveidot jaunu tabulu datubāzē %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horizontālā (pagriezti virsraksti)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Saglabāt kā failu" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Izvēlieties tabulas" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Izvēlieties tabulas" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "Datubāze" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Nav tabulu" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Kolonnu nosaukumi" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Kolonnu nosaukumi" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Servera versija" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Servera versija" @@ -9166,13 +9191,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nepietiek vietas, lai saglabātu failu %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9180,75 +9205,75 @@ msgstr "" "Fails %s jau eksistē uz servera. Lūdzu nomainiet faila nosaukumu vai " "atzīmējiet failu pārrakstīšanas opciju." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web serverim nav tiesību rakstīt failā %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tikai struktūra" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9260,84 +9285,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Izveidot indeksu uz %s laukiem" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcija" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Sava garuma dēļ,
šis lauks var būt nerediģējams " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Vai" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web servera augšupielādes direktorija" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Pievienot" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9347,8 +9373,8 @@ msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9359,31 +9385,31 @@ msgstr "" msgid "Value" msgstr "Vērtība" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Tikai struktūra" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktūra un dati" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Tikai dati" @@ -9394,14 +9420,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Pievienot ierobežojumus" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9459,8 +9485,8 @@ msgstr "Procesi" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Rādīt" @@ -9506,19 +9532,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Saglabāt kā failu" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9534,7 +9560,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Pievienot %s lauku(s)" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9557,7 +9583,7 @@ msgstr "" msgid "Database operations" msgstr "Datubāzu eksporta opcijas" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9661,13 +9687,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Izvēlies 2 kolonnas" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9920,8 +9946,8 @@ msgid "Rename database to" msgstr "Pārsaukt datubāzi par" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9972,81 +9998,81 @@ msgstr "(atsevišķi)" msgid "Move table to (database.table)" msgstr "Pārvietot tabulu uz (datubāze.tabula)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Pārsaukt tabulu uz" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentārs tabulai" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabulas opcijas" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopēt tabulu uz (datubāze.tabula)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Pārslēgties uz nokopēto tabulu" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabulas apkalpošana" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizēt tabulu" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Pārbaudīt tabulu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentēt tabulu" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabula %s tika atsvaidzināta." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Atsvaidzināt tabulu (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Restaurēt tabulu" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10054,107 +10080,107 @@ msgstr "Restaurēt tabulu" msgid "Delete data or table" msgstr "Dati tabulai" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nav datubāzu" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "Čehu" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Aizvērt" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Tabulas apkalpošana" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Nevar pārvietot tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Nevar nokopēt tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabula %s tika pārvietota uz %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabula %s tika pārkopēta uz %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabula %s tika pārvietota uz %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabula %s tika pārkopēta uz %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tabulas nosaukums nav norādīts!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10184,25 +10210,25 @@ msgstr "Rādīt krāsas" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Nevar pieslēgties: kļūda konfigurācijā." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Laipni lūgti %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10214,7 +10240,7 @@ msgstr "" "failā, un pārliecinieties, ka tie atbilst informācijai, ko Jums deva MySQL " "servera administrators." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10241,15 +10267,15 @@ msgstr "Lietotājvārds:" msgid "Server Choice:" msgstr "Servera izvēle" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10325,7 +10351,7 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dati tabulai" @@ -10334,7 +10360,7 @@ msgstr "Dati tabulai" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "Nosūtīts" @@ -10343,8 +10369,8 @@ msgstr "Nosūtīts" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10453,7 +10479,7 @@ msgstr "Likt kolonnu nosaukumus pirmajā rindā" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11017,7 +11043,7 @@ msgstr "Satura rādītājs" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstras" @@ -11426,57 +11452,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Bez apraksta" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11485,317 +11511,317 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Lūdzu izvēlieties datubāzi" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "Konekcijas" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Pilni teksti" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tikai struktūra" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tikai struktūra" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Lietotājvārds" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Lietotājvārds" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Parole" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Kārtošana" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Mainīgais" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Hosts" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokāls" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Šis hosts" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Jebkurš lietotājs" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Lietot teksta lauku" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Atkārtojiet" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Change password" msgid "Generate password:" msgstr "Mainīt paroli" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Kļūda" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Privilēģijas tika veiksmīgi pārlādētas." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11817,7 +11843,7 @@ msgstr "Tabula %s tika izdzēsta" msgid "Event %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11827,85 +11853,85 @@ msgstr "" msgid "Edit event" msgstr "Nosūtīts" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Notikuma tips" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Labot" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Izpildīt iegrāmatoto vaicājumu" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Statuss" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Beigas" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Pilnas INSERT izteiksmes" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -11928,7 +11954,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -11942,135 +11968,135 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolonnu nosaukumi" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Izveidošana" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Pievienot jaunu lauku" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pārsaukt datubāzi par" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Garums/Vērtības*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabulas opcijas" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vaicājuma tips" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12078,13 +12104,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12108,36 +12134,36 @@ msgstr "Tabula %s tika izdzēsta" msgid "Edit trigger" msgstr "Pievienot jaunu lietotāju" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Lietotājvārds" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Laiks" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12273,90 +12299,90 @@ msgstr "Rakstzīmju kodējumi un izkārtojumi" msgid "Databases statistics" msgstr "Datubāzu statistika" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Nav privilēģiju." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Ļauj lasīt datus." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Ļauj mainīt datus." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12366,138 +12392,110 @@ msgstr "" "Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " "citu lietotāju procesu nogalināšana." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Ļauj veidot un dzēst indeksus." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nav" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "Konekcijas" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "Konekcijas" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Resursu ierobežojumi" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12505,287 +12503,280 @@ msgstr "" "Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " "lietotājs var izpildīt stundas laikā." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" msgid "Routine" msgstr "Pievienot jaunu lauku" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "Ļauj veidot un dzēst indeksus." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy msgid "Allows executing this routine." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administrācija" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globālās privilēģijas" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "globāls" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " "pārlādēšanas." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentācija" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Mainīt paroli" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Dokumentācija" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Piekļuves informācija" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Lietotājvārds" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Log-faila nosaukums" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentācija" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Paroles jaukšana" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs atņēmāt privilēgijas lietotājam %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Pievienot lietotāju" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Datubāzu eksporta opcijas" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Pārbaudīt privilēģijas uz datubāzi \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Lietotāji, kam ir pieja datubāzei \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy msgid "User has been added." msgstr "Lauks %s tika izdzēsts" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Piešķirt" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Jebkurš" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globāls" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "aizstājējzīme" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Atsaukt" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… paturēt veco lietotāju." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… dzēst veco lietotāju no lietotāju tabulas." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12793,121 +12784,107 @@ msgstr "" "… dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Dzēst izvēlētos lietotājus" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilēģijas" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Lietotājs" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Lietotājs" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Lietotāju pārskats" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12920,7 +12897,7 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12939,11 +12916,11 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." @@ -13238,12 +13215,12 @@ msgstr "Komanda" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "Rādīt tabulas" @@ -13271,12 +13248,12 @@ msgstr "minūtē" msgid "per second:" msgstr "sekundē" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Parametrs" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13306,35 +13283,35 @@ msgstr "Rādīt tabulas" msgid "Related links:" msgstr "Relācijas" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13342,78 +13319,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13421,7 +13398,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13429,42 +13406,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13472,33 +13449,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13507,243 +13484,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Tabulas kodējums:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13751,99 +13728,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13851,18 +13828,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13870,12 +13847,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vaicājuma tips" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13912,48 +13889,48 @@ msgstr "Datubāzes" msgid "Table level tabs" msgstr "Komentārs tabulai" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "Jebkurš lietotājs" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Pievienot lietotāju" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Nav privilēģiju." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Kolonnu nosaukumi" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Servera versija" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Datubāzes" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14067,7 +14044,7 @@ msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" msgid "Run SQL query/queries on table %s" msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14159,105 +14136,105 @@ msgstr "" msgid "Version" msgstr "Persiešu" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Izveidots" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Atjaunots" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Servera versija" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Struktūras apskats" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktīvs" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "neaktīvs" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Ļauj ievietot un mainīt datus." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nav datubāzu" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Dati" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14265,78 +14242,78 @@ msgctxt "None for default" msgid "None" msgstr "Nav" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Servera versija" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 #, fuzzy msgid "Untracked tables" msgstr "Tabulas, kas netiek izsekotas" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Pārbaudīt tabulu" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Izsekotās tabulas" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Pēdējā versija" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Izsekošanas datu dzēšana" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versijas" @@ -14346,7 +14323,7 @@ msgstr "Versijas" msgid "Manage your settings" msgstr "Galvenās relāciju īpašības" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14372,7 +14349,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14380,84 +14357,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin dokumentācija" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importēt failus" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Saglabāt kā failu" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14465,31 +14442,31 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nav privilēģiju" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Process %s tika veiksmīgi nogalināts." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14497,15 +14474,15 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14513,103 +14490,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Labojumi tika saglabāti" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Labojumi tika saglabāti" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Lokāls" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin dokumentācija" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14647,28 +14623,28 @@ msgstr "" msgid "Show form" msgstr "Rādīt krāsas" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14683,12 +14659,12 @@ msgstr "Nav datubāzu" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Lietotājs %s jau eksistē!" @@ -14701,35 +14677,35 @@ msgstr "Apskatīt tabulas dampu (shēmu)" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Rindas nav iezīmētas" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Rindas nav iezīmētas" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14954,7 +14930,7 @@ msgid "List of available transformations and their options" msgstr "Pieejamās transformācijas" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14980,7 +14956,7 @@ msgstr "" "atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15520,17 +15496,17 @@ msgid "Size" msgstr "Izmērs" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Izveidošana" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Pēdējā atjaunošana" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Pēdējā pārbaude" @@ -15565,6 +15541,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Izsekošanas datu dzēšana" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15588,10 +15570,47 @@ msgstr "Pievienot privilēģijas uz sekojošo tabulu" msgid "Add privileges on the following table:" msgstr "Pievienot privilēģijas uz sekojošo tabulu" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nav" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Dzēst izvēlētos lietotājus" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Resursu ierobežojumi" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" @@ -15627,7 +15646,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15815,7 +15834,7 @@ msgstr "Lietotājs:" msgid "Comment:" msgstr "Komentāri" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15851,30 +15870,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Pievienot ierobežojumus" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Iekšējās relācijas" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Iekšējās relācijas" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15940,12 +15959,12 @@ msgstr "Oriģinālā pozīcija" msgid "Replaced string" msgstr "Relācijas" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "Relācijas" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL vaicājums" @@ -16032,7 +16051,7 @@ msgid "at beginning of table" msgstr "Tabulas sākumā" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16064,30 +16083,30 @@ msgstr "Rindas garums" msgid "Index length" msgstr "Rindas garums" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Pozīcija" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add new field" msgid "Edit partitioning" msgstr "Pievienot jaunu lauku" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Izdrukas versija" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Diska vietas lietošana" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektīvs" @@ -16118,33 +16137,33 @@ msgstr "Ieteikt tabulas sruktūru" msgid "Track view" msgstr "Pārbaudīt tabulu" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Rindas statistika" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamisks" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Rindas garums" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Rindas izmērs" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16158,52 +16177,52 @@ msgstr "Tabula %s tika izdzēsta" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Pieejamie MIME tipi" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Pieejamās transformācijas" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Pieejamās transformācijas" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Apraksts" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "Labot" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profils tika modificēts." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16276,7 +16295,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16300,19 +16319,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Datubāze nav izvēlēta." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16368,27 +16387,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "Tabula %s tika izdzēsta" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Faila nosaukuma šablons" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tabulas sākumā" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16405,10 +16424,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Tabulas sākumā" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16452,7 +16477,7 @@ msgstr "" msgid "strict error" msgstr "Vaicājuma tips" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17586,6 +17611,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Dokumentācija" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/mk.po b/po/mk.po index 2fadf20887..290091fd06 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-17 19:24+0000\n" "Last-Translator: Nebojsa Tausanov \n" -"Language-Team: Macedonian " -"\n" +"Language-Team: Macedonian \n" "Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "%s датотеката не е достапна на системот, ве молиме посете ја страницата %s " "за повеќе информации." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Главната листа на колони за тековната база на податоци е празна." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Кликни за да сортирате." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Приказ на записи %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Коментар на базата на податоци" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Коментар на табелата:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Коментар на табелата:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Коментар на табелата:" msgid "Column" msgstr "Колона" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Колона" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Колона" msgid "Type" msgstr "Вид" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Вид" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Стандардно" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Стандардно" msgid "Links to" msgstr "Врски кон" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Врски кон" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Примарен" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Примарен" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Примарен" msgid "No" msgstr "Не" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "Не" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Прикажи содржина (шема) на базата" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Табелите не се пронајдени во базата на податоци." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Табели" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Табели" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,28 +283,28 @@ msgstr "Структура" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Податоци" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Избери се" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Името на базата на податоци е празно!" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s." msgid "Database %1$s has been renamed to %2$s." msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:149 +#: db_operations.php:150 #, fuzzy, php-format #| msgid "Database %s has been copied to %s." msgid "Database %1$s has been copied to %2$s." @@ -321,40 +321,40 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Изберете барем една колона за приказ!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Премини на копираната табела" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Пристапот не е допуштен!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy #| msgid "Chart generated successfully." msgid "Tracking data deleted successfully." msgstr "Привилегиите се успешно вчитани." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Не е избрана ниту една табела." -#: db_tracking.php:149 +#: db_tracking.php:150 #, fuzzy msgid "Database Log" msgstr "База на податоци" @@ -393,208 +393,208 @@ msgstr "Лош тип!" msgid "Bad parameters!" msgstr "Неправилни параметри!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Вредност за колоната \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Точка:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Додади точка" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Линиите се завршуваат со" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Додади нов корисник" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додади нов корисник" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Полигон %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Додади полигон" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 #, fuzzy msgid "Add geometry" msgstr "Додади нов корисник" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "OK" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Успешно" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "Complete inserts" msgid "Incomplete params" msgstr "Комплетен INSERT (со имиња на полињата)" -#: import.php:195 +#: import.php:196 #, 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 "" -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Маркерот е избришан." -#: import.php:489 +#: import.php:486 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 "" -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Маркерот %s е креиран." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "" msgstr[1] "" -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: import.php:632 +#: import.php:629 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 "" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." @@ -602,18 +602,18 @@ msgstr "\"DROP DATABASE\" командата е оневозможена." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Назад" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin документација" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -621,116 +621,116 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Општи поставувања" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Промена на лозинка" -#: index.php:213 +#: index.php:214 #, fuzzy #| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "Колација за MySQL врска" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "General relation features" msgid "Appearance settings" msgstr "Општи особини на релациите" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Повеќе поставки" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Databases" msgid "Database server" msgstr "База на податоци" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Сервер:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Вид сервер:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Верзија на серверот:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Верзија на протокол:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Корисник:" -#: index.php:314 +#: index.php:315 #, fuzzy msgid "Server charset:" msgstr "Избор на сервер" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Веб сервер" -#: index.php:338 +#: index.php:339 #, fuzzy #| msgid "Database comment" msgid "Database client version:" msgstr "Коментар на базата на податоци:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP проширувања:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP верзија:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Информации за верзијата:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Документација" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Официјален веб сајт" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Учество" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Поддршка" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Листа на промени" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Лиценца" -#: index.php:443 +#: index.php:444 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 " @@ -740,13 +740,13 @@ msgstr "" "мултибајт каратер сет. Без mbstring екстензиите phpMyAdmin не може исправно " "да ги раздвојува стринговите и тоа може да доведе до неочекувани резултати." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -754,21 +754,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациската податотека бара лозинка (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -776,7 +776,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -788,19 +788,19 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -984,7 +984,7 @@ msgid "Save & close" msgstr "Сочувај како податотека" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Поништи" @@ -1024,7 +1024,7 @@ msgstr "Додади ново поле" msgid "Edit index" msgstr "Ажурирање на следниот запис" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1060,10 +1060,10 @@ msgstr "Додади %s полиња" msgid "You have to add at least one column." msgstr "Морате да изберете барем една колона за приказ" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1079,7 +1079,7 @@ msgstr "во упитот" msgid "Matched rows:" msgstr "Заглавени страници" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1100,13 +1100,13 @@ msgstr "Името на host-от е празно!" msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" @@ -1116,8 +1116,8 @@ msgstr "Лозинките не се идентични!" msgid "Removing Selected Users" msgstr "Избриши ги селектираните корисници" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "" @@ -1144,19 +1144,19 @@ msgstr "Записот е избришан" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1278,40 +1278,40 @@ msgid "Processes" msgstr "Листа на процеси" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "бајти" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1331,7 +1331,7 @@ msgstr "Персиски" msgid "Traffic" msgstr "Сообраќај" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" @@ -1347,16 +1347,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "нема" @@ -1555,20 +1555,20 @@ msgstr "" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Статус" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Време" @@ -1667,10 +1667,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 #, fuzzy msgid "Import" @@ -1752,7 +1752,7 @@ msgstr "Додади ново поле" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" @@ -1798,8 +1798,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Не е избрана ни една база на податоци." @@ -1847,7 +1847,7 @@ msgstr "Копирај ја базата на податоци во" msgid "Changing charset" msgstr "Кодна страна" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1885,74 +1885,80 @@ msgstr "Преглед" msgid "Deleting" msgstr "Бришам %s" -#: js/messages.php:391 +#: js/messages.php:388 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Приказ на податоци од табелата" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Извоз" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Број на записи на страница" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додади нов корисник" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1960,106 +1966,106 @@ msgstr "SQL упит" msgid "Edit" msgstr "Промени" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "избриши" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Променлива" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Нема селектирани записи" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Пребарување низ базата на податоци" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибути" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Примарниот клуч %s е додаден." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Промени" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2067,534 +2073,534 @@ msgstr "" msgid "End of step" msgstr "на крајот од табелата" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Додади привилегии на следната табела" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сочувај" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пребарување" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Имиња на колони" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Имиња на колони" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL упит" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL упит" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додади/избриши колона" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Големина на покажувачите на податоци" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Копирај" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линиите се завршуваат со" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Додади нов корисник" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Линиите се завршуваат со" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број на страници:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "избери се" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "избери се" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Слободни страници" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "избери се" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Изберете страница која менувате" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Релациона шема" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Број на записи на страница" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Испрати" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имиња на колони" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "прикажи ги сите" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оргинална позиција" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекинато" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Увоз на податотека" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Избери табели" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печати" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Базата на податоци не постои" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имиња на колони" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "прикажи ги сите" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додади ново поле" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежа" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2602,121 +2608,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "ID на серверот" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "ID на серверот" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Општи особини на релациите" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "Прикажи табели" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнорирај" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи го повторно овој упит" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Дали навистина сакате да " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL упит" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментар на табелата" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2725,36 +2731,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копирај ја базата на податоци во" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Додади ново поле" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Замени го префиксот на табелата" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копирај табела со префикс" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2762,96 +2788,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "мај" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2859,78 +2885,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "дек" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2938,201 +2964,201 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "во секунда" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поле" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Изберете база на податоци" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Изберете страница која менувате" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Грешка" @@ -3193,20 +3219,20 @@ msgid "Charset" msgstr "Кодна страна" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Подредување" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Бинарен" @@ -3403,7 +3429,7 @@ msgid "Czech-Slovak" msgstr "Чехословачки" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "непознат" @@ -3453,29 +3479,29 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Пребарување" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL упит" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3483,27 +3509,27 @@ msgid "" "configured)." msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Серверот не одговара" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Рутини" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3615,67 +3641,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на базата на податоци %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Изврши SQL" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Пребарување" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Пребарување" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Пребарување" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Search" msgid "Update bookmark" msgstr "Пребарување" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Пребарување" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "барем еден од зборовите" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "сите зборови" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "точен израз" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "како регуларен израз" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати од пребарувањето за \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3683,7 +3709,7 @@ msgid_plural "Total: %s matches" msgstr[0] "вкупно: %s погодоци" msgstr[1] "вкупно: %s погодоци" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3691,53 +3717,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Преглед" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Приказ на податоци од табелата" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Пребарување низ базата на податоци" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Барај:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Зборовите се одвојуваат со празно место (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "во табела(и):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ништо" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -3765,16 +3785,16 @@ msgstr "Полиња" msgid "Search this table" msgstr "Пребарување низ базата на податоци" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Почеток" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3783,8 +3803,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3793,8 +3813,8 @@ msgctxt "Next page" msgid "Next" msgstr "Следен" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3805,7 +3825,7 @@ msgstr "Крај" msgid "All" msgstr "Се" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3816,8 +3836,8 @@ msgstr "Број на записи на страница" msgid "Sort by key" msgstr "Подредување по клуч" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3839,10 +3859,10 @@ msgstr "Подредување по клуч" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "Операции" @@ -3892,18 +3912,18 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Записот е избришан" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Прекини" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." @@ -3911,94 +3931,94 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види " "[doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Вашиот SQL упит успешно е извршен" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Приказ на записи од" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "вкупно" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Обележаното:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "обележи ги сите" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Врската не е пронајдена" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4006,7 +4026,7 @@ msgid "None" msgstr "нема" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4014,105 +4034,105 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy msgid "Report" msgstr "Извоз" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Режим на автоматско опоравување" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Датотеката не е можно да се прочита!" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Информации за верзијата" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Преглед за печатење" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4123,20 +4143,20 @@ msgid "No index defined!" msgstr "Клучот не е дефиниран!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Клучеви" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4146,31 +4166,31 @@ msgstr "Клучеви" msgid "Action" msgstr "Акција" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Име на клуч" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Единствен" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4178,47 +4198,47 @@ msgstr "Кардиналност" msgid "Comment" msgstr "Коментари" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Примарниот клуч е избришан." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Клучот %s е избиршан." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Бриши" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Број на страници:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4244,11 +4264,11 @@ msgstr "Сервер" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4267,14 +4287,15 @@ msgid "View" msgstr "Поглед" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4283,8 +4304,8 @@ msgid "Table" msgstr "Табела" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4292,45 +4313,45 @@ msgstr "Табела" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Пребарување" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Нов запис" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегии" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4346,16 +4367,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Упит по пример" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Рутини" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4363,22 +4384,22 @@ msgstr "Рутини" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Додади/избриши колона" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "База на податоци" @@ -4389,12 +4410,12 @@ msgid "User accounts" msgstr "Корисник" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4402,34 +4423,34 @@ msgid "Replication" msgstr "Релации" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Кодни страници" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Складишта" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row deleted." @@ -4437,7 +4458,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Нема селектирани записи" msgstr[1] "Нема селектирани записи" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row inserted." @@ -4505,29 +4526,29 @@ msgstr "Променливи" msgid "Favorites" msgstr "Променливи" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Корисник %s веќе постои!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Allows reading data." msgid "Error while loading the search." @@ -4595,7 +4616,7 @@ msgstr "Прикажи табели" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4652,82 +4673,82 @@ msgid_plural "%d minutes" msgstr[0] "се користи" msgstr[1] "се користи" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детални информации за статусот на овој вид на складиште." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е достапен на овој MySQL сервер." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е оневозможен на овој MySQL сервер." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овој MySQL сервер не подржува %s вид на складиште." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "Прикажи табели" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy msgid "Invalid database:" msgstr "Базата на податоци не постои" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "во табела(и):" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Верзија на серверот" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Табелата %s е преименувана во %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4735,19 +4756,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на примарниот клуч мора да биде \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Не можам да го променам клучот во PRIMARY (примарен) !" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Делови од клучот не се дефинирани!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5018,7 +5039,7 @@ msgid "Date and time" msgstr "Креирај нов клуч" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5037,70 +5058,70 @@ msgstr "Вкупно" msgid "Max: %s%s" msgstr "Максимална големина: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP код" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изврши SQL" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Направи PHP код" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Освежи" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5108,66 +5129,66 @@ msgid "Edit inline" msgstr "Додади ново поле" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутини" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Премин на базата \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Директориумот кој го избравте за праќање не е достапен." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Испразни" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5183,7 +5204,7 @@ msgstr "во минута" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "на час" @@ -5191,14 +5212,14 @@ msgstr "на час" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Пребарување" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5206,7 +5227,7 @@ msgstr "Пребарување" msgid "Description" msgstr "Опис" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Користи ја оваа вредност" @@ -5245,22 +5266,22 @@ msgstr "ДА" msgid "NO" msgstr "НЕ" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Име" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Должина/Вредност*" @@ -5271,7 +5292,7 @@ msgstr "Должина/Вредност*" msgid "Attribute" msgstr "Атрибути" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5294,13 +5315,13 @@ msgstr "Додади %s полиња" msgid "Select a column." msgstr "Додади/избриши колона" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "Додади %s полиња" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5308,7 +5329,7 @@ msgstr "Додади %s полиња" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5318,27 +5339,27 @@ msgstr "" "опција не е компатибилна со phpMyAdmin и може да доведе до грешки во некои " "податоци!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5346,21 +5367,21 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5918,7 +5939,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6031,13 +6052,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Име" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Сочувај како податотека" @@ -6048,7 +6069,7 @@ msgstr "Кодна страна на податотеката:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Формат" @@ -6194,7 +6215,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Препиши ги постоечките податотеки" @@ -6210,7 +6231,7 @@ msgid "Remember file name template" msgstr "Шаблон на име на податотека" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" @@ -6221,7 +6242,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Името на полето стави го во '" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6253,7 +6274,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -6436,7 +6457,7 @@ msgid "Customize the navigation tree." msgstr "Опции за извоз на бази на податоци" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 #, fuzzy msgid "Servers" msgstr "Сервер" @@ -7351,7 +7372,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Документација" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8043,7 +8064,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8051,10 +8072,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8200,25 +8221,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Документација" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Табелата %s е испразнета." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Прегледот %s е избришан" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8233,12 +8254,12 @@ msgid "Position" msgstr "Позиција" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Вид на настан" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID на серверот" @@ -8247,7 +8268,7 @@ msgid "Original position" msgstr "Оргинална позиција" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Информации" @@ -8261,16 +8282,16 @@ msgstr "Прикажи скратени упити" msgid "Show Full Queries" msgstr "Прикажи комплетни упити" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Базата на податоци не постои" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Базата на податоци %1$s е креирана." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8278,26 +8299,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s базата на податоци успешно е избришана." msgstr[1] "%s базата на податоци успешно е избришана." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Записи" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Вкупно" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Пречекорување" @@ -8327,35 +8348,35 @@ msgstr "" msgid "Enable statistics" msgstr "Вклучи статистики" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Серверски променливи и подесувања" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Базата на податоци не постои" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "Изабраните корисници успешно се избришани." @@ -8410,7 +8431,7 @@ msgstr "Изабраните корисници успешно се избриш #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8429,12 +8450,12 @@ msgstr "Промени" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Клуч" @@ -8456,13 +8477,13 @@ msgstr "Текст клуч" msgid "Distinct values" msgstr "Прегледни ги надворешните вредности" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измени" @@ -8482,202 +8503,206 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Нема лозинка" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Лозинка:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Повтори внес" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Хеширање на лозинката" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Дозволува заклучување на табели на тековните процеси." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Креирај нова табела во базата на податоци %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Креирај нова табела во базата на податоци %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Тип на извоз" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Шаблон на име на податотека" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "User name" msgid "Template name" msgstr "Назив на корисник" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Креирај" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Шаблон на име на податотека" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s табела" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Ажурирај" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Избери табели" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Тип на извоз" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "База на податоци" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Табели" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Формат" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Опции на трансформацијата" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Записи" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Сочувај на серверот во директориумот %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Шаблон на име на податотека" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8685,124 +8710,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Кодна страна на податотеката:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Компресија" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zip\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzip\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Сочувај како податотека" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Креирај нова табела во базата на податоци %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "хоризонтален (ротирани заглавија)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Сочувај како податотека" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Избери табели" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Избери табели" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "База на податоци" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Нема табела" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Имиња на колони" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Имиња на колони" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Верзија на серверот" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Верзија на серверот" @@ -9229,13 +9254,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Нема доволно простор за снимање на податотеката %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9243,75 +9268,75 @@ msgstr "" "Податотека %s постои на серверот, променете го името на податотеката или " "изберете опција за пишување врз неа." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9323,20 +9348,20 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Направи клуч на %s колони" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функција" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." @@ -9344,65 +9369,66 @@ msgstr "" "Поради големина на полето
можеби нема да може да ја менувате неговата " "содржина" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "или" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "директориум за праќање на веб серверот" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нов запис" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9412,8 +9438,8 @@ msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9424,31 +9450,31 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Само структура" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Структура и податоци" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Само податоци" @@ -9459,14 +9485,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Додади ограничувања" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9526,8 +9552,8 @@ msgstr "Листа на процеси" msgid "Views:" msgstr "Поглед" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Прикажи" @@ -9572,19 +9598,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Сочувај како податотека" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9600,7 +9626,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Додади %s полиња" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9623,7 +9649,7 @@ msgstr "" msgid "Database operations" msgstr "Опции за извоз на бази на податоци" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9728,13 +9754,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Додади/избриши колона" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9986,8 +10012,8 @@ msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10036,83 +10062,83 @@ msgstr "(по едно поле)" msgid "Move table to (database.table)" msgstr "Премести ја табелата во (база.табела)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Промени го името на табелата во" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Коментар на табелата" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Опции на табелата" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Вид на складиште" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Копирај ја табелата во (база.табела)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Премини на копираната табела" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Можете да извршите" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Анализа на табелата" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Проверка на табелата" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Проверка на табелата" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Дефрагментирај ја табелата" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Табелата %s е освежена." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежување на табелата (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Поправка на табелата" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10120,106 +10146,106 @@ msgstr "Поправка на табелата" msgid "Delete data or table" msgstr "Приказ на податоци од табелата" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Базата на податоци не постои" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "Чешки" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Нема табела" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Можете да извршите:" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Не може да ја преместам табелата во самата себе!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Не можам да ја копирам табелата во самата себе!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Табелата %s е преместена во %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Табелата %s е копирана во %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Табелата %s е преместена во %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Табелата %s е копирана во %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Името на табелата е празно!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10250,25 +10276,25 @@ msgstr "Прикажи боја" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Не може да се поврзам: лоши подесувања." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s Добредојдовте" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10280,7 +10306,7 @@ msgstr "" "config.inc.php и уверите се дека одговараат на податоците кои сте ги добили " "од администраторот на MySQL серверот." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10307,15 +10333,15 @@ msgstr "Корисничко име:" msgid "Server Choice:" msgstr "Избор на сервер" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10391,7 +10417,7 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" @@ -10400,7 +10426,7 @@ msgstr "Приказ на податоци од табелата" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "Пратено" @@ -10409,8 +10435,8 @@ msgstr "Пратено" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10519,7 +10545,7 @@ msgstr "Стави ги имињата на полињата во првата #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11088,7 +11114,7 @@ msgstr "Содржина" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Дополнително" @@ -11513,57 +11539,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "нема опис" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11572,317 +11598,317 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Изберете база на податоци" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "Конекции" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Текст клуч" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Само структура" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Само структура" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Назив на корисник" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Назив на корисник" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Лозинка" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Подредуваање" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Променлива" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Било кој host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Овој host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Било кој корисник" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Користи текст поле" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Повтори внес" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Генерирање на лозинка" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Грешка" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Привилегиите се успешно вчитани." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11904,7 +11930,7 @@ msgstr "Табелата %s е избришана" msgid "Event %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11914,85 +11940,85 @@ msgstr "" msgid "Edit event" msgstr "Пратено" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Вид на настан" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Промени" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Изврши запамтен упит" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Статус" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Крај" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Комплетен INSERT (со имиња на полињата)" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy msgid "Error in processing request:" @@ -12014,7 +12040,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -12028,151 +12054,151 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Направено" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додади ново поле" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Избриши ја базата на податоци." -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Должина/Вредност*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опции на табелата" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Вид на упит" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозволува извршување на stored рутини." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12198,36 +12224,36 @@ msgstr "Табелата %s е избришана" msgid "Edit trigger" msgstr "Додади нов корисник" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Назив на корисник" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Време" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12363,92 +12389,92 @@ msgstr "Кодни страници и подредување" msgid "Databases statistics" msgstr "Статистика на базата на податоци" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Нема привилегии." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Дозволува читање на податоци." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Дозволува измена на податоци." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12458,137 +12484,107 @@ msgstr "" "за повеќето административни опции како што е подесување на глобални " "променливи или прекин на процеси наостанатите корисници." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Дозволува заклучување на табели на тековните процеси." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Дозволува креирање и бришење на клучева." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "нема" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "Конекции" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "Конекции" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ограничување на ресурси" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " -"ограничувањата." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Го ограничува бројот на упити кои корисникот може да ги постави на серверот " "за еден час." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12596,59 +12592,57 @@ msgstr "" "Го ограничува бројот на команди кои ги менуваат табелите или базите на " "податоци кои корисникот може да ги изврши за еден час." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Рутини" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Дозволува промена и бришење на stored рутини." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Дозволува извршување на stored рутини." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12656,233 +12650,228 @@ msgid "Note: MySQL privilege names are expressed in English." msgstr "" "Напомена: MySQL имињата на привилегите мора да бидат со латинични букви" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Администрација" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глобални привилегии" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "глобално" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволува додавање на корисници и привилегии без повтроно вчитавање на " "табелата на привилегии." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Документација" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Промена на лозинка" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Документација" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Податоци за најавувањето" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Назив на корисник" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Назив на дневникот" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Документација" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хеширање на лозинката" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ги забранивте привилегиите за %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Било кој корисник" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Опции за извоз на бази на податоци" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Провери привилегии за базата на податоци \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници кои имаат пристап \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Прегледот %s е избришан" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Овозможи" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Било кој" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Ажурирање на следниот запис" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… сочувај го стариот." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… избриши ги старите од табелата на корисници." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12890,122 +12879,107 @@ msgstr "" "… избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Направи нов корисник со исти привилегии и …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегии врзани за колоните" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Избриши ги селектираните корисници" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегии" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Преглед на корисници" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13019,7 +12993,7 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13039,11 +13013,11 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Додадовте нов корисник." @@ -13340,12 +13314,12 @@ msgstr "Наредба" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "Прикажи табели" @@ -13373,12 +13347,12 @@ msgstr "во минута" msgid "per second:" msgstr "во секунда" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13408,36 +13382,36 @@ msgstr "Прикажи табели" msgid "Related links:" msgstr "Релации" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13445,78 +13419,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13524,7 +13498,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13532,42 +13506,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13575,33 +13549,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13610,243 +13584,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Кодна страна на податотеката:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13854,99 +13828,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13954,18 +13928,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13973,12 +13947,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Вид на упит" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14015,49 +13989,49 @@ msgstr "База на податоци" msgid "Table level tabs" msgstr "Коментар на табелата" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Поглед" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Било кој корисник" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Нема привилегии." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Имиња на колони" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Верзија на серверот" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "База на податоци" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14166,7 +14140,7 @@ msgstr "Изврши SQL упит(и) на базата %s" msgid "Run SQL query/queries on table %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14259,106 +14233,106 @@ msgstr "" msgid "Version" msgstr "Персиски" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Креирано" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Ажурирано" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Верзија на серверот" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозволува вметнување и замена на података." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базата на податоци не постои" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Податоци" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14366,78 +14340,78 @@ msgctxt "None for default" msgid "None" msgstr "нема" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Верзија на серверот" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Последна Верзија" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Дозволува вметнување и замена на података." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 #, fuzzy msgid "Versions" msgstr "Персиски" @@ -14448,7 +14422,7 @@ msgstr "Персиски" msgid "Manage your settings" msgstr "Општи особини на релациите" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14474,7 +14448,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14482,84 +14456,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin документација" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Увоз на податотека" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Сочувај како податотека" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14567,46 +14541,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Нема привилегии" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесот %s е успешно прекинат." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14614,103 +14588,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Измените се сочувани" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Измените се сочувани" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Локален" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin документација" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14748,28 +14721,28 @@ msgstr "" msgid "Show form" msgstr "Прикажи боја" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14784,12 +14757,12 @@ msgstr "Базата на податоци не постои" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Корисник %s веќе постои!" @@ -14802,35 +14775,35 @@ msgstr "Прикажи содржина (шема) на табелите" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Нема селектирани записи" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Нема селектирани записи" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15057,7 +15030,7 @@ msgid "List of available transformations and their options" msgstr "Достапни трансформации" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15083,7 +15056,7 @@ msgstr "" "(пример '\\\\xyz' или 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15619,17 +15592,17 @@ msgid "Size" msgstr "Големина" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Направено" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Последна измена" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Последна проверка" @@ -15664,6 +15637,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Дозволува вметнување и замена на података." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15687,10 +15666,50 @@ msgstr "Додади привилегии на следната табела" msgid "Add privileges on the following table:" msgstr "Додади привилегии на следната табела" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "нема" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Избриши ги селектираните корисници" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Избриши ги базите на податоци кои се именувани исто како и корисниците." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ограничување на ресурси" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " +"ограничувањата." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" @@ -15726,7 +15745,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15916,7 +15935,7 @@ msgstr "Корисник" msgid "Comment:" msgstr "Коментари" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15952,30 +15971,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додади ограничувања" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Внатрешни релации" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Внатрешни релации" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16041,12 +16060,12 @@ msgstr "Оргинална позиција" msgid "Replaced string" msgstr "Релации" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "Релации" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL упит" @@ -16133,7 +16152,7 @@ msgid "at beginning of table" msgstr "на почетокот од табелата" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16165,30 +16184,30 @@ msgstr "Должина на запис" msgid "Index length" msgstr "Должина на запис" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Позиција" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add new field" msgid "Edit partitioning" msgstr "Додади ново поле" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Преглед за печатење" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Големина" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Ефективни" @@ -16218,33 +16237,33 @@ msgstr "Предложи структура на табелата" msgid "Track view" msgstr "Проверка на табелата" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Статистики за записите" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "динамички" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Должина на запис" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Големина на запис" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16258,52 +16277,52 @@ msgstr "Табелата %s е избришана" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Достапни MIME-типови" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Достапни трансформации" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Достапни трансформации" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "Промени" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Немате право на пристап овде!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профилот е променет." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16376,7 +16395,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16400,19 +16419,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Не е избрана ни една база на податоци." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16468,27 +16487,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "Табелата %s е избришана" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Шаблон на име на податотека" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "на почетокот од табелата" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16505,10 +16524,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "на почетокот од табелата" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16552,7 +16577,7 @@ msgstr "" msgid "strict error" msgstr "Вид на упит" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17716,6 +17741,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Документација" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/ml.po b/po/ml.po index 5095bc7cc8..b95940dd89 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-05-24 05:48+0000\n" "Last-Translator: GIMMY \n" "Language-Team: Malayalam Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "നിര" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "നിര" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "നിര" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "അച്ചടിക്കുക" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2373,109 +2378,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2484,357 +2489,377 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Copy database to" msgid "Add table prefix" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Copy database to" msgid "Replace table with prefix" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2895,20 +2920,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "നിബന്ധന" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3103,7 +3128,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3149,48 +3174,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3298,114 +3323,109 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "തിരയൂ" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ഒന്നും തിരഞ്ഞെടുക്കാതിരിക്കുക" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3429,30 +3449,30 @@ msgstr "തരംതിരിക്കുക" msgid "Search this table" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3461,7 +3481,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3470,8 +3490,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3493,10 +3513,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3538,112 +3558,112 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Database %s has been dropped." msgid "Your SQL query has been executed successfully." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d total" msgstr "%s പട്ടിക" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Use Tables" msgid "Check all" msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Links to" msgid "Link not found!" msgstr "കണ്ണികൾ" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3651,97 +3671,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3750,20 +3770,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3773,78 +3793,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "കീനാമം" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "താൾ:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3868,11 +3888,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3891,14 +3911,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3907,8 +3928,8 @@ msgid "Table" msgstr "പട്ടിക" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3916,45 +3937,45 @@ msgstr "പട്ടിക" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "തിരയൂ" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3970,16 +3991,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3987,22 +4008,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -4011,53 +4032,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4109,27 +4130,27 @@ msgstr "എല്ലാം കാണിക്കൂ" msgid "Favorites" msgstr "എല്ലാം കാണിക്കൂ" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4191,7 +4212,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4245,81 +4266,81 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show all" msgid "Unknown table status:" msgstr "എല്ലാം കാണിക്കൂ" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Rename database to" msgid "Invalid database:" msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4327,19 +4348,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4606,7 +4627,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4621,128 +4642,128 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4756,7 +4777,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4764,14 +4785,14 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "തിരയൂ" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4779,7 +4800,7 @@ msgstr "തിരയൂ" msgid "Description" msgstr "വിവരണം" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "ഈ വില ഉപയോഗിക്കൂ" @@ -4816,22 +4837,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4840,7 +4861,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4861,13 +4882,13 @@ msgstr "" msgid "Select a column." msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add/Delete columns" msgid "Add new column" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4875,33 +4896,33 @@ msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4909,20 +4930,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5459,7 +5480,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5565,12 +5586,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5580,7 +5601,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5705,7 +5726,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5718,7 +5739,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5727,7 +5748,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5757,7 +5778,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s ചേർക്കുക" @@ -5929,7 +5950,7 @@ msgid "Customize the navigation tree." msgstr "എല്ലാം കാണിക്കൂ" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6788,7 +6809,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7435,7 +7456,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7443,10 +7464,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7581,25 +7602,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been dropped." @@ -7614,12 +7635,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7628,7 +7649,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7642,16 +7663,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -7659,26 +7680,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." msgstr[1] "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "വരികൾ" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7705,32 +7726,32 @@ msgstr "" msgid "Enable statistics" msgstr "പട്ടിക" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7779,7 +7800,7 @@ msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച് #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7796,12 +7817,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7824,13 +7845,13 @@ msgstr "" msgid "Distinct values" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7850,175 +7871,179 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "The database name is empty!" msgid "Template name" msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Update Query" msgid "Update" msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Database comment" msgid "Databases:" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Table" msgid "Tables:" msgstr "പട്ടിക" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8026,104 +8051,104 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "The database name is empty!" msgid "New database name" msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8522,87 +8547,87 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "വിവരശേഖരം പകർത്തുക" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8613,84 +8638,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "അല്ലെനങ്കിൽ" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8701,31 +8727,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "ഘടന മാത്രം" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "ഘടനയും വിവരവും" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "വിവരം മാത്രം" @@ -8734,14 +8760,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8786,8 +8812,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "പ്രദർശിപ്പിക്കുക" @@ -8832,17 +8858,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8857,7 +8883,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8878,7 +8904,7 @@ msgstr "" msgid "Database operations" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show all" msgid "Show hidden items" @@ -8979,13 +9005,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete columns" msgid "Select one…" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete columns" msgid "No such column" @@ -9233,8 +9259,8 @@ msgid "Rename database to" msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9280,179 +9306,179 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Use Tables" msgid "Checksum table" msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9479,25 +9505,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9505,7 +9531,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9530,15 +9556,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9599,7 +9625,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9608,7 +9634,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9616,8 +9642,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9705,7 +9731,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10227,7 +10253,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10559,57 +10585,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10618,293 +10644,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10925,7 +10951,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10934,75 +10960,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -11023,7 +11049,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -11035,132 +11061,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11182,32 +11208,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11326,571 +11352,526 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add/Delete columns" msgid "Add user account" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove database" -msgid "Remove selected user accounts" -msgstr "വിവരശേഖരം നീക്കുക" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11899,7 +11880,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11908,11 +11889,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12181,12 +12162,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -12207,12 +12188,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12236,33 +12217,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12270,78 +12251,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12349,7 +12330,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12357,42 +12338,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12400,33 +12381,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12435,242 +12416,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12678,99 +12659,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12778,18 +12759,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12797,11 +12778,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12836,43 +12817,43 @@ msgstr "വിവരശേഖര അഭിപ്രായം: " msgid "Table level tabs" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "in use" msgid "View users" msgstr "ഉപയോഗത്തിൽ" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Table comments" msgid "Server-level tabs" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database comment" msgid "Database-level tabs" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -12969,7 +12950,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -13054,174 +13035,174 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Database comment" msgid "Delete version" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -13229,7 +13210,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13253,7 +13234,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13261,78 +13242,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13340,45 +13321,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13386,97 +13367,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13512,28 +13492,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13546,12 +13526,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13564,35 +13544,35 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "Remove database" msgid "No row selected." msgstr "വിവരശേഖരം നീക്കുക" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "Remove database" msgid "No versions selected." msgstr "വിവരശേഖരം നീക്കുക" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13780,7 +13760,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13798,7 +13778,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -14258,17 +14238,17 @@ msgid "Size" msgstr "വലിപ്പം" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "സൃഷ്‌ടി" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "അവസാനം നവീകരിച്ചത്" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "അന്തിമ പരിശോധന" @@ -14303,6 +14283,11 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +msgid "Delete settings " +msgstr "കൂടുതൽ സെറ്റിംഗുകൾ" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14319,10 +14304,45 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove database" +msgid "Remove selected user accounts" +msgstr "വിവരശേഖരം നീക്കുക" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14353,7 +14373,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14517,7 +14537,7 @@ msgstr "" msgid "Comment:" msgstr "അഭിപ്രായങ്ങൾ" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14549,30 +14569,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add/Delete columns" msgid "+ Add constraint" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14628,11 +14648,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14703,7 +14723,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14729,28 +14749,28 @@ msgstr "വിവരം മാത്രം" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Description" msgid "Partition table" msgstr "വിവരണം" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Description" msgid "Edit partitioning" msgstr "വിവരണം" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14779,31 +14799,31 @@ msgstr "വിവരശേഖര അഭിപ്രായം: " msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14816,46 +14836,46 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Table comments" msgid "Available browser display transformations" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "വിവരണം" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14925,7 +14945,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14950,19 +14970,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "Remove database" msgid "An alias was expected." msgstr "വിവരശേഖരം നീക്കുക" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15019,24 +15039,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15053,10 +15073,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15097,7 +15121,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/mn.po b/po/mn.po index ec42c608db..ed1cd49f69 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибутууд" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Хөөлтын илтгэл" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2129,546 +2135,546 @@ msgstr "" msgid "End of step" msgstr "Хүснэгтийн төгсгөлд" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Хадгалах" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "асуултад" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Хайх" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Баганын нэрс" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Баганын нэрс" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "асуултад" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Багана нэмэх/устгах" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Өгөгдөл заагчийн хэмжээ" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Хуулах" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Цэг" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Шугам" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Олон өнцөгт" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Геометр" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Дотоод тойрог" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Гадаад тойрог" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Хуудасны дугаар:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Бүгдийг сонгох" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Бүгдийг сонгох" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Чөлөөт хуудсууд" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Бүгдийг сонгох" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Засах Хуудсаа сонго" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Хамааралтай схем" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баганын утга" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Илгээ" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Баганын нэрс" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Бүгдийг харах" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Жинхэнэ байрлал" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Болих" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Таслагдсан" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Файл оруулах" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Хүснэгтүүд сонго" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Хэвлэх" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Хүснэгт алга" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Баганын нэрс" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бүгдийг харах" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Тор харуулах" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2676,124 +2682,124 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Үл тоох" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Уг асуултыг энд дахин харуулах" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Та үнэхээр " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Хүснэгтийн тайлбар" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "асуултад" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2802,38 +2808,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Өгөгдлийн сан хуулах нь" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Өмнөх" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2841,96 +2867,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Хоёртын " -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "5-р" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2938,78 +2964,78 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "12р" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3017,225 +3043,225 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Байхгүй" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундэд" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Алдаа" @@ -3297,20 +3323,20 @@ msgid "Charset" msgstr "Кодлол" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Жишилт" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Хоёртын" @@ -3507,7 +3533,7 @@ msgid "Czech-Slovak" msgstr "Чехословак" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "үлмэдэх" @@ -3560,32 +3586,32 @@ msgstr "" msgid "Font size" msgstr "Үсгийн хэмжээ" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Холбоог устгах" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL-асуулт" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3593,27 +3619,27 @@ msgid "" "configured)." msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервэрээс хариу алга" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Add new field" msgid "Missing connection parameters!" msgstr "Шинэ талбар нэмэх" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3725,67 +3751,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "ӨС %s дахь SQL-асуулт:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Асуултыг илгээх" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Хайх" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Холбоог устгах" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Холбоог устгах" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Хавчуургыг харуулж байна" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Холбоог устгах" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "Үгүүдийн ядаж нэгээр" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "бүх үг" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "яг цав өгүүлбэр" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Хайлтын үр дүн \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3793,7 +3819,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Нийт: %s олдоц(ууд)" msgstr[1] "Нийт: %s олдоц(ууд)" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3801,53 +3827,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Хөтлөх" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Хүснэгтийн өгөгдлийг устгах" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Өгөгдлийн санд хайх" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Хайх:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Бүх сонгосныг болих" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -3875,16 +3895,16 @@ msgstr "Файлууд" msgid "Search this table" msgstr "Өгөгдлийн санд хайх" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Эхлэл" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3893,8 +3913,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Өмнөх" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3903,8 +3923,8 @@ msgctxt "Next page" msgid "Next" msgstr "Цааш" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3915,7 +3935,7 @@ msgstr "Төгс" msgid "All" msgstr "Бүх" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3926,8 +3946,8 @@ msgstr "Талбаруудын тоо" msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3949,10 +3969,10 @@ msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Сонголтууд" @@ -4000,109 +4020,109 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Мөр устгагдсан" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Алах" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Таны SQL-асуулт амжилттай ажиллав" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Мөрүүдийг харуулж байна" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "Нийт" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Бүгдийг чагтлах" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Холбоос олдсонгүй" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4110,7 +4130,7 @@ msgid "None" msgstr "Байхгүй" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4118,75 +4138,75 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Оруулах" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Авто сэргээх горим" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4195,30 +4215,30 @@ msgstr "" "Та файлыг дэмжигдээгүй шахалтаар (%s) ачаалахыг оролдлоо. Энэ дэмжлэг нь " "хэрэгжүүлэгдээгүй эсвэл тохиргоонд идэхвигүй болгосон байна." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Хувилбарын мэдээлэл" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Шинэ phpMyAdmin цонх нээх" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Хэвлэхээр харах" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4229,20 +4249,20 @@ msgid "No index defined!" msgstr "Индекс тодорхойлогдоогүй!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Индексүүд" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4252,78 +4272,78 @@ msgstr "Индексүүд" msgid "Action" msgstr "Үйлдэл" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Түлхүүрийн нэр" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Ерөнхий" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Үндсэн түлхүүр устгагдлаа." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Индекс %s нь устгагдсан." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Устгах" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Хуудасны дугаар:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Хэл" @@ -4347,11 +4367,11 @@ msgstr "Сервэр" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4370,14 +4390,15 @@ msgid "View" msgstr "Харц" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4386,8 +4407,8 @@ msgid "Table" msgstr "Хүснэгт" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4395,45 +4416,45 @@ msgstr "Хүснэгт" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Хайх" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Оруулах" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Онцгой эрхүүд" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4449,16 +4470,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4466,22 +4487,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Дизайнч" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Багана нэмэх/устгах" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Өгөгдлийн сангууд" @@ -4492,46 +4513,46 @@ msgid "User accounts" msgstr "Хэрэглэгч" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Хоёртын log" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Олшруулалт" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Утгууд" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Хөдөлгүүрүүд" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row deleted." @@ -4539,7 +4560,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Сонгогдсон мөргүй" msgstr[1] "Сонгогдсон мөргүй" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row inserted." @@ -4608,29 +4629,29 @@ msgstr "Утгууд" msgid "Favorites" msgstr "Утгууд" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Хэрэглэгч %s оршин байна!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Allows reading data." msgid "Error while loading the search." @@ -4694,7 +4715,7 @@ msgstr "Нээлттэй хүснэгтүүдийг харуулах" msgid "Show slave hosts" msgstr "Дагавар хостыг харуулах" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4752,87 +4773,87 @@ msgid_plural "%d minutes" msgstr[0] "хэрэглэгдэж байна" msgstr[1] "хэрэглэгдэж байна" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s нь уг MySQL сервэрт идэвхтэй байна." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s нь уг MySQL сервэр дээр хаалттай байна." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Дагавар төлвийг харуулах" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Сэдэв %s олдсонгүй!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Буруу өгөгдлийн сан" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Хүснэгтийн буруу нэр" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "General relation features" msgid "Failed to rename table %1$s to %2$s!" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4840,19 +4861,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Үндсэн түлхүүрийн нэр нь PRIMARY байх ёстой!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Индексийг PRIMARY болгож чадсангүй!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Тодорхойлогдсон индексийн хэсэггүй!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Гадаад түлхүүр үүсгэхэд алдаа гарлаа %1$s (өгөгдлийн төрлөө шалга)" @@ -5125,7 +5146,7 @@ msgid "Date and time" msgstr "Шинэ индекс үүсгэх" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5144,70 +5165,70 @@ msgstr "Нийт" msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-кодгүй" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Асуултыг илгээх" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-код үүсгэх" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5215,66 +5236,66 @@ msgid "Edit inline" msgstr "Шинэ талбар нэмэх" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ня" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Шинэ талбар нэмэх" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" өгөгдлийн сан руу үсрэх." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Хоосон" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5290,7 +5311,7 @@ msgstr "минутад" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "цагт" @@ -5298,14 +5319,14 @@ msgstr "цагт" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Хайх" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5313,7 +5334,7 @@ msgstr "Хайх" msgid "Description" msgstr "Тайлбар" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Уг утгыг хэрэглэх" @@ -5354,22 +5375,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Нэр" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Урт/Утгууд*" @@ -5380,7 +5401,7 @@ msgstr "Урт/Утгууд*" msgid "Attribute" msgstr "Атрибутууд" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5403,13 +5424,13 @@ msgstr "%s талбар(ууд) нэмэх" msgid "Select a column." msgstr "Багана нэмэх/устгах" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "%s талбар(ууд) нэмэх" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5417,7 +5438,7 @@ msgstr "%s талбар(ууд) нэмэх" msgid "Attributes" msgstr "Атрибутууд" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5426,28 +5447,28 @@ msgstr "" "Таны PHP тохируулгад mbstring.func_overload нээлттэй байна. Энэ сонголт " "phpMyAdmin -д бүрэн боломжгүй бөгөөд зарим өгөгдөл алдагдаж болзошгүй!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервэр" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5455,20 +5476,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6029,7 +6050,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6141,13 +6162,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Баримтжуулал" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Илгээх" @@ -6157,7 +6178,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Тогтнол" @@ -6300,7 +6321,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Файл(ууд)-г дарж бичих" @@ -6315,7 +6336,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" @@ -6326,7 +6347,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" @@ -6358,7 +6379,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Нэмэх %s" @@ -6548,7 +6569,7 @@ msgid "Customize the navigation tree." msgstr "Бичвэр талбар хэрэглэх" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Сервэрүүд" @@ -7465,7 +7486,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Баримт" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8150,7 +8171,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8158,10 +8179,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8308,25 +8329,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Баримт" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Хүснэгт %s нь хоослогдлоо." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Харц %s нь устгагдсан" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8341,12 +8362,12 @@ msgid "Position" msgstr "Байрлал" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Хэрэг явдлын төрөл" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server ID" @@ -8355,7 +8376,7 @@ msgid "Original position" msgstr "Жинхэнэ байрлал" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Мэдээлэл" @@ -8369,16 +8390,16 @@ msgstr "" msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "ӨС байхгүй" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s өгөгдлийн сан үүслээ." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8386,26 +8407,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ӨС амжилттай устгагдлаа." msgstr[1] "%s ӨС амжилттай устгагдлаа." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Мөрүүд" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Нийт" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Толгой дээр" @@ -8435,35 +8456,35 @@ msgstr "" msgid "Enable statistics" msgstr "Нээлттэй статистик" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "ӨС байхгүй" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8520,7 +8541,7 @@ msgstr "Сонгогдсон хэрэглэгч устгагдлаа." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8540,12 +8561,12 @@ msgstr "Солих" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Индекс" @@ -8568,13 +8589,13 @@ msgstr "Бүтэнбичвэр" msgid "Distinct values" msgstr "Онцгой утгуудыг харах" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Солигдохгүй" @@ -8596,203 +8617,207 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Нууц үггүй" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Нууц үг:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Дахин бич" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Нууц үг хувиргах" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export" msgid "Export templates:" msgstr "Гаргах" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Файлын нэрийн загвар" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Хүснэгтийн нэр" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Үүсгэх" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Файлын нэрийн загвар" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s хүснэгт(үүд)" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Update асуулт" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Хүснэгтүүд сонго" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Гаргах төрөл" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Өгөгдлийн сангууд" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Хүснэгт" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Тогтнол" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Өөрчлөлийн сонголтууд" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Мөрүүд" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Сервэр дээрх хадгалах хавтас %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Файлын нэрийн загвар" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "alue is interpreted using %1$sstrftime%2$s, so you can use time matting " @@ -8807,125 +8832,125 @@ msgstr "" "тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " "%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Файлын кодлол:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Шахалт" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "zip-ээр шахах" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "gzip-ээр шахах" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Илгээх" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Илгээх" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Хүснэгтүүд сонго" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Хүснэгтүүд сонго" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "өгөгдлийн сангийн нэр" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "User name" msgid "New table name" msgstr "Хэрэглэгчийн нэр" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Баганын нэрс" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Баганын нэрс" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "General relation features" msgid "committed on %1$s by %2$s" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "General relation features" msgid "authored on %1$s by %2$s" @@ -9358,90 +9383,90 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "Файл %s нь сервэр дээр байна, нэрээ соль эсвэл давхарлах сонголтыг шалга." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "ӨС байхгүй" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Хүснэгт алга" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Зөвхөн бүтэц" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9453,84 +9478,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr " %s багануудад индекс үүсгэх" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Нуух" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функц" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Яагаад гэвэл урт нь их,
энэ талбар засагдахгүй " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Хоёртын өгөгдөл - засагдахгүй" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Эсвэл" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Оруулах" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ба тэгээд" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9540,8 +9566,8 @@ msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9552,31 +9578,31 @@ msgstr "" msgid "Value" msgstr "Утга" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Зөвхөн бүтэц" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Зөвхөн өгөгдөл" @@ -9587,14 +9613,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Тогтмол нэмэх" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9657,8 +9683,8 @@ msgstr "Процедурүүд" msgid "Views:" msgstr "Харц" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Харах" @@ -9705,19 +9731,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Илгээх" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9733,7 +9759,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9756,7 +9782,7 @@ msgstr "" msgid "Database operations" msgstr "ӨС гаргах сонголтууд" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9861,13 +9887,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Багана нэмэх/устгах" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10121,8 +10147,8 @@ msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10174,83 +10200,83 @@ msgstr "(дан)" msgid "Move table to (database.table)" msgstr "Хүснэгтийг зөөх (өгөгдлийн сан.хүснэгт)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Хүснэгтийг да.нэрлэх" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Хүснэгтийн сонголтууд" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Хүснэгтийн ашиглалт" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Хүснэгт шалгах" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Хүснэгт шалгах" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Хүснэгт янзлах" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Хүснэгт %s нь flushed боллоо." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Хүснэгт засах" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10258,103 +10284,103 @@ msgstr "Хүснэгт засах" msgid "Delete data or table" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Адил нэр байсан тул хүснэгтийг зөөсөнгүй!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Адил нэртэй хүснэгт рүү хуулж чадсангүй!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Хүснэгтийн нэр хоосон байна!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10383,18 +10409,18 @@ msgstr "Өнгө харах" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Холбогдсонгүй: тохируулга буруу." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s-д тавтай морилно уу" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10403,7 +10429,7 @@ msgstr "" "Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " "%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10413,7 +10439,7 @@ msgstr "" "phpMyAdmin нь MySQL сервэр лүү холбогдох гэсэн ч, сервэр хүлээн авсангүй. " "config.inc.php дэх сервэр, хэрэглэгчийн нэр болон нууц үгээ шалга." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10440,15 +10466,15 @@ msgstr "Нэвтрэгч:" msgid "Server Choice:" msgstr "Сервэр сонго" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10525,7 +10551,7 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" @@ -10534,7 +10560,7 @@ msgstr "Хүснэгтийн өгөгдлийг устгах" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Үзэгдэл" @@ -10542,8 +10568,8 @@ msgstr "Үзэгдэл" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10651,7 +10677,7 @@ msgstr "Эхний мөрт талбаруудын нэрийг тавих" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11227,7 +11253,7 @@ msgstr "Агуулгын хүснэгт" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Нэмэлт" @@ -11640,57 +11666,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "тайлбаргүй" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11699,316 +11725,316 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "ХИ. давхацсан холболтууд" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Зөвхөн бүтэц" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Зөвхөн бүтэц" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Хэрэглэгчийн нэр" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Хэрэглэгчийн нэр" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Нууц үг" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Portrait" msgid "Port:" msgstr "Дүрслэл" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Хувьсагч" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Хост" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Дурын хост" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Энэ хост" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Дурын хэрэглэгч" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Дахин бич" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Нууц үг бий болгох" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Алдаа" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Онцгой эрхүүд дахин дуудагдлаа." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12031,7 +12057,7 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Event %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12042,86 +12068,86 @@ msgstr "" msgid "Edit event" msgstr "Үзэгдэл" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Хэрэг явдлын төрөл" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Солих" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Төгс" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Оруулалтыг дуусгах" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Хүснэгтийн буруу нэр" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12144,7 +12170,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -12158,153 +12184,153 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Баганын нэрс" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Шууд холбоос" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Шинэ талбар нэмэх" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Урт/Утгууд*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Хүснэгтийн сонголтууд" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Асуултын төрөл" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Хүснэгтийн буруу нэр" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12330,44 +12356,44 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Edit trigger" msgstr "Шинэ хэрэглэгч нэмэх" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "сервэрийн нэр" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Цаг" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Хүснэгтийн буруу нэр" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Хүснэгтийн буруу нэр" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Хүснэгтийн буруу нэр" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Хүснэгтийн буруу нэр" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12507,90 +12533,90 @@ msgstr "Кодлол ба жишилт" msgid "Databases statistics" msgstr "Өгөгдлийн сангийн статистик" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12599,134 +12625,106 @@ msgstr "" "Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping indexes." msgid "Allows creating and dropping triggers." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Байхгүй" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "max. concurrent connections" msgid "Does not require SSL-encrypted connections." msgstr "ХИ. давхацсан холболтууд" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "max. concurrent connections" msgid "Requires SSL-encrypted connections." msgstr "ХИ. давхацсан холболтууд" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Нөөцийн хязгаар" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12734,288 +12732,281 @@ msgstr "" "Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " "хязгаарлах." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" msgid "Routine" msgstr "Шинэ талбар нэмэх" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Хүснэгтийн тусгай онцгой эрхүүд" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Зохион байгуулалт" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " "зөвшөөрөх." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Баримт" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Нууц үг солих" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Баримт" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Хэрэглэгчийн нэр" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Log нэр" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Баримт" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Нууц үг хувиргах" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Онцгой эрх %s -ыг хүчингүй болголоо." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Дурын хэрэглэгч" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" өгөгдлийн сангийн онцгой эрх шалгах." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Хэрэглэгчдийн хандсан нь \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Харц %s нь устгагдсан" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Хандив" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Дурын" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "загвар" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Хүчингүй" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Дараагийн мөрийг засах" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… хуучныг үлдээх." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… хэрэглэгчийн хүснэгтүүдээс устгах." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13023,123 +13014,107 @@ msgstr "" "… хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Сонгогдсон хэрэглэгчдийг хасах" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " -"болгох." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Онцгой эрхүүд" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Хэрэглэгч" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Хэрэглэгч" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "User overview" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13152,7 +13127,7 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13171,11 +13146,11 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." @@ -13475,12 +13450,12 @@ msgstr "Команд" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13509,12 +13484,12 @@ msgstr "минутад" msgid "per second:" msgstr "секундэд" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Баримтжуулал" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13546,19 +13521,19 @@ msgstr "Нээлттэй хүснэгтүүдийг харуулах" msgid "Related links:" msgstr "Хамаарал" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "its the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13568,16 +13543,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13589,11 +13564,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13601,7 +13576,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13609,7 +13584,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13617,23 +13592,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13643,7 +13618,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13653,7 +13628,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13661,7 +13636,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13671,7 +13646,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13679,7 +13654,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY … DESC-д хэрэглэгддэг." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13691,7 +13666,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13703,35 +13678,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13741,7 +13716,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13753,11 +13728,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13765,7 +13740,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13773,11 +13748,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13785,7 +13760,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13794,244 +13769,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Оруулсан файлын тогтнол" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14039,99 +14014,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14139,18 +14114,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14158,13 +14133,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Түлхүүрийн нөөцлөл" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14201,49 +14176,49 @@ msgstr "Хэрэглэгчийн өгөгдлийн сан" msgid "Table level tabs" msgstr "Хүснэгтийн нэр" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Харц" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Дурын хэрэглэгч" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Онцгой эрхгүй." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Баганын нэрс" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Сервэрийн хувилбар" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14355,7 +14330,7 @@ msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажилл msgid "Run SQL query/queries on table %s" msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -14446,104 +14421,104 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Үүссэн" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Шинэчлэгдсэн" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Delete relation" msgid "Delete version" msgstr "Холбоог устгах" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Хөөлтын илтгэл" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Бүтцийн тойм" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "идэвхитэй" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "идэвхигүй" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "ӨС байхгүй" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14551,78 +14526,78 @@ msgctxt "None for default" msgid "None" msgstr "Байхгүй" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "General relation features" msgid "Version %1$s of %2$s was deleted." msgstr "Ерөнхий хамаатай онцлог" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Хөөгөөгүй хүснэгтүүд" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Хүснэгтийг хөөх" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Хөөсөн хүснэгтүүд" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Сүүлийн хувилбар" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Хувилбарууд" @@ -14632,7 +14607,7 @@ msgstr "Хувилбарууд" msgid "Manage your settings" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14660,7 +14635,7 @@ msgstr "ZIP архивт байгаа алдаа:" msgid "No files found inside ZIP archive!" msgstr "ZIP архив дотор файл байхгүй байна!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14668,86 +14643,86 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin баримтжилт" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Файл оруулах" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Илгээх" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14755,46 +14730,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Онцгой эрхгүй" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s нь устгагдав." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14802,101 +14777,100 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Өөрчлөлт хадгалагдав" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Өөрчлөлт хадгалагдав" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14932,28 +14906,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14968,12 +14942,12 @@ msgstr "ӨС байхгүй" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Хүснэгт %s нь оршин байна!" @@ -14986,35 +14960,35 @@ msgstr "Хүснэгтийн схем харах" msgid "Invalid table name" msgstr "Хүснэгтийн буруу нэр" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Сонгогдсон мөргүй" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Сонгогдсон мөргүй" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15244,7 +15218,7 @@ msgid "List of available transformations and their options" msgstr "Идэвхтэй өөрчлөлт" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15269,7 +15243,7 @@ msgstr "" "өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15811,17 +15785,17 @@ msgid "Size" msgstr "Хэмжээ" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Үүсгэлт" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Сүүлийн шинэчлэл" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Сүүлийн шалгалт" @@ -15856,6 +15830,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15878,10 +15858,49 @@ msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" msgid "Add privileges on the following table:" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Байхгүй" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Сонгогдсон хэрэглэгчдийг хасах" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " +"болгох." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Нөөцийн хязгаар" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" @@ -15918,7 +15937,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16109,7 +16128,7 @@ msgstr "Хэрэглэгч" msgid "Comment:" msgstr "Тайлбар" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16147,30 +16166,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Тогтмол нэмэх" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Дотоод хамаарал" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Дотоод хамаарал" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16236,13 +16255,13 @@ msgstr "Жинхэнэ байрлал" msgid "Replaced string" msgstr "Хамаарал" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Олшруулалт" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "in query" msgid "Additional search criteria" @@ -16328,7 +16347,7 @@ msgid "at beginning of table" msgstr "Хүснэгтийн эхэнд" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16360,30 +16379,30 @@ msgstr "Мөрийн урт" msgid "Index length" msgstr "Мөрийн урт" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Байрлал" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add new field" msgid "Edit partitioning" msgstr "Шинэ талбар нэмэх" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Хэвлэхээр харах" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Ашиглалтын зай" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Эффекттэй" @@ -16414,33 +16433,33 @@ msgstr "Хүснэгтийн бүтцийг таниулах" msgid "Track view" msgstr "Хүснэгтийг хөөх" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Мөрийн статистик" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "динамик" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Мөрийн урт" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Мөрийн хэмжээ" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16454,52 +16473,52 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Идэвхтэй MIME-төрлүүд" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Идэвхтэй өөрчлөлт" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Идэвхтэй өөрчлөлт" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Тайлбар" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Хөөлтын илтгэл" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Танд хангалттай эрх байхгүй!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профиль шинэчлэгдлээ." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16572,7 +16591,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16597,19 +16616,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "ӨС сонгогдоогүй." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16666,27 +16685,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Ending quote %1$s was expected." msgstr "Хүснэгт %s нь устгагдлаа" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Хүснэгтийн эхэнд" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16703,10 +16722,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Хүснэгтийн эхэнд" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16751,7 +16776,7 @@ msgstr "" msgid "strict error" msgstr "Асуултын төрөл" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17954,6 +17979,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Баримт" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/ms.po b/po/ms.po index 8f18622359..2bef1944af 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atribut" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Kekunci utama telah ditambah pada %s" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Laporan penjejak" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2057,292 +2062,292 @@ msgstr "" msgid "End of step" msgstr "Pada Akhir Jadual" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Cipta jadual baru pada pangkalan data %s" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Simpan" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "kueri-SQL" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Cari" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nama Kolum" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nama Kolum" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Tambah/Padam Kolum Medan" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Kandungan" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Abai" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Titik" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Rentetan talian" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkaran Dalaman" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Lingkaran Luar" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Muka Surat:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Sila pilih pangkalan data" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Sila pilih pangkalan data" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2350,237 +2355,237 @@ msgstr "Sila pilih pangkalan data" msgid "Open page" msgstr "Penggunaan" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Sila pilih pangkalan data" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Sila Pilih Laman untuk diubah" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Sunting atau eksport skema hubungan" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Nilai pada kolum \"%s\"" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Hantar" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nama Kolum" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Papar semua" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Rentetan talian" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "DiBatalkan" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Eksport" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pilih Jadual" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Cetak" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Tiada pangkalan data" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nama Kolum" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Papar semua" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeks" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Papar grid" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indeks" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indeks" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2588,121 +2593,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "Pilihan Pelayan" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "Pilihan Pelayan" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "Papar jadual" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Abai" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Papar kueri ini di sini lagi" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Adakah anda ingin " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komen jadual" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "kueri-SQL" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2711,38 +2716,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Salin pangkalan data ke" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Terdahulu" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2750,96 +2775,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mei" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2847,78 +2872,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dis" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2926,201 +2951,201 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Tiada" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekod" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Tambah medan baru" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Sila pilih pangkalan data" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Sila Pilih Laman untuk diubah" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Ralat" @@ -3181,20 +3206,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Pengumpulan" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binari" @@ -3392,7 +3417,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "tidak diketahui" @@ -3438,50 +3463,50 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Cari" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "kueri-SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3589,73 +3614,73 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL- kueri pada pangkalan data %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Hantar Kueri" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Cari" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Cari" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Cari" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Memaparkan penanda halaman" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Cari" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "sekurang-kurangnya satu perkataan" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "semua perkataan" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "Frasa tepat" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "sebagai penyataan regular (regexp)" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil carian bagi \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Jumlah: %s padanan" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3663,48 +3688,43 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Lungsur" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Padam padanan untuk jadual %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Cari di pangkalan data" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Perkataan atau nilai yang dicari untuk (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Cari:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Di dalam jadual:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Nyahpilih Semua" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Di dalam kolum:" @@ -3729,16 +3749,16 @@ msgstr "Medan" msgid "Search this table" msgstr "Cari di pangkalan data" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Mula" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3747,8 +3767,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Terdahulu" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3757,8 +3777,8 @@ msgctxt "Next page" msgid "Next" msgstr "Berikut" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3769,7 +3789,7 @@ msgstr "Tamat" msgid "All" msgstr "Semua" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3780,8 +3800,8 @@ msgstr "Bilangan baris per halaman" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3803,10 +3823,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "Operasi" @@ -3855,108 +3875,108 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Baris telah dipadam" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Bunuh" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Papar baris" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "jumlah" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Tanda Semua" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Pautan tidak dijumpai" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -3964,7 +3984,7 @@ msgid "None" msgstr "Tiada" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3972,73 +3992,73 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy msgid "Report" msgstr "Eksport" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy msgid "Automatically send report next time" msgstr "Versi Pelayan" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Fail tidak boleh dibaca" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4047,29 +4067,29 @@ msgstr "" "Anda telah mencuba untuk memuat fail yang tidak disokong oleh pemampat (%s). " "Sama ada ia tidak dilaksanakan atau dinyahaktifkan oleh konfigurasi anda." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy msgid "Git information missing!" msgstr "Informasi MasaJana" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Paparan Cetak" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4080,20 +4100,20 @@ msgid "No index defined!" msgstr "Tiada indeks ditafrifkan!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeks" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4103,31 +4123,31 @@ msgstr "Indeks" msgid "Action" msgstr "Aksi" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nama Kekunci" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinaliti" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4135,47 +4155,47 @@ msgstr "Kardinaliti" msgid "Comment" msgstr "Komen" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Kekunci utama telah digugurkan." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s telah digugurkan." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Gugur" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Muka Surat:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4199,11 +4219,11 @@ msgstr "Pelayan" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4222,14 +4242,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4238,8 +4259,8 @@ msgid "Table" msgstr "Jadual" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4247,45 +4268,45 @@ msgstr "Jadual" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Cari" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Selit" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilej" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4301,16 +4322,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Kueri" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4318,22 +4339,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "pangkalan data" @@ -4344,54 +4365,54 @@ msgid "User accounts" msgstr "Pengguna" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Binari" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikasi" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4453,27 +4474,27 @@ msgstr "Pemboleh-pembolehubah" msgid "Favorites" msgstr "Pemboleh-pembolehubah" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4539,7 +4560,7 @@ msgstr "Papar jadual" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4596,82 +4617,82 @@ msgid_plural "%d minutes" msgstr[0] "sedang digunakan" msgstr[1] "sedang digunakan" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah pelalai untuk enjin simpanan di dalam MySQL server." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "Papar jadual" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy msgid "Invalid database:" msgstr "Tiada pangkalan data" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "Di dalam jadual:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Versi Pelayan" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Jadual %s telah ditukarnama ke %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4679,19 +4700,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nama kekunci utama mestilah \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Tidak boleh menukar indekx ke PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Tiada bahagian indeks ditakrifkan!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4961,7 +4982,7 @@ msgid "Date and time" msgstr "Cipta indeks baru" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -4980,70 +5001,70 @@ msgstr "Jumlah" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Tanpa Kod PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Hantar Kueri" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Cipta Kod PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5051,64 +5072,64 @@ msgid "Edit inline" msgstr "Paparan Cetak" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Aha" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s minit dan %s saat" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Kosong" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5124,7 +5145,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per jam" @@ -5132,14 +5153,14 @@ msgstr "per jam" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Cari" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5147,7 +5168,7 @@ msgstr "Cari" msgid "Description" msgstr "Keterangan" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Guna nilai ini" @@ -5187,22 +5208,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nama" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Panjang/Nilai*" @@ -5213,7 +5234,7 @@ msgstr "Panjang/Nilai*" msgid "Attribute" msgstr "Atribut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5235,12 +5256,12 @@ msgstr "Tambah medan baru" msgid "Select a column." msgstr "Tambah/Padam Kolum Medan" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy msgid "Add new column" msgstr "Tambah medan baru" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5248,34 +5269,34 @@ msgstr "Tambah medan baru" msgid "Attributes" msgstr "Atribut" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Pelayan" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5283,20 +5304,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5853,7 +5874,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5965,13 +5986,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Penyataan" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Simpan sebagai fail" @@ -5982,7 +6003,7 @@ msgstr "Fail bagi set Aksara:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6122,7 +6143,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -6137,7 +6158,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" @@ -6148,7 +6169,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Sertakan nama jadual dan medan dengan backquotes" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6181,7 +6202,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Tambah %s" @@ -6360,7 +6381,7 @@ msgid "Customize the navigation tree." msgstr "Papar grid" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 #, fuzzy msgid "Servers" msgstr "Pelayan" @@ -7258,7 +7279,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7942,7 +7963,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7950,10 +7971,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8098,25 +8119,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentasi" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Jadual %s telah dikosongkan." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Medan %s telah digugurkan" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8131,13 +8152,13 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 #, fuzzy msgid "Event type" msgstr "Jenis Kueri" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 #, fuzzy msgid "Server ID" msgstr "Pelayan" @@ -8147,7 +8168,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -8161,16 +8182,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Tiada pangkalan data" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Pangkalan data %1$s telah dijana." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8178,26 +8199,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "angkalan data %s telah digugurkan." msgstr[1] "angkalan data %s telah digugurkan." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Baris" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Jumlah" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Melebihi" @@ -8223,35 +8244,35 @@ msgstr "" msgid "Enable statistics" msgstr "Statistik pangkalan data" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Pembolehubah dan Penetapan Pelayan" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Tiada pangkalan data" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8303,7 +8324,7 @@ msgstr "angkalan data %s telah digugurkan." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8323,12 +8344,12 @@ msgstr "Ubah" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8351,13 +8372,13 @@ msgstr "Tekspenuh" msgid "Distinct values" msgstr "Nilai Sessi" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tiada perubahan" @@ -8377,200 +8398,204 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Tiada Katalaluan" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Katalaluan:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Ulang-taip" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "Katalaluan:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Exporting databases from the current server" msgstr "Tidak boleh log-masuk ke server MySQL" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Cipta jadual baru pada pangkalan data %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Cipta jadual baru pada pangkalan data %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export" msgid "Export templates:" msgstr "Eksport" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "Failed attempts" msgid "New template:" msgstr "Percubaan Gagal" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "User name" msgid "Template name" msgstr "Kata Pengenalan" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Cipta" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "Failed attempts" msgid "Existing templates:" msgstr "Percubaan Gagal" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s jadual" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "Kemaskini Kueri" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Pilih Jadual" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export" msgid "Export method:" msgstr "Eksport" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "pangkalan data" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Jadual-jadual" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Format" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Baris" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format msgid "Save on server in the directory %s" msgstr "direktori muatnaik pelayan-web" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "Failed attempts" msgid "File name template:" msgstr "Percubaan Gagal" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8578,124 +8603,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Fail bagi set Aksara:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Mampatan" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"digzip\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Simpan sebagai fail" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Cipta jadual baru pada pangkalan data %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export" msgid "Export tables as separate files" msgstr "Eksport" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Simpan sebagai fail" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Pilih Jadual" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Pilih Jadual" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "Pangkalan Data" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Tiada Jadual" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Nama Kolum" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Nama Kolum" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Versi Pelayan" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Versi Pelayan" @@ -9102,13 +9127,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Kekurangan ruang untuk menyimpan fail %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9116,75 +9141,75 @@ msgstr "" "Fail %s telah wujud di pelayan, sila tukar nama fail atau menyemak pilihan " "menulis semula." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Pelayan web tidak mempunyai kebenaran untuk menyipan fail %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Longgokan telah disimpan ke fail %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur sahaja" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9196,91 +9221,92 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Cipta indeks pada  %s " -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Fungsi" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Kerana kepanjangannya,
medan ini tidak boleh diedit " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Atau" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direktori muatnaik pelayan-web" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Selit" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9291,31 +9317,31 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Struktur sahaja" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Data sahaja" @@ -9326,14 +9352,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Tambahkan kekangan" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9389,8 +9415,8 @@ msgstr "Proses-proses" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Papar" @@ -9436,19 +9462,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Simpan sebagai fail" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9463,7 +9489,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Tambah medan baru" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9485,7 +9511,7 @@ msgstr "" msgid "Database operations" msgstr "Statistik pangkalan data" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9589,13 +9615,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Tambah/Padam Kolum Medan" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9844,8 +9870,8 @@ msgid "Rename database to" msgstr "Tukar nama pangkalan data ke" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9893,83 +9919,83 @@ msgstr "(persatu)" msgid "Move table to (database.table)" msgstr "Pindah jadual ke (pangkalandata.jadual)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Tukarnama jadual ke" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komen jadual" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Salin jadual ke (pangkalandata.jadual)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Periksa Jadual" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Periksa Jadual" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Jadual %s telah dibuangkan." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Buang jadual (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimakan jadual" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Baiki jadual" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -9977,105 +10003,105 @@ msgstr "Baiki jadual" msgid "Delete data or table" msgstr "Melonggok data bagi jadual" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Tiada pangkalan data" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Baiki jadual" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Tiada Jadual" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Jadual %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Jadual %s telah disalin ke %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Jadual %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Jadual %s telah disalin ke %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Nama jadual adalah kosong!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10102,25 +10128,25 @@ msgstr "Papar warna" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang ke %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10128,7 +10154,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10155,15 +10181,15 @@ msgstr "Namapengguna:" msgid "Server Choice:" msgstr "Pilihan Pelayan" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10235,7 +10261,7 @@ msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" @@ -10244,7 +10270,7 @@ msgstr "Melonggok data bagi jadual" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "Hantar" @@ -10253,8 +10279,8 @@ msgstr "Hantar" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10357,7 +10383,7 @@ msgstr "Letakkan medan di baris pertama" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -10917,7 +10943,7 @@ msgstr "Kandungan" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -11264,57 +11290,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "tiada keterangan" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11323,317 +11349,317 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Sila pilih pangkalan data" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "Hubungan" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Tekspenuh" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Struktur sahaja" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Struktur sahaja" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Kata Pengenalan" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Kata Pengenalan" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Katalaluan" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Isih" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Pembolehubah" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Hos" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Sebarang hos" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Sebarang pengguna" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "Tambah medan baru" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ulang-taip" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Change password" msgid "Generate password:" msgstr "Ubah Katalaluan" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "Bebenang %s telah berjaya dimatikan." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Bebenang %s telah berjaya dimatikan." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "Bebenang %s telah berjaya dimatikan." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Ralat" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Thread %s was successfully killed." msgid "Master server changed successfully to %s." msgstr "Bebenang %s telah berjaya dimatikan." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11655,7 +11681,7 @@ msgstr "Jadual %s telah digugurkan" msgid "Event %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11665,82 +11691,82 @@ msgstr "" msgid "Edit event" msgstr "Hantar" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy msgid "Event name" msgstr "Jenis Kueri" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Ubah" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Status" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Tamat" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Kemasukkan Selesai" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -11763,7 +11789,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy msgid "Returns" msgstr "Statistik pangkalan data" @@ -11776,142 +11802,142 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nama Kolum" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy msgid "Direction" msgstr "Cipta" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy msgid "Remove last parameter" msgstr "Tukarnama jadual ke" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy msgid "Return options" msgstr "Statistik pangkalan data" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Jenis Kueri" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11935,36 +11961,36 @@ msgstr "Jadual %s telah digugurkan" msgid "Edit trigger" msgstr "Tambah Pengguna Baru" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Kata Pengenalan" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Masa" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12097,612 +12123,563 @@ msgstr "" msgid "Databases statistics" msgstr "Statistik pangkalan data" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Tiada" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "Hubungan" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "Hubungan" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" msgstr "Tambah medan baru" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "Global value" msgid "Global" msgstr "Nilai Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentasi" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Ubah Katalaluan" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Dokumentasi" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Kata Pengenalan" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Nama Kolum" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentasi" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Katalaluan:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Sebarang pengguna" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy msgid "Database for user account" msgstr "Statistik pangkalan data" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Run SQL query/queries on database %s" msgid "Grant all privileges on database %s." msgstr "Laksana kueri SQL pada pangkalan data %s" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy msgid "User has been added." msgstr "Medan %s telah digugurkan" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 #, fuzzy msgid "Grant" msgstr "Cetak" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Sebarang" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "TarikBalik" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy msgid "Routine-specific privileges" msgstr "Tiada Privilej" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "With selected:" -msgid "Remove selected user accounts" -msgstr "Dengan pilihan:" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilej" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12711,7 +12688,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12720,11 +12697,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." @@ -13012,12 +12989,12 @@ msgstr "Arahan" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "Papar jadual" @@ -13045,12 +13022,12 @@ msgstr "sedang digunakan" msgid "per second:" msgstr "Rekod" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Penyataan" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13079,34 +13056,34 @@ msgstr "Papar jadual" msgid "Related links:" msgstr "Operasi" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13114,78 +13091,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13193,7 +13170,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13201,42 +13178,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13244,33 +13221,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13279,243 +13256,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fail bagi set Aksara:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13523,99 +13500,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13623,18 +13600,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13642,12 +13619,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Jenis Kueri" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13684,47 +13661,47 @@ msgstr "pangkalan data" msgid "Table level tabs" msgstr "Komen jadual" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "Sebarang pengguna" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Sebarang pengguna" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy msgid "User group menu assignments" msgstr "Tiada Privilej" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nama Kolum" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versi Pelayan" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "pangkalan data" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13832,7 +13809,7 @@ msgstr "Laksana kueri SQL pada pangkalan data %s" msgid "Run SQL query/queries on table %s" msgstr "Laksana kueri SQL pada pangkalan data %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -13923,103 +13900,103 @@ msgstr "" msgid "Version" msgstr "Versi PHP" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Dibina" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "dikemaskini" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Versi Pelayan" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Laporan penjejak" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Paparan struktur" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktif" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "tidak aktif" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Tiada pangkalan data" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Namapengguna:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14027,79 +14004,79 @@ msgctxt "None for default" msgid "None" msgstr "Tiada" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versi Pelayan" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 #, fuzzy msgid "Untracked tables" msgstr "Jadual terlacak" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Kesan jadual" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 #, fuzzy msgid "Tracked tables" msgstr "Jadual dikesan" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Versi terakhir" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete" msgid "Delete tracking" msgstr "Padam" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versi" @@ -14109,7 +14086,7 @@ msgstr "Versi" msgid "Manage your settings" msgstr "Ciri-ciri hubungan am" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14135,7 +14112,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14143,82 +14120,82 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "Dokumentasi phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Simpan sebagai fail" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14227,46 +14204,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Tiada Privilej" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Bebenang %s telah berjaya dimatikan." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14274,103 +14251,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Pengubahsuaian telah disimpan" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Pengubahsuaian telah disimpan" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Local" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "Dokumentasi phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14408,28 +14384,28 @@ msgstr "" msgid "Show form" msgstr "Papar warna" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14444,12 +14420,12 @@ msgstr "Tiada pangkalan data" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14462,35 +14438,35 @@ msgstr "Lihat longgokan (skema) pangkalan data" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "With selected:" msgid "No row selected." msgstr "Dengan pilihan:" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "angkalan data %s telah digugurkan." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "With selected:" msgid "No versions selected." msgstr "Dengan pilihan:" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14702,7 +14678,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy msgid "Browser display transformation" msgstr "Informasi MasaJana" @@ -14727,7 +14703,7 @@ msgstr "" "ia (cth '\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Runtime Information" msgid "Input transformation" @@ -15246,17 +15222,17 @@ msgid "Size" msgstr "Saiz" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Mewujudkan" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Kemaskini terakhir" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Semakan Terakhir" @@ -15291,6 +15267,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete" +msgid "Delete settings " +msgstr "Padam" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -15309,10 +15291,47 @@ msgstr "Cipta jadual baru pada pangkalan data %s" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Tiada" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "With selected:" +msgid "Remove selected user accounts" +msgstr "Dengan pilihan:" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15347,7 +15366,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15534,7 +15553,7 @@ msgstr "Pengguna" msgid "Comment:" msgstr "Komen" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15572,30 +15591,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Tambahkan kekangan" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy msgid "Internal relations" msgstr "Ciri-ciri hubungan am" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy msgid "Internal relation" msgstr "Ciri-ciri hubungan am" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15659,12 +15678,12 @@ msgstr "Rentetan talian" msgid "Replaced string" msgstr "Operasi" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "Baiki jadual" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "kueri-SQL" @@ -15748,7 +15767,7 @@ msgid "at beginning of table" msgstr "Pada Awalan Jadual" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy msgid "Partitions" msgstr "Operasi" @@ -15779,29 +15798,29 @@ msgstr "Panjang baris" msgid "Index length" msgstr "Panjang baris" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy msgid "Partition table" msgstr "Operasi" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Print view" msgid "Edit partitioning" msgstr "Paparan Cetak" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Paparan Cetak" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Penggunaan ruang" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Berkesan" @@ -15831,33 +15850,33 @@ msgstr "Cadangkan struktur jadual" msgid "Track view" msgstr "Kesan jadual" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Statistik Baris" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamik" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Panjang baris" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Saiz baris" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15871,49 +15890,49 @@ msgstr "Jadual %s telah digugurkan" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy msgid "Available browser display transformations" msgstr "Informasi MasaJana" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy msgid "Available input transformations" msgstr "Informasi MasaJana" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy msgctxt "for MIME transformation" msgid "Description" msgstr "tiada keterangan" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Laporan penjejak" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil telah dikemaskini." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -15986,7 +16005,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16011,19 +16030,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." msgstr "Dengan pilihan:" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16079,26 +16098,26 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "Jadual %s telah digugurkan" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awalan Jadual" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16115,10 +16134,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Pada Awalan Jadual" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16163,7 +16188,7 @@ msgstr "" msgid "strict error" msgstr "Jenis Kueri" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17285,6 +17310,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Dokumentasi" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/nb.po b/po/nb.po index 7cee6fa0b4..ed406698d2 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-05-19 17:17+0000\n" "Last-Translator: Axel Magnus Gaasø \n" "Language-Team: Norwegian Bokmål Are you sure you " "want to continue?" @@ -1963,51 +1968,51 @@ msgstr "" "Denne handlingen kan endre definisjonen av enkelte kolonner.
Er du " "sikker på at du vil fortsette?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Fortsett" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Legg til primærnøkkel" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Primærnøkkel lagt til." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Tar deg videre til neste trinn…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Første trinn av normaliseringen er ferdig for tabellen '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Slutten på dette trinnet" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Andre trinn for normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Utført" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Bekreft delvise avhengigheter" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Valgte delvise avhengigheter er følgende:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2015,19 +2020,19 @@ msgstr "" "Merk: a, b -> d, f forutsetter at verdiene i kolonnene a og b, sammen kan " "bestemme verdiene for kolonne d og kolonne f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Ingen delvise avhengigheter er valgt!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Vis meg mulige delvise avhengigheter basert på dataene i tabellen" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Skjul listen over delvise avhengigheter" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2035,185 +2040,185 @@ msgstr "" "Slapp av! Dette kan ta noen sekunder, basert på datamengden og antall " "kolonner i tabellen." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Trinn" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Følgende handlinger vil bli utført:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "SLETT kolonnene %s fra tabellen %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Lag følgende tabell" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tredje trinn av normaliseringen (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Bekreft transitive avhengigheter" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Følgende er valgte avhengigheter:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Ingen avhengigheter er valgt!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Lagre" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Skjul søkekriterier" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Områdesøk" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Kolonne maksimum:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Kolonne minimum:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimumsverdi:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maksimumsverdi:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Skjul kriterier for søk- og erstatt" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Vis kriteriene for søk og erstatt" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Hvert punkt representerer en datarad." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Ved å ha musen over punktet vises dets etikett." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "For å zoome inn, velger en del for plotteområdet med musen." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Trykk på \"tilbakestill zoom\"-knappen for å gå tilbake til " "standardvisningen." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Velg et datapunkt for å vise, og eventuelt endre raden med data." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Du kan endre størrelsen på området ved å dra i hjørnet nederst til høyre." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Velg to kolonner" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Velg to forskjellige kolonner" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Datapunktinnhold" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopier" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ytre ring:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøkkel?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Krypteringsnøkkel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2221,24 +2226,24 @@ msgstr "" "Indikerer at du har gjort endringer til denne siden; du vil bli bedt om " "bekreftelse før du forlater endringer" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Velg primærnøkkelen eller en unik nøkkel!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Velg kolonne for visning" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2246,76 +2251,76 @@ msgstr "" "Du har ikke lagret endringene i utseendet. De vil forsvinne om du ikke " "lagrer dem. Ønsker du å fortsette?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Sidenummer" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Lagre side" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Lagre side som" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åpne siden" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Slett side" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Ikke navngitt" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Vennligst velg en side for å fortsette" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Vennligst tast inn et gyldig side navn" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Ønsker du å lagre endringene i den gjeldende siden?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Slettet side" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Eksporter relasjonsskjema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Legg til valg for kolonne \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) opprettet." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Send" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Trykk Escape for å avbryte endring." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2323,15 +2328,15 @@ msgstr "" "Du har endret en del data og de har ikke blitt lagret. Er du sikker på at du " "vil forlate denne siden før du lagrer dataene?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Dra for å endre rekkefølgen." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Klikk for å sortere resultatene etter denne kolonnen." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2341,26 +2346,26 @@ msgstr "" "mellom STIGENDE/ SYNKENDE
- Ctrl + klikk eller Alt + klikk (Mac: Shift " "+ Option + Klikk). For å fjerne kolonnen fra BESTILLT AV-leddet" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klikk for å markere/fjern markering." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Dobbelklikk for å kopiere kolonnenavn." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klikk pilen som peker ned
for å bytte på kolonnens synlighet." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2369,11 +2374,11 @@ msgstr "" "valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger " "virker kanskje ikke etter lagring." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Skriv inn en gyldig heksadesimal streng. Gyldige tegn er 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2381,103 +2386,103 @@ msgstr "" "Ønsker du virkelig å se alle radene? For et stort bord kan dette krasje " "nettleseren." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Opprinnelig lengde" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "avbryt" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avbrutt" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Vellykket" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Import status" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Legg filene her" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Velg database først" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Skriv ut" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Du kan også endre de fleste verdiene
ved å dobbeltklikke på dem." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "Du kan også endre de fleste verdiene
ved å dobbeltklikke på dem." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Gå til link:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopier kolonnenavn." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Høyreklikk på kolonnenavnet for å kopiere det til utklippstavlen." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generer" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mer" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigasjonstreet." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Lenke med hovedpanelet" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Fjern lenke fra hovedpanelet" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Den valgte siden ble ikke funnet i historikken. Siden kan ha utløpt." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2487,57 +2492,57 @@ msgstr "" "Den nye versjonen har nummer %s og er utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "er oppdatert" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Opprett view" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Tjenerport" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Send feilrapport" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Det oppstod en alvorlig feil i JavaScript. Ønsker du å sende en feilrapport?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Endre Rapportinnstillinger" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Vis Rapportdetaljer" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Eksporten er ufullstendig, på grunn av en lav kjøringsfrist på PHP nivå!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2546,62 +2551,62 @@ msgstr "" "Advarsel: et skjema på denne siden har mer enn %d felt. Ved innsending kan " "noen av feltene bli ignorert, på grunn av PHP max_input_vars konfigurasjon." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Noen feil har blitt oppdaget på serveren!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Vennligst se nederst i dette vinduet." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorer alle" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "I henhold til dine innstillinger, blir de sendt i dag, vær tålmodig." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Utfør denne spørring igjen?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Vil du virkelig slette dette bokmerket?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabellkommentarer" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Skjul søkeresultater" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2610,363 +2615,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopier databasen til" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Utfør indeks(er)" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Erstatt tabellprefiks" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopier tabell med prefiks" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "I dag" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Januar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Februar" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Mars" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "April" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "August" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "September" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "November" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Des" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Mandag" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Fredag" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Uke" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalender-måned-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Time" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minutt" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekund" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Vennligst ordne dette feltet" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Vennligst tast inn en gyldig e-post adresse" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Vennligst tast inn en gyldig URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Vennligst tast inn en gyldig dato" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Vennligst tast inn en gyldig dato ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Vennligst tast inn et gyldig tall" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Vennligst tast inn et gyldig kreditkort nummer" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Vennligst oppgi kun tall" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Vennligst tast inn den samme verdien igjen" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Vennligst tast inn minst {0} tegn" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Vennligst tast inn en verdi mellom {0} og {1}" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Vennligst oppgi en gyldig lengde!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Feil" @@ -3029,20 +3054,20 @@ msgid "Charset" msgstr "Tegnsett" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Sammenligning" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binær" @@ -3239,7 +3264,7 @@ msgid "Czech-Slovak" msgstr "Tjekkoslovakisk" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "ukjent" @@ -3291,28 +3316,28 @@ msgstr "" msgid "Font size" msgstr "Fontstørrelse" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Ingen bokmerker" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL spørrings konsoll" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Kunne ikke lese konfigurasjonsfilen!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3320,25 +3345,25 @@ msgstr "" "Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke " "korrekt konfigurert)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Tjeneren svarer ikke." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Vennligst sjekk privilegiene på mappen som inneholder databasen." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Mangler parametere:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet." @@ -3435,112 +3460,107 @@ msgstr "Sett inn:" msgid "Del:" msgstr "Slett:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-spørring i database %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Kjør spørring" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Lagret bokmerke søk:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nytt bokmerke" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Lag bokmerke" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Oppdater bokmerke" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Slett bokmerke" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "minst ett av ordene" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "alle ordene" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "med den nøyaktige setningen" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "som \"regular expression\"" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søkeresultat for \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s treff" msgstr[1] "Totalt: %s treff" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s treff i %2$s" msgstr[1] "%1$s treff i %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Se på" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Slett treffene for %s tabellen?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Søk i database" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller verdier å søke med (jokertegn: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Finn:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Ord er separert med et mellomrom (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "I tabellene:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Avmarker alle" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "I kolonne:" @@ -3560,30 +3580,30 @@ msgstr "Filter rader" msgid "Search this table" msgstr "Søk i denne tabellen" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Neste" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Siste" @@ -3592,7 +3612,7 @@ msgstr "Siste" msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Antall rader:" @@ -3601,8 +3621,8 @@ msgstr "Antall rader:" msgid "Sort by key" msgstr "Sorter etter nøkkel" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3624,10 +3644,10 @@ msgstr "Sorter etter nøkkel" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Innstillinger" @@ -3669,104 +3689,104 @@ msgstr "Velkjent Tekst" msgid "Well Known Binary" msgstr "Velkjent Binær" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Raden er slettet." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Avslutt" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kan være unøyaktig. Se [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Kommandoen/spørringen er utført." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Viser radene %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d i spørring" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d totalt" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Spørring tok %01.4f sekunder." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Med avkrysset:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Merk alle" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link ikke funnet!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Ingen" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konverter til Kana" @@ -3774,25 +3794,25 @@ msgstr "Konverter til Kana" msgid "Too many error messages, some are not displayed." msgstr "For mange feilmeldinger, noen vises ikke." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Rapporter" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Automatisk send rapport neste gang" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Filen var ikke en opplastet fil." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Opplastingsfilen er større enn upload_max_filesize direktivet definert i php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3800,51 +3820,51 @@ msgstr "" "Opplastingsfilen er større enn MAX_FILE_SIZE direktivet som ble spesifisert " "i HTML-skjemaet." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Opplastingsfilen ble bare delvis opplastet." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Feil ved skriving av fil til disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Filopplasting stoppet av utvidelse." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Filen kunne ikke leses!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Feil oppstod under forsøk på flytting av den opplastede filen, se " "[doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Feil oppstod imens den opplastede filen ble flyttet." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Kan ikke lese (flyttet) opplastet fil." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3853,28 +3873,28 @@ msgstr "" "Du forsøkte å laste en fil med komprimering det ikke er støtte for (%s). " "Enten så er ikke støtte implementert eller det er slått av i oppsettet ditt." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Kjører Git-revisjon %1$s fra %2$s gren." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git - informasjonen mangler!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Åpne nytt phpMyAdmin vindu" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Utskriftsvisning" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Klikk på linjen for å bla til toppen av siden" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "JavaScript må være slått på forbi dette punktet!" @@ -3883,20 +3903,20 @@ msgid "No index defined!" msgstr "Ingen indeks definert!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indekser" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3906,59 +3926,59 @@ msgstr "Indekser" msgid "Action" msgstr "Handling" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nøkkel" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pakket" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primærnøkkelen har blitt slettet." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeksen %s har blitt slettet." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Slett" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3967,19 +3987,19 @@ msgstr "" "Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne " "fjernes." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sidenummer:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Språk" @@ -4003,11 +4023,11 @@ msgstr "Tjener" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4026,14 +4046,15 @@ msgid "View" msgstr "Vis" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4042,8 +4063,8 @@ msgid "Table" msgstr "Tabell" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4051,45 +4072,45 @@ msgstr "Tabell" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Søk" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Sett inn" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operasjoner" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Overvåkning" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4105,16 +4126,16 @@ msgstr "Triggere" msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Spørring" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4122,20 +4143,20 @@ msgstr "Rutiner" msgid "Events" msgstr "Hendelser" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Senter kolonner" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databaser" @@ -4146,53 +4167,53 @@ msgid "User accounts" msgstr "Brukere" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binærlogg" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikering" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Tegnsett" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motorer" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Programtillegg" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d rad berørt." msgstr[1] "%1$d rader berørt." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d rader slettet." msgstr[1] "%1$d rader slettet." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4240,27 +4261,27 @@ msgstr "Favorittabeller" msgid "Favorites" msgstr "Favoritter" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Vennligst oppgi et navn for dette bokmerkede søket." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Mangler informasjon for å lagre bokmerket søk." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "En oppføring med dette navnet finnes allerede." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Mangler informasjon for å slette søket." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Mangler informasjon for å laste søket." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Feil ved lasting av søket." @@ -4322,7 +4343,7 @@ msgstr "Vis åpne tabeller" msgid "Show slave hosts" msgstr "Vis slaveverter" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Vis masterstatus" @@ -4376,70 +4397,70 @@ msgid_plural "%d minutes" msgstr[0] "%d minutt" msgstr[1] "%d minutter" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Det er ikke noen detaljert statusinformasjon for denne lagringsmotoren." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgjengelig på denne MySQL theneren." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har blitt dekativert for denne MySQL tjeneren." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Ukjent tabellstatus:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Kildedatabasen \"%s\" ble ikke funnet!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Måldatabasen %s ble ikke funnet!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Ugylding database:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Ugyldig tabellnavn:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Feil ved endring av tabellnavn %1$s til %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %1$s har endret navn til %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Kunne ikke lagre preferanser for tabellgrensesnitt!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4448,7 +4469,7 @@ msgstr "" "Feil ved opprydning av preferansene for tabellgrensesnitt (se $cfg['Servers']" "[$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4459,19 +4480,19 @@ msgstr "" "etter at du har lastet denne siden på nytt. Vennligst sjekk om " "tabellstrukturen har blitt endret." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Navnet til primærnøkkelen må være \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Kan ikke endre indeks til PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Ingen indeksdeler definert!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4795,7 +4816,7 @@ msgid "Date and time" msgstr "Dato og tid" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Streng" @@ -4810,134 +4831,134 @@ msgstr "Romtyper" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statistikkdata" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "uten PHP kode" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kjør spørring" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Lag PHP kode" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Oppdater" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilering" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Rediger innenfor" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Søn" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dager, %s timer, %s minutter og %s sekunder" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Mangler parametere:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Hopp til databasen \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Katalogen du anga for opplasting kan ikke nåes." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Det er ingen filer å laste opp!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tøm" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Utfør" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Brukere" @@ -4951,7 +4972,7 @@ msgstr "per minutt" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per time" @@ -4959,12 +4980,12 @@ msgstr "per time" msgid "per day" msgstr "hver dag" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Søk:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4972,7 +4993,7 @@ msgstr "Søk:" msgid "Description" msgstr "Beskrivelse" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Bruk denne verdien" @@ -5014,22 +5035,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Navn" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Lengde/Sett*" @@ -5038,7 +5059,7 @@ msgstr "Lengde/Sett*" msgid "Attribute" msgstr "Attributt" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5055,11 +5076,11 @@ msgstr "Legg til kolonne(r)" msgid "Select a column." msgstr "Velg en kolonne." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Legg til ny kolonne" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5067,7 +5088,7 @@ msgstr "Legg til ny kolonne" msgid "Attributes" msgstr "Attributter" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5076,26 +5097,26 @@ msgstr "" "Du har slått på mbstring.func_overload i din PHP konfigurasjon. Dette er " "ikke kompatibelt med phpMyAdmin og kan medføre at data ødelegges!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5103,20 +5124,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "mulig sikkerhetshull" @@ -5821,7 +5842,7 @@ msgid "Compress on the fly" msgstr "Komprimer direkte" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfigurasjonsfil" @@ -5951,13 +5972,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Maks kjøretid" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Oversikt" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Lagre som fil" @@ -5967,7 +5988,7 @@ msgstr "Filens tegnsett" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6098,7 +6119,7 @@ msgid "Save on server" msgstr "Lagre på tjener" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Skriv over eksisterende filer" @@ -6113,7 +6134,7 @@ msgid "Remember file name template" msgstr "Husk filnavnmal" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" @@ -6122,7 +6143,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" @@ -6154,7 +6175,7 @@ msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Legg til %s" @@ -6354,7 +6375,7 @@ msgid "Customize the navigation tree." msgstr "Tilpasse navigasjonspanelet" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Tjenere" @@ -7432,7 +7453,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Autentiseringsmetode som skal brukes" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Autentiseringstype" @@ -8313,7 +8334,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Sjekk for siste versjon" @@ -8321,10 +8342,10 @@ msgstr "Sjekk for siste versjon" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versjonskontroll" @@ -8479,25 +8500,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document tekst" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Favotittlisten er full!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabellen %s har blitt tømt." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Visningen %s har blitt slettet" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8512,12 +8533,12 @@ msgid "Position" msgstr "Posisjon" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Hendelsestype" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Tjener ID" @@ -8526,7 +8547,7 @@ msgid "Original position" msgstr "Original posisjon" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informasjon" @@ -8540,16 +8561,16 @@ msgstr "Forkort vist spørring" msgid "Show Full Queries" msgstr "Vis hele spørringen" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Ingen databaser" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Databasen %1$s er opprettet." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8557,26 +8578,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databasene har blitt slettet." msgstr[1] "%s databasene har blitt slettet." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rader" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Totalt" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overheng" @@ -8605,35 +8626,35 @@ msgstr "" msgid "Enable statistics" msgstr "Slå på statistikk" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Tjenervariabler og -innstillinger" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "Ingen data funnet" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabellen %1$s har blitt endret." @@ -8684,7 +8705,7 @@ msgstr "De valgte brukerne har blitt slettet." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -8704,12 +8725,12 @@ msgstr "Endre" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8732,13 +8753,13 @@ msgstr "Fulltekst" msgid "Distinct values" msgstr "Se gjennom distinkte verdier" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen endring" @@ -8760,139 +8781,143 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Kan ikke starte importerings-tilleggene, kontroller din installasjon!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Intet passord" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Passord:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Gjenta" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Passordnøkling" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Eksporter database fra gjeldende tjener" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Eksporter tabell fra \"%s\" database" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Eksporter rader fra %s tabell" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Eksport type" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Filnavn mal:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Tabellnavn" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Opprett" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Filnavn mal:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s tabell" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Oppdatert" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "Velg en tabell" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Eksportmetode" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Hurtig - vis minimum alternativer" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Egendefinert - vis alle alternativer" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Databaser" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tabeller" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Formatspesifike valg:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8900,52 +8925,52 @@ msgstr "" "Bla ned for å fylle ut valgene for det valgte formatet og ignorere valgene " "for andre formater." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Kodingskonvertering:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rader:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Dump (noen) rad(er)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Start med rad:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Dump alle rader" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Utskrift:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Lagre på server i %s katalogen" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Filnavn mal:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ vil bli tjenernavnet" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ vil bli databasenavnet" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ vil bli tabellnavnet" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "alue is interpreted using %1$sstrftime%2$s, so you can use time matting " @@ -8960,113 +8985,113 @@ msgstr "" "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " "All annen tekst beholdes som den er." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Filens tegnsett:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Komprimering:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "Pakket (zip)" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzippet" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Vis utskrift som tekst" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Eksporter views som tabeller" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horisontal (roterte overskrifter)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Lagre utdata til fil" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Velg tabeller" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Velg tabeller" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Databasenavn" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "User name" msgid "New table name" msgstr "Brukernavn" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "Kopier kolonnenavn" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Kopier kolonnenavn" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Kunne ikke laste eksporttillegg, kontroller din innstallasjon!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Opprett versjon %s av %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -9535,13 +9560,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ikke nok plass til å lagre filen %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9549,39 +9574,39 @@ msgstr "" "Filen %s eksisterer alt på serveren, endre navnet eller merk av for " "overskriving av fil." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tillatelse til å lagre filen %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til filen %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte et tomt resultat - det vil si ingen rader." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Vis en strukturs innhold ved å klikke på dens navn" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9591,47 +9616,47 @@ msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Endre dens struktur ved å følge \"Struktur\" linken" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Gå til database" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Mangler data for %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Gå til tabell" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun struktur" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Gå til visning" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9642,20 +9667,20 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Lag en indeks på %s kolonner" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funksjon" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." @@ -9663,64 +9688,65 @@ msgstr "" "På grunn av sin lengde,
så vil muligens denne kolonnen ikke være " "redigerbar" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binær - må ikke redigeres" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Eller" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "webtjener opplastingskatalog" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Rediger/Sett inn" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restarte innsettinga med %s rader" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "og så" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Returner" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9730,8 +9756,8 @@ msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9742,31 +9768,31 @@ msgstr "" msgid "Value" msgstr "Verdi" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Kun struktur" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktur og data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Bare data" @@ -9777,14 +9803,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Legg til begrensninger" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9847,8 +9873,8 @@ msgstr "Prosedyrer" msgid "Views:" msgstr "Visning" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Vis" @@ -9895,17 +9921,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Fjern hurtigfilter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9921,7 +9947,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Kunne ikke legge til kolonner!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9942,7 +9968,7 @@ msgstr "" msgid "Database operations" msgstr "Databaseeksportinnstillinger" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -10045,13 +10071,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Velg to kolonner" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -10308,8 +10334,8 @@ msgid "Rename database to" msgstr "Endre databasens navn til" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10357,81 +10383,81 @@ msgstr "(enkeltvis)" msgid "Move table to (database.table)" msgstr "Flytt tabell til (database.tabell)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Endre tabellens navn" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabellkommentarer" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabellinnstillinger" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopier tabell til (database.tabell)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Bytt til kopiert tabell" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabellvedlikehold" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analyser tabell" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Kontroller tabell" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Kontroller tabell" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmenter tabell" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabelen %s har blitt oppfrisket." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Oppfrisk tabellen (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimiser tabell" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparer tabell" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10439,105 +10465,105 @@ msgstr "Reparer tabell" msgid "Delete data or table" msgstr "Slett overvåkningsdata for denne tabellen" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Gå til database" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analyser" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Kontroller" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimaliser" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Gjenoppbygg" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Reparer" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Lukk" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Partisjonsvedlikehold" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partisjon %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Fjern partisjonering" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til samme navn!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til samme navn!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabellen %s har blitt flyttet til %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabellen %s er kopiert til %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har blitt flyttet til %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er kopiert til %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tabellnavnet er tomt!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10567,18 +10593,18 @@ msgstr "Vis farger" msgid "Only show keys" msgstr "Bare vis nøkler" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Kan ikke koble til: ugyldige innstillinger." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10587,7 +10613,7 @@ msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10599,7 +10625,7 @@ msgstr "" "passord (password) i config.inc.php og sjekke at de tilsvarer den " "informasjonen du fikk fra MySQL-server administratoren." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10626,15 +10652,15 @@ msgstr "Brukernavn:" msgid "Server Choice:" msgstr "Tjenervalg" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10707,7 +10733,7 @@ msgstr "Databasevisningsinnstillinger" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dataark for tabell" @@ -10716,7 +10742,7 @@ msgstr "Dataark for tabell" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Hendelse" @@ -10724,8 +10750,8 @@ msgstr "Hendelse" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10825,7 +10851,7 @@ msgstr "Sett inn kolonnenavn i første rad" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11400,7 +11426,7 @@ msgstr "Innholdsfortegnelse" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -11832,18 +11858,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11851,41 +11877,41 @@ msgid "" "configuration storage there." msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Masterreplikasjon" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Vis tilkoblede slaver" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Masterkonfigurering" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11906,19 +11932,19 @@ msgstr "" "databasene) eller du kan velge å ignorere alle databaser som standard og " "tillate bare enkelte databaser å bli replikert. Vennligst velg modus:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; repliker:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Vennligst velg databaser:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11926,7 +11952,7 @@ msgstr "" "Legg til følgende linjer på slutten av din my.cnf og restart MySQL tjeneren " "etterpå.." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11936,79 +11962,79 @@ msgstr "" "vil du se en melding som informerer deg at denne tjeneren er " "konfigurert som master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slavereplikasjon" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Usikker tilkobling" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kjører ikke!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kjører ikke!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Tjener er konfigurert som slave i en replikasjonsprosess. Ønsker du å:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Se slavestatustabell" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kontrollslave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Full stopp" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Resett slave" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Kun SQL tråd %s" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Kun SQL tråd %s" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Kun IO tråd %s" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Kun IO tråd %s" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Endre eller rekonfigurer mastertjener" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -12017,25 +12043,25 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Feilbehandling:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Å hoppe over feil kan føre til usynkroniserte master og slave!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Hopp over nåværende feil" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Hopp over nåværende feil" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -12044,11 +12070,11 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slavekonfigurasjon" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -12056,57 +12082,57 @@ msgstr "" "Forsikre deg om at du har unik server-id i din konfigurasjonsfil(my.cnf). " "Hvis ikke, legg til følgende linje i [mysqld] seksjonen:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Brukernavn" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Brukernavn" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Passord" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Port" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Masterstatus" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slavestatus" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabler" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Vert" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -12114,41 +12140,41 @@ msgstr "" "Kun slaver startet med --report-host=host_name opsjonen er synlig i denne " "lista." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Alle verter" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Denne vert" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Alle brukere" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Bruk tekstfelt" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12156,95 +12182,95 @@ msgstr "" "Når vertstabellen er brukt så ignoreres dette feltet og verdier lagret i " "vertstabellen blir brukt istedet." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Gjenta" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Generer passord" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Replikasjonsstatus" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Masterreplikasjon" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Masterreplikasjon" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Replikasjonsstatus" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Masterreplikasjon" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Feil" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Ukjent feil" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Kan ikke koble til master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Kan ikke lese masterloggposisjon. Muligens privilegieproblem på master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Kan ikke endre master" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s." msgstr "Mastertjener endret til %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, fuzzy, php-format @@ -12268,7 +12294,7 @@ msgstr "Kolonne %s har blitt slettet" msgid "Event %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12279,88 +12305,88 @@ msgstr "" msgid "Edit event" msgstr "Rediger tjener" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Detaljer…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Hendelsestype" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Endre" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Oppstart" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Slutt" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "Komplette inserts" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Ugylding tabellnavn" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in Processing Request" @@ -12383,7 +12409,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12397,155 +12423,155 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redigeringsmodus" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Column %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Kolonne %s har blitt slettet" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Column %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Kolonne %s har blitt slettet" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiner" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Direkte linker" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Utfør indeks(er)" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Fjern database" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Returtype" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengde/Sett*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabellinnstillinger" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Sikkerhet" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Ugylding tabellnavn" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Tillater utføring av lagrede rutiner." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12573,44 +12599,44 @@ msgstr "Tabellen %1$s har blitt opprettet." msgid "Edit trigger" msgstr "Legg til en ny tjener" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Triggere" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Tid" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Ugylding tabellnavn" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Ugylding tabellnavn" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Ugylding tabellnavn" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Ugylding tabellnavn" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12758,93 +12784,93 @@ msgstr "Tegnsett og sammenligninger" msgid "Databases statistics" msgstr "Statistikk for databaser" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Ingen privilegier." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Tillater lesing av data." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Tillater endring av data." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Tillater sletting av data." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Tillater visning av prosessene til alle brukere" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12854,134 +12880,108 @@ msgstr "" "fleste administrative operasjoner som å sette globale variabler eller " "avslutting av andre brukeres tråder." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" "tjenere er." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Tillater å sette opp hendelser for hendelseskalenderen" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Tillater opprettelse og sletting av triggere" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Ingen" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Vedvarende forbindelser" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Vedvarende forbindelser" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ressursbegrensninger" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12989,408 +12989,387 @@ msgstr "" "Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren " "kan utføre per time." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutiner" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Tillater endring og sletting av lagrede rutiner." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Tillater utføring av lagrede rutiner." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "OBS: MySQL privilegiumnavn er på engelsk" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administrasjon" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globale privilegier" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillater å legge til brukere og privilegier uten å oppfriske " "privilegietabellene." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentisering informasjonskapsler" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Rekkefølge for vertsautentisering" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Autentisering informasjonskapsler" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Brukernavn" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Loggnavn" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Godkjenning" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Passordnøkling" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har fjernet privilegiene til %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Legg til bruker" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Brukerdatabase" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Opprett database med samme navn og gi alle rettigheter." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Gi alle privilegier for databasen \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Brukere som har adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Visningen %s har blitt slettet" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Rettighet" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Alle" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Tilbakekall" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Rediger tjener" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… slett den gamle fra brukertabellene." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Opprett ny bruker med de samme privilegier og …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Fjern valgte brukere" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Slett databasene som har det samme navnet som brukerne." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegier" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Bruker" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Brukere" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Brukeroversikt" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13403,7 +13382,7 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13422,11 +13401,11 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." @@ -13743,13 +13722,13 @@ msgstr "Kommando" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Filter" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13779,12 +13758,12 @@ msgstr "per minutt" msgid "per second:" msgstr "per sekund" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Oversikt" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13816,19 +13795,19 @@ msgstr "Vis åpne tabeller" msgid "Related links:" msgstr "Relasjoner" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kunne ikke koble til MySQL tjener" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13838,17 +13817,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13860,11 +13839,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13872,7 +13851,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13880,7 +13859,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13888,23 +13867,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13914,7 +13893,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13924,7 +13903,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13933,7 +13912,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13944,7 +13923,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13952,7 +13931,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13964,7 +13943,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13976,37 +13955,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Antall tomme sider." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14015,7 +13994,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14027,11 +14006,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14039,7 +14018,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14047,11 +14026,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14059,7 +14038,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14073,55 +14052,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14129,35 +14108,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -14165,51 +14144,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14218,7 +14197,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14226,7 +14205,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14235,17 +14214,17 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Importfilformat" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14255,26 +14234,26 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14285,17 +14264,17 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14303,38 +14282,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14347,7 +14326,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14355,19 +14334,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -14375,11 +14354,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -14387,7 +14366,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14395,15 +14374,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14411,12 +14390,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14424,12 +14403,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14439,24 +14418,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14468,7 +14447,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14478,11 +14457,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14493,13 +14472,13 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Overvåkning er ikke aktiv." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." @@ -14536,49 +14515,49 @@ msgstr "Databaseserver" msgid "Table level tabs" msgstr "Tabellkommentarer" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Visning" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Legg til bruker" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Ingen privilegier." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Kolonnenavn: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Tjenerversjon" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Databaseserver" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14706,7 +14685,7 @@ msgstr "Kjør SQL spørring/spørringer mot databasen %s" msgid "Run SQL query/queries on table %s" msgstr "Kjør SQL spørring/spørringer mot databasen %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Fjern" @@ -14799,123 +14778,123 @@ msgstr "Deaktiver nå" msgid "Version" msgstr "Versjon" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Opprettet" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Oppdatert" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Opprett versjon" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Struktur-øyeblikksbilde" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "inaktiv" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Overvåkingsspørringer" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Slett overvåkningsdata for denne tabellen" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ingen databaser" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL dump (filnedlasting)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL dump" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Dette valget vil erstatte din tabell og dataene den inneholder." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL utførelse" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Datamanipulasjonsuttrykk" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Datadefinisjonsuttrykk" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Dato" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Brukernavn" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versjon %s øyeblikksbilde (SQL kode)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ingen" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Spor disse datadefinisjonsspørringene:" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Spor disse datamanipulasjonsspørringene:" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14923,65 +14902,65 @@ msgstr "" "Du kan utføre dumpen ved å opprette og bruke en midlertidig database. " "Kontroller at du har privilegiene til å gjøre så." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Overvåkningsrapport for tabell `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Opprett versjon %s av %s.%s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versjon %s er opprettet, overvåking av %s.%s er aktivert." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Overvåk tabell" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Overvåkede tabeller" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Siste versjon" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Fjern overvåkning" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Utgaver" @@ -14989,7 +14968,7 @@ msgstr "Utgaver" msgid "Manage your settings" msgstr "Endre dine innstillinger" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -15015,7 +14994,7 @@ msgstr "Feil i ZIP arkivet:" msgid "No files found inside ZIP archive!" msgstr "Ingen filer funnet inne i ZIP arkivet!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -15025,90 +15004,90 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Innsendt skjema inneholder feil" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not import configuration" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importer filer" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Andre hovedinnstillinger" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Tjenerinnstillinger" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Lagre som fil" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -15116,46 +15095,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Ingen privilegier" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s ble avsluttet med suksess." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Last ned" @@ -15163,11 +15142,11 @@ msgstr "Last ned" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Kan ikke laste eller lagre konfigurasjonen" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 #, fuzzy #| msgid "" #| " create web server writable folder [em]config[/em] in phpMyAdmin level " @@ -15183,7 +15162,7 @@ msgstr "" "html#setup_script]documentation[/a]. Hvis ikke så vil du kun være i stand " "til å laste ned eller fremvise den." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -15191,86 +15170,89 @@ msgstr "" "Du bruker ikke en sikker tilkobling, all data (inkludert sensitive, slik som " "passorder) blir overført ukryptert!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Hvis din tjener også er konfigurert til å akseptere HTTPS forespørsler så " "følg [a@%s]denne linken[/a] for å bruke en sikker tilkobling." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Usikker tilkobling" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." msgstr "Konfigurasjonslager" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration storage" msgid "Configuration not saved!" msgstr "Konfigurasjonslager" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Oversikt" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Vis skjulte meldinger (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Der finnes ingen konfigurerte tjenere" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Ny tjener" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Standard språk" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "la brukeren bestemme" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ingen -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Standard tjener" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Linjeslutt" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Vis" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Last" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin hjemmeside" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Doner" @@ -15306,7 +15288,7 @@ msgstr "Ignorer feil" msgid "Show form" msgstr "Vis skjema" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -15314,15 +15296,15 @@ msgstr "" "Lesing av versjon feilet. Du er kanskje offline eller oppgraderingstjeneren " "svarer ikke." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Mottok ugyldig versjonsstreng fra tjeneren" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Uleselig versjonsstreng" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -15331,7 +15313,7 @@ msgstr "" "Du bruker Git versjon, kjør [kbd]git pull[/kbd] :-)[br]Den siste stabile " "versjon er %s, utgitt den %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Ingen ny stabil versjon er tilgjengelig" @@ -15346,12 +15328,12 @@ msgstr "Ingen databaser" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s eksisterer allerede!" @@ -15364,36 +15346,36 @@ msgstr "Vis dump (skjema) av tabell" msgid "Invalid table name" msgstr "Ugylding tabellnavn" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Ingen rader valgt" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "Overvåkning av %s.%s er aktivert." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Ingen rader valgt" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL spørringer utført." @@ -15615,7 +15597,7 @@ msgid "List of available transformations and their options" msgstr "Tilgjengelige transformationer" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15641,7 +15623,7 @@ msgstr "" "eller 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16154,17 +16136,17 @@ msgid "Size" msgstr "Størrelse" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Opprettet" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Sist oppdatert" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Sist kontrollert" @@ -16199,6 +16181,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Fjern overvåkning" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16221,10 +16209,45 @@ msgstr "Legg til privilegier til følgende tabell" msgid "Add privileges on the following table:" msgstr "Legg til privilegier til følgende tabell" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Ingen" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Fjern valgte brukere" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Slett databasene som har det samme navnet som brukerne." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ressursbegrensninger" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Velg binærlogg for visning" @@ -16257,7 +16280,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16454,7 +16477,7 @@ msgstr "Bruker:" msgid "Comment:" msgstr "Kommentar" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16494,22 +16517,22 @@ msgstr "" msgid "Foreign key constraint" msgstr "Fremmednøkkelbegrensning" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Legg til begrensninger" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Interne relasjoner" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Interne relasjoner" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16517,7 +16540,7 @@ msgstr "" "En intern relasjon er ikke nødvendig når en tilsvarende FOREIGN KEY relasjon " "eksisterer." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16577,11 +16600,11 @@ msgstr "Opprinnelig" msgid "Replaced string" msgstr "Erstattet" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Erstatt" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Ytterligere søkekriterier" @@ -16660,7 +16683,7 @@ msgid "at beginning of table" msgstr "Ved begynnelsen av tabellen" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16696,28 +16719,28 @@ msgstr "Radlengde" msgid "Index length" msgstr "Radlengde" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "partisjonert" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Fjern partisjonering" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Rediger visning" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Plassbruk" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektiv" @@ -16746,33 +16769,33 @@ msgstr "Foreslå tabellstruktur" msgid "Track view" msgstr "Spor visning" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Radstatistikk" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statisk" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamisk" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partisjonert" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Radlengde" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Radstørrelse" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16785,50 +16808,50 @@ msgstr "Kolonne %s har blitt slettet." msgid "Click to toggle" msgstr "Klikk for å endre" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Få flere temaer!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tilgjengelige MIME-typer" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Tilgjengelige transformationer" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Tilgjengelige transformationer" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivelse" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Tar deg videre til neste trinn…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke nok rettigheter til å være her nå!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profilen har blitt oppdatert." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16906,7 +16929,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16931,19 +16954,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Ingen tabeller er valgt." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -17006,29 +17029,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Tabellen %1$s har blitt opprettet." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Tabellnavnmal" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Ved begynnelsen av tabellen" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -17047,10 +17070,16 @@ msgstr "Uventede karakterer på linje %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Ved begynnelsen av tabellen" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17097,7 +17126,7 @@ msgstr "" msgid "strict error" msgstr "Samle feilmeldinger" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18324,6 +18353,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er satt til 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autentisering informasjonskapsler" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/ne.po b/po/ne.po index d4137af597..8eeb725ceb 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Nepali Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2346,107 +2351,107 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2455,351 +2460,371 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "No tables selected." msgid "Copy tables to" msgstr "कुनैपनि डेटाबेस चयन गरिएको छैन।" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2860,20 +2885,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3068,7 +3093,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3112,48 +3137,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3247,112 +3272,107 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "सबै परित्याग गर्नुहोस" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3372,30 +3392,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3404,7 +3424,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3413,8 +3433,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3436,10 +3456,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3479,103 +3499,103 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy msgid "Check all" msgstr "ट्रैक तालिका" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3583,97 +3603,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3682,20 +3702,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3705,78 +3725,78 @@ msgstr "" msgid "Action" msgstr "कार्य" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "हटाउ" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3800,11 +3820,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3823,14 +3843,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3839,8 +3860,8 @@ msgid "Table" msgstr "टेबल" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3848,45 +3869,45 @@ msgstr "टेबल" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3902,16 +3923,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3919,20 +3940,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3941,53 +3962,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4035,27 +4056,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4117,7 +4138,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4171,76 +4192,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4248,19 +4269,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4527,7 +4548,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4542,130 +4563,130 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4679,7 +4700,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4687,12 +4708,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4700,7 +4721,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4737,22 +4758,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4761,7 +4782,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4778,11 +4799,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4790,33 +4811,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4824,20 +4845,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5370,7 +5391,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5472,12 +5493,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5487,7 +5508,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5612,7 +5633,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5625,7 +5646,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5634,7 +5655,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5664,7 +5685,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5830,7 +5851,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6663,7 +6684,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7305,7 +7326,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7313,10 +7334,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7451,24 +7472,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7482,12 +7503,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7496,7 +7517,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7510,42 +7531,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s नामको नयाँ डेटाबेस बनाइयो।" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "पङ्क्तिहरू" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7572,32 +7593,32 @@ msgstr "" msgid "Enable statistics" msgstr "टेबल" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7640,7 +7661,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7657,12 +7678,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7683,13 +7704,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7709,169 +7730,173 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "सबै चयन गर्नुहोस" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Database" msgid "Databases:" msgstr "तथ्याङ्क भण्डार" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7879,98 +7904,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8367,86 +8392,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8457,84 +8482,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8545,31 +8571,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8578,14 +8604,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8630,8 +8656,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "देखाउनुहोस्" @@ -8672,17 +8698,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8697,7 +8723,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8716,7 +8742,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8815,11 +8841,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9053,8 +9079,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9098,178 +9124,178 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy msgid "Checksum table" msgstr "ट्रैक तालिका" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9296,25 +9322,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9322,7 +9348,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9347,15 +9373,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9416,7 +9442,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9425,7 +9451,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9433,8 +9459,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9520,7 +9546,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10016,7 +10042,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10338,57 +10364,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10397,293 +10423,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10704,7 +10730,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10713,75 +10739,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10802,7 +10828,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10814,132 +10840,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10961,32 +10987,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11105,567 +11131,524 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "टिप्पणी:" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11674,7 +11657,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11683,11 +11666,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11954,12 +11937,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -11982,12 +11965,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12011,33 +11994,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12045,78 +12028,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12124,7 +12107,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12132,42 +12115,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12175,33 +12158,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12210,242 +12193,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12453,99 +12436,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12553,18 +12536,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12572,11 +12555,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12605,37 +12588,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12730,7 +12713,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12818,180 +12801,180 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "सुधार गरियो" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "पछिल्लो संस्करण" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 #, fuzzy msgid "Tracking report" msgstr "Tracking रिपोर्ट" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 #, fuzzy msgid "Structure snapshot" msgstr "संरचना स्न्यापसट" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "सक्रिय" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "सक्रिय छैन" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 #, fuzzy msgid "Untracked tables" msgstr "Untracked तालिकाहरू हेर्नुहोस्" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "ट्रैक तालिका" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "पछ्याईएका तालिकाहरू हेर्नुहोस्" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "पछिल्लो संस्करण" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "यो तालिकाको लागि ट्रैकिंग डेटा मेट्नुहोस्" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "संस्करण" @@ -12999,7 +12982,7 @@ msgstr "संस्करण" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13023,7 +13006,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13031,78 +13014,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13110,45 +13093,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13156,97 +13139,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13282,28 +13264,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13316,12 +13298,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13334,29 +13316,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13528,7 +13510,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13546,7 +13528,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13981,17 +13963,17 @@ msgid "Size" msgstr "आकार" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -14026,6 +14008,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete settings " +msgstr "यो तालिकाको लागि ट्रैकिंग डेटा मेट्नुहोस्" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14042,10 +14030,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14076,7 +14097,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14232,7 +14253,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14264,26 +14285,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14336,11 +14357,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14409,7 +14430,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14433,26 +14454,26 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Creation:" msgid "Partition table" msgstr "निर्माण:" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14478,31 +14499,31 @@ msgstr "" msgid "Track view" msgstr "ट्रैक तालिका" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14515,44 +14536,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14622,7 +14643,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14643,17 +14664,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14705,24 +14726,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14739,10 +14760,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14781,7 +14806,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/nl.po b/po/nl.po index 1208872b01..adadf40b7d 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-10 18:12+0000\n" "Last-Translator: dingo thirteen \n" -"Language-Team: Dutch " -"\n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.9\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "Het bestand %s is niet beschikbaar op dit systeem, bezoek a.u.b. %s voor " "meer informatie." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "De centrale lijst met kolommen voor de huidige database is leeg." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Klik om te sorteren." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Weergeven van regels %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Database commentaar" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Tabelopmerkingen:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Tabelopmerkingen:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Tabelopmerkingen:" msgid "Column" msgstr "Kolom" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Kolom" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Kolom" msgid "Type" msgstr "Type" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Type" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Leeg" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Leeg" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Standaardwaarde" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Standaardwaarde" msgid "Links to" msgstr "Verwijst naar" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Verwijst naar" msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primaire sleutel" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Primaire sleutel" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Primaire sleutel" msgid "No" msgstr "Nee" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "Nee" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Bekijk export (schema) van database" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Geen tabellen gevonden in de database." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Tabellen" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,27 +283,27 @@ msgstr "Structuur" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Data" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Alles selecteren" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "De databasenaam is leeg!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Database %1$s is hernoemd naar %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Database %1$s is gekopieerd naar %2$s." @@ -315,27 +315,27 @@ msgid "" msgstr "" "De configuratie-opslag van phpMyAdmin is uitgeschakeld. %sOntdek waarom%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Er moet ten minste één weer te geven kolom worden gekozen!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Overschakelen naar %svisuele builder%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Toegang geweigerd!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Tracking-gegevens succesvol verwijderd." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -343,11 +343,11 @@ msgstr "" "Versie %1$s is aangemaakt voor de geselecteerde tabellen, waarvoor tracking " "is ingeschakeld." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Er zijn geen tabellen geselecteerd." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Database-log" @@ -387,133 +387,133 @@ msgstr "Verkeerd type!" msgid "Bad parameters!" msgstr "Verkeerde parameters!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Waarde voor kolom \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Gebruik OpenStreetMaps als basislayer" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometrie %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punt:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punt %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Een punt toevoegen" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Regel-string %d:" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Buitenste ring:" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Binnenste ring %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Een regel-string toevoegen" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Een binnenring toevoegen" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Veelhoek %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Een veelhoek toevoegen" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Geometrie toevoegen" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Starten" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Uitvoer" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -521,19 +521,19 @@ msgstr "" "Kies 'GeomFormText' uit de kolom 'Functie' en kopieer onderstaande string in " "het veld 'Waarde'." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Geslaagd" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Mislukt" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Onvolledige parameters" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -542,15 +542,15 @@ msgstr "" "U probeerde waarschijnlijk een bestand te uploaden dat te groot is. Zie " "%sdocumentatie%s om deze limiet te omzeilen." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Bladwijzer tonen" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "De bladwijzer is verwijderd." -#: import.php:489 +#: import.php:486 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 " @@ -561,24 +561,24 @@ msgstr "" "bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [doc@faq1-16]FAQ " "1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "De importeer-plugins konden niet worden geladen, controleer de installatie!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Bladwijzer %s is aangemaakt." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Het importeren is geslaagd, %d query uitgevoerd." msgstr[1] "Het importeren is geslaagd, %d queries uitgevoerd." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -587,7 +587,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, als u het importeren wilt afmaken, " "%sresubmit dezelfde file%s opnieuw en de import zal hervat worden." -#: import.php:632 +#: import.php:629 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." @@ -596,7 +596,7 @@ msgstr "" "dit dat phpMyAdmin het importeren niet kan afmaken, tenzij de " "tijdsbeperkingen van PHP worden versoepeld." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." @@ -604,17 +604,17 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." msgid "Could not load the progress of the import." msgstr "Voortgang van de import kon niet worden ingelezen." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Terug" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin-demo-server" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -624,107 +624,107 @@ msgstr "" "U gebruikt de demoserver. U kunt alles doen, maar wijzigt u de root, debian-" "sys-maint en pma-gebruikers niet. Meer informatie is beschikbaar op %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Algemene instellingen" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Wachtwoord wijzigen" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Collatie van de serververbinding" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Opmaak instellingen" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Overige instellingen" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Databaseserver" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Servertype:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Serverversie:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protocolversie:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Gebruiker:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Karakterset van server:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Webserver" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Clientversie van database:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP-uitbreiding:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP-versie:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Versie-informatie:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentatie" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Officiële phpMyAdmin-website" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Bijdragen" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Ondersteuning krijgen" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lijst met wijzigingen" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licentie" -#: index.php:443 +#: index.php:444 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 " @@ -734,7 +734,7 @@ msgstr "" "karakterset te gebruiken. Zonder de uitbreiding mbstring kan phpMyAdmin " "strings niet correct splitsen, wat tot onverwachte resultaten kan leiden." -#: index.php:458 +#: index.php:459 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." @@ -743,7 +743,7 @@ msgstr "" "Hierdoor zijn ook een aantal functies zoals foutregistratie of versie " "controle uitgeschakeld." -#: index.php:473 +#: index.php:474 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 " @@ -755,7 +755,7 @@ msgstr "" "dan de ingestelde cookie validatie in phpMyAdmin. Hierdoor verloopt uw " "sessie eerder dan in phpMyAdmin is ingesteld." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -764,17 +764,17 @@ msgstr "" "dan die instelling in phpMyAdmin. Hierdoor verloopt uw sessie eerder dan in " "phpMyAdmin is ingesteld." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Het configuratiebestand heeft nu een geheime wachtwoordzin nodig " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "De geconfigureerde geheime passphrase (blowfish_secret) is te kort." -#: index.php:528 +#: index.php:529 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 " @@ -787,7 +787,7 @@ msgstr "" "aangetast worden omdat ongepriviligieerde personen uw configuratie kunnen " "downloaden." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -796,14 +796,14 @@ msgstr "" "De configuratie-opslag van phpMyAdmin is niet volledig ingesteld, sommige " "uitgebreide mogelijkheden zijn uitgeschakeld. %sOntdek waarom%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Of als alternatief ga naar de tab 'Handelingen' van een database en stel het " "daar in." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -812,7 +812,7 @@ msgstr "" "Uw MySQL-bibliotheekversie %s in PHP verschilt van uw MySQL-serverversie %s. " "Dit kan onvoorspelbaar gedrag veroorzaken." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -985,7 +985,7 @@ msgid "Save & close" msgstr "Opslaan & sluiten" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Herstellen" @@ -1017,7 +1017,7 @@ msgstr "Index toevoegen" msgid "Edit index" msgstr "Index bewerken" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Voeg %s kolom(men) toe aan index" @@ -1042,10 +1042,10 @@ msgstr "Gelieve de kolom(men) voor de index te selecteren." msgid "You have to add at least one column." msgstr "U moet minstens één kolom toevoegen." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQL voorbeeld" @@ -1057,7 +1057,7 @@ msgstr "Query simuleren" msgid "Matched rows:" msgstr "Overeenkomende rijen:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL-query:" @@ -1074,13 +1074,13 @@ msgstr "De hostnaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" @@ -1088,8 +1088,8 @@ msgstr "De wachtwoorden zijn niet gelijk!" msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Sluiten" @@ -1111,19 +1111,19 @@ msgstr "Template werd verwijderd." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Andere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1230,40 +1230,40 @@ msgid "Processes" msgstr "Processen" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1281,7 +1281,7 @@ msgstr "Questions" msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Instellingen" @@ -1295,16 +1295,16 @@ msgid "Please add at least one variable to the series!" msgstr "Voeg tenminste één variabele toe aan de reeks!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Geen" @@ -1499,20 +1499,20 @@ msgstr "Gegevens worden geanalyseerd…" msgid "Explain output" msgstr "Verklaar resultaat" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Tijd" @@ -1603,10 +1603,10 @@ msgstr "" "configuratie is mislukt. Standaard configuratie wordt gebruikt in de plaats…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importeren" @@ -1679,7 +1679,7 @@ msgstr "Parameters niet gevonden!" msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Pagina gerelateerde instellingen" @@ -1719,8 +1719,8 @@ msgid "Error text: %s" msgstr "Foutomschrijving: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Er zijn geen databases geselecteerd." @@ -1758,7 +1758,7 @@ msgstr "Database kopiëren" msgid "Changing charset" msgstr "Karakterset aanpassen" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Controle op externe sleutelvelden inschakelen" @@ -1786,75 +1786,80 @@ msgstr "Verkennen" msgid "Deleting" msgstr "Verwijderen" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Verwijder gevonden rijen voor de tabel %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "De definitie van een opgeslagen functie moet een RETURN-statement bevatten!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exporteren" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Er is geen routine te exporteren. Mogelijk ontbreken de benodigde rechten." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Waarden voor kolom %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Waarden voor een nieuwe kolom" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Plaats elke waarde in een afzonderlijk veld." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "%d nieuwe waarde(n) toevoegen" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Opmerking: Als het bestand meerdere tabellen bevat, zullen deze samengevoegd " "worden tot één tabel." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "SQL-queryveld verbergen" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "SQL-queryveld tonen" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1862,53 +1867,53 @@ msgstr "SQL-queryveld tonen" msgid "Edit" msgstr "Wijzigen" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Verwijderen" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Geen automatisch opgeslagen query" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variabele %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Kies" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Kolomselectie" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Zoek in deze lijst" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1918,15 +1923,15 @@ msgstr "" "centrale lijst voor database %s kolommen heeft die niet in de huidige tabel " "voorkomen." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Meer" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Bent u zeker?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1934,51 +1939,51 @@ msgstr "" "Deze actie wijzigt mogelijk de definitie van de kolommen.
Weet u zeker " "dat u wilt doorgaan?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Verder gaan" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Een primaire sleutel toevoegen" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Primaire sleutel toegevoegd." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Naar de volgende stap…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "De eerste stap van normalisatie is voltooid voor tabel '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Einde van de stap" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Tweede stap van normalisatie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Klaar" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Gedeeltelijke afhankelijkheden bevestigen" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Dit zijn de geselecteerde gedeeltelijke afhankelijkheden:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1986,21 +1991,21 @@ msgstr "" "Opmerking: a, b -> d,f betekent waardes van kolom a en b gecombineerd kunnen " "de waarden determineren van kolom d en kolom f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Er zijn geen gedeeltelijke afhankelijkheden geselecteerd!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Toon de mogelijke gedeeltelijke afhankelijkheden op basis van gegevens in de " "tabel" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Verberg lijst met gedeeltelijke afhankelijkheden" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2008,172 +2013,172 @@ msgstr "" "Even geduld! Het kan enkele seconden duren, afhankelijk van de hoeveelheid " "gegevens en het aantal kolommen in de tabel." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Stap" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "De volgende acties worden uitgevoerd:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Verwijder (DROP) kolommen %s uit tabel %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Maak de volgende tabel aan" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Derde stap van normalisatie (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Overgankelijke afhankelijkheden bevestigen" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Dit zijn de geselecteerde afhankelijkheden:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Er zijn geen afhankelijkheden geselecteerd!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Opslaan" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Zoekcriteria verbergen" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Zoekcriteria tonen" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Zoeken op bereik" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Kolommaximum:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimumwaarde:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maximumwaarde:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Zoek- en vervangcriteria verbergen" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Zoek- en vervangcriteria tonen" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Ieder punt stelt een gegevensrij voor." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Beweeg over een punt om het label te tonen." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Selecteer een sectie van de grafiek met de muis om in te zoomen." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Klik herstel zoom om terug te keren naar de begintoestand." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Klik een gegevenspunt aan om dit te bekijken en om eventueel de gegevens te " "bewerken." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "De weergave kan herschaald worden door het langs de hoek rechtsonder te " "slepen." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Selecteer twee kolommen" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Selecteer twee verschillende kolommen" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Negeren" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopiëren" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Lijnstuk definitie" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygoon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrie" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Binnenste ring" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Buitenste ring" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Wilt u de encryptiesleutel kopiëren?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Encryptiesleutel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2181,7 +2186,7 @@ msgstr "" "MySQL accepteert additionele waardes die niet met schuiven te selecteren " "zijn; tik deze waardes indien gewenst rechtstreeks in" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" @@ -2189,7 +2194,7 @@ msgstr "" "MySQL accepteert additionele waardes die niet met de datumprikker te " "selecteren zijn; tik deze waardes indien gewenst rechtstreeks in" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2197,24 +2202,24 @@ msgstr "" "Geeft aan dat je wijzigingen in deze pagina hebt aangebracht; je zal om " "bevestiging gevraagd worden voordat deze wijzigingen verworpen worden" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Selecteer de primaire sleutel of een unieke sleutel!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Kies weer te geven kolom" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2222,76 +2227,76 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Paginanaam" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Pagina opslaan" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Pagina opslaan als" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina openen" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Pagina verwijderen" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Naamloos" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Gelieve een pagina te selecteren om verder te gaan" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Gelieve een geldige paginanaam in te geven" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Wilt u de wijzigingen in de huidige pagina opslaan?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Pagina werd succesvol verwijderd" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exporteer relationeel schema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Een optie voor kolom \"%s\" toevoegen." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d object(en) aangemaakt." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Verzenden" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Druk op ESC om het bewerken te annuleren." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2299,15 +2304,15 @@ msgstr "" "U heeft gegevens bewerkt en deze werden nog niet opgeslagen. Bent u zeker " "dat u deze pagina wil verlaten alvorens de wijzigingen op te slaan?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Sleep om te herschikken." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Klik om resultaten te sorteren op deze kolom." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2318,26 +2323,26 @@ msgstr "" "+ klik (Mac: Shift + Option + klik) om de kolom uit de ORDER BY (sorteren " "op)-component verwijderen" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klik om te markeren/demarkeren." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Dubbelklik om kolomnaam te kopiëren." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik op het pijltje
om de zichtbaarheid van de kolom te wijzigen." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Toon alles" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2346,12 +2351,12 @@ msgstr "" "checkboxen, Bewerken, Kopiëren en Verwijderen, werken mogelijk niet na " "opslaan." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Voer een geldige hexadecimale tekenreeks in. Geldige tekens zijn 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2359,103 +2364,103 @@ msgstr "" "Wil je echt alle regels zien? Voor een grote tabel kan dit je browser doen " "crashen." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Oorspronkelijke lengte" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "annuleren" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Afgehaakte" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Geslaagd" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Bestanden hier neerzetten" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Selecteer eerst een database" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Afdrukken" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "U kan de meeste waarden bewerken
door er dubbel op te klikken." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "U kan de meeste waarden bewerken
door erop te klikken." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Volg de link:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kolomnaam kopiëren." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Klik met de rechtmuistoets op de kolomnaam om deze naar het klembord te " "kopiëren." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Wachtwoord genereren" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Genereren" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Meer" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Paneel tonen" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Paneel verbergen" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Verborgen navigatieboom onderdelen weergeven." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Verbinden met hoofdpaneel" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Loskoppelen van hoofdpaneel" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "De opgevraagde pagina werd niet gevonden in de historiek, mogelijk is deze " "verlopen." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2465,27 +2470,27 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "Recent bijgewerkt" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "VIEW aanmaken" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Verzend foutmeldingsverslag" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Verstuur foutmeldingsverslag" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2493,15 +2498,15 @@ msgstr "" "Er is een fatale JavaScript-fout opgetreden. Wil u een foutmeldingsverslag " "verzenden?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Rapport instellingen wijzigen" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Toon rapport details" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2509,7 +2514,7 @@ msgstr "" "Uw uitvoer is onvolledig, als gevolg van een lage uitvoeringstijdbeperking " "op PHP niveau!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2519,60 +2524,60 @@ msgstr "" "indiening, worden een aantal velden mogelijk genegeerd, als gevolg van PHP's " "max_input_vars configuratie." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Er zijn enkele fouten opgetreden op de server!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Gelieve de onderkant van dit venster te bekijken." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Alles negeren" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Volgens uw instellingen worden ze momenteel ingediend, gelieve even te " "wachten." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Deze query opnieuw uitvoeren?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Weet u zeker dat u deze bladwijzer wil verwijderen?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Er is een fout opgetreden bij het ophalen van SQL debug informatie." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries %s keer uitgevoerd in %s seconden." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(en) gepasseerd" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Toon argumenten" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Argumenten verbergen" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Gebruikte tijd:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2587,349 +2592,369 @@ msgstr "" "\"Offslinewebsitegegevens\" kan dan helpen. In Safari wordt dit probleem " "meestal veroorzaakt door \"Privénavigatie\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Kopieer tabellen naar" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Tabel voorvoegsel toevoegen" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Vandaag" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "januari" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "februari" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "maart" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "april" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "mei" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "augustus" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "september" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "november" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "zondag" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "maandag" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Week" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "geen" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Uur" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuut" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Seconde" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Dit veld is verplicht" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Repareer a.u.b. dit veld" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "A.u.b. een geldig e-mailadres invoeren" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "A.u.b. een geldige URL ingeven" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "A.u.b. een geldige datum in geven" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "A.u.b. een valide datum (ISO) in geven" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Vul a.u.b. een geldig nummer in" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Vul a.u.b, een geldig creditcardnummer in" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Vul a.u.b. alleen cijfers in" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "A,u,b, dezelfde waarde nogmaals in geven" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Vul a.u,b, niet meer dan {0} tekens in" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Vul a.u,b, minstens {0} tekens in" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Vul a.u.b. een waarde tussen {0} en {1} tekens lang in" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Vul a.u,b. een waarde tussen {0} en {1} in" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Vul a.u.b. een waarde kleiner of gelijk aan {0} in" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Vul a.u.b. een waarde groter of gelijk aan {0} in" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Vul a.u.b. een geldige datum of tijd in" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Vul a.u.b.een geldige waarde in HEX in" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Fout" @@ -2993,20 +3018,20 @@ msgid "Charset" msgstr "Karakterset" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Collatie" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binair" @@ -3201,7 +3226,7 @@ msgid "Czech-Slovak" msgstr "Tsjecho-Slowaaks" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "onbekend" @@ -3250,49 +3275,49 @@ msgstr "" msgid "Font size" msgstr "Lettertypegrootte" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Toont %1$d bladwijzer (zowel privé als gedeeld)" msgstr[1] "Toont %1$d bladwijzers (zowel privé als gedeeld)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Geen bladwijzers" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL-queryconsole" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Instellen van geconfigureerde vergelijking verbinding mislukt!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "De server reageert niet (of de socket van de server is niet juist ingesteld)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "De server reageert niet." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Controleer de rechten op de map met de database." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Ontbrekende connectie parameters!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbinding voor de controlegebruiker zoals in de configuratie is opgegeven " @@ -3388,110 +3413,105 @@ msgstr "Invoegen:" msgid "Del:" msgstr "Verwijderen:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query op database %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Query uitvoeren" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Opgeslagen bladwijzer naar een opzoeking :" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nieuwe bladwijzer" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Bladwijzer aanmaken" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Bladwijzer bijwerken" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Bladwijzer verwijderen" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "ten minste een van de woorden" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "alle woorden" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "de exacte zin" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "als een reguliere expressie" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Zoekresultaten voor \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s overeenkomst" msgstr[1] "Totaal: %s overeenkomsten" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s overeenkomst in %2$s" msgstr[1] "%1$s overeenkomsten in %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Verkennen" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Verwijder gevonden rijen voor de tabel %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Zoeken in de database" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Woorden of waarden waarnaar gezocht moet worden (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Zoek:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Woorden worden gesplitst door een spatiekarakter (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "In de tabellen:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Alles deselecteren" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "In de kolom:" @@ -3511,30 +3531,30 @@ msgstr "Filter rijen" msgid "Search this table" msgstr "Zoek in deze tabel" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Einde" @@ -3543,7 +3563,7 @@ msgstr "Einde" msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Aantal rijen:" @@ -3552,8 +3572,8 @@ msgstr "Aantal rijen:" msgid "Sort by key" msgstr "Sorteren op sleutel" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3575,10 +3595,10 @@ msgstr "Sorteren op sleutel" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opties" @@ -3618,29 +3638,29 @@ msgstr "Goed bekende tekst" msgid "Well Known Binary" msgstr "Goed gekende binaire waarde" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "De regel werd verwijderd." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "stop proces" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Uw SQL-query is succesvol uitgevoerd." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3648,74 +3668,74 @@ msgid "" msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Weergave van records %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d in totaal, %2$d in de query" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d totaal" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Query duurde %01.4f seconden." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Met geselecteerd:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Selecteer alles" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopieer naar klembord" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Handelingen voor queryresultaat" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "GIS-gegevens visualiseren" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link niet gevonden!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Geen" # Wat is 'Kana' ? #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Omzetten naar Kana" @@ -3723,25 +3743,25 @@ msgstr "Omzetten naar Kana" msgid "Too many error messages, some are not displayed." msgstr "Er zijn teveel foutmeldingen, sommige worden niet weergegeven." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Rapporteren" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Verslag voortaan automatisch verzenden" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Bestand is geen geüpload bestand." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Het geüploade bestand is groter dan de optie 'upload_max_filesize' uit uw " "php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3749,49 +3769,49 @@ msgstr "" "Het geüploade bestand overschrijdt de MAX_FILE_SIZE-optie die was opgegeven " "in het HTML-formulier." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Het geüploade bestand was slechts gedeeltelijk ontvangen." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "De map voor tijdelijke bestanden ontbreekt." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Opslaan van het bestand op de harde schijf is mislukt." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Upload afgebroken vanwege de extensie." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Bestand is een symbolische link" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Bestand kon niet worden gelezen!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Fout bij het verplaatsen van het geüploade bestand." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Kan het geüploade bestand niet lezen." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3801,28 +3821,28 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Loopt op Git-revisie %1$s van de %2$s tak." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git-informatie ontbreekt!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Nieuw phpMyAdmin-scherm openen" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Afdrukken" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Klik op de balk om te scrollen naar het begin van de pagina" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript moet ingeschakeld zijn voorbij dit punt!" @@ -3831,20 +3851,20 @@ msgid "No index defined!" msgstr "Geen index gedefinieerd!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indexen" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3854,59 +3874,59 @@ msgstr "Indexen" msgid "Action" msgstr "Actie" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinaliteit" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Opmerking" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "De primaire sleutel werd verwijderd." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Index %s is verwijderd." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Verwijderen" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3915,19 +3935,19 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Paginanummer:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Niet ondersteunde taal code wordt genegeerd." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Taal" @@ -3953,11 +3973,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3976,14 +3996,15 @@ msgid "View" msgstr "View" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3992,8 +4013,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4001,45 +4022,45 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Zoeken" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Invoegen" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Rechten" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Handelingen" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Traceren" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4055,16 +4076,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database lijkt leeg te zijn!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Query opbouwen" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4072,20 +4093,20 @@ msgstr "Routines" msgid "Events" msgstr "Gebeurtenissen" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Ontwerper" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centrale kolommen" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databases" @@ -4094,53 +4115,53 @@ msgid "User accounts" msgstr "Gebruikersaccounts" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binaire log" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicatie" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabelen" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Engines" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d rij bijgewerkt." msgstr[1] "%1$d rijen bijgewerkt." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d rij verwijderd." msgstr[1] "%1$d rijen verwijderd." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4188,27 +4209,27 @@ msgstr "Favoriete tabellen" msgid "Favorites" msgstr "Favorieten" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Gelieve een naam op te geven voor de bladwijzer naar deze opzoeking." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Informatie om de bladwijzer voor een opzoeking op te slaan ontbreekt." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Er bestaat reeds een waarde met deze naam." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Informatie ontbreekt om de opzoeking te verwijderen." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Informatie ontbreekt om de opzoeking te laden." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Fout bij het laden van de opzoeking." @@ -4270,7 +4291,7 @@ msgstr "Toon open tabellen" msgid "Show slave hosts" msgstr "Toon slave-hosts" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Toon masterstatus" @@ -4324,71 +4345,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minuut" msgstr[1] "%d minuten" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Er is geen gedetailleerde status informatie beschikbaar voor deze opslag-" "engine." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is beschikbaar op deze MySQL-server." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s is uitgeschakeld op deze MySQL-server." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Deze MySQL-server ondersteund de %s opslag-engine niet." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Onbekende tabelstatus:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Brondatabase `%s` werd niet gevonden!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Doeldatabase `%s` niet gevonden!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Ongeldige database:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Ongeldige tabelnaam:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fout bij hernoemen van tabel %1$s naar %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s is hernoemd naar %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Tabelinterfacevoorkeuren konden niet worden opgeslagen!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4397,7 +4418,7 @@ msgstr "" "Opkuisen van tabelinterfacevoorkeuren is mislukt (zie $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4408,19 +4429,19 @@ msgstr "" "wijzigingen zullen verdwijnen na verversen van deze pagina. Controleer of de " "tabelstructuur is gewijzigd." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "De naam van de primaire sleutel moet \"PRIMARY\" zijn!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Kan index niet naar PRIMARY hernoemen!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Geen index-delen gedefinieerd!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4754,7 +4775,7 @@ msgid "Date and time" msgstr "Datum en tijd" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Tekenreeks" @@ -4769,126 +4790,126 @@ msgstr "Ruimtelijk" msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statische analyse:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d fouten werden gevonden tijdens de analyse." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL meldt: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analyseer uitleg op %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Zonder PHP-code" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Query verzenden" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Genereer PHP-code" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Ververs" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profiling" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Inline bewerken" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "zo" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Ontbrekende parameter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Ga naar database \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de webserver uploadmap %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "De map die u heeft ingesteld om te uploaden kan niet worden bereikt." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Er zijn geen bestanden om te uploaden!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Legen" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Uitvoeren" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Gebruikers" @@ -4902,7 +4923,7 @@ msgstr "per minuut" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per uur" @@ -4910,12 +4931,12 @@ msgstr "per uur" msgid "per day" msgstr "per dag" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Zoeken:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4923,7 +4944,7 @@ msgstr "Zoeken:" msgid "Description" msgstr "Beschrijving" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Gebruik deze waarde" @@ -4964,22 +4985,22 @@ msgstr "JA" msgid "NO" msgstr "NEE" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Naam" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Lengte/Waarden" @@ -4988,7 +5009,7 @@ msgstr "Lengte/Waarden" msgid "Attribute" msgstr "Attribuut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5005,11 +5026,11 @@ msgstr "Kolom toevoegen" msgid "Select a column." msgstr "Selecteer een kolom." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Nieuwe kolom toevoegen" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5017,7 +5038,7 @@ msgstr "Nieuwe kolom toevoegen" msgid "Attributes" msgstr "Attributen" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5027,26 +5048,26 @@ msgstr "" "optie is incompatibel met phpMyAdmin en kan ervoor zorgen dat sommige " "gegevens corrupt raken!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige hostnaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5058,20 +5079,20 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin gebruikt nu de standaard tijdzone van " "de database server." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet upgraden naar %s %s of hoger." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Fout: token niet hetzelfde" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "poging om GLOBALS te overschrijven" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "mogelijk misbruik" @@ -5675,7 +5696,7 @@ msgid "Compress on the fly" msgstr "Comprimeer direct" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Configuratiebestand" @@ -5784,12 +5805,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximale uitvoertijd" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Gebruik %s statement" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Opslaan als bestand" @@ -5799,7 +5820,7 @@ msgstr "Karakterset voor het bestand" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Opmaak" @@ -5924,7 +5945,7 @@ msgid "Save on server" msgstr "Opslaan op server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Bestaand(e) bestand(en) overschrijven" @@ -5937,7 +5958,7 @@ msgid "Remember file name template" msgstr "Bestandsnaam-template herinneren" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT-waarde toe" @@ -5946,7 +5967,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Aanhalingstekens (`) bij tabel- en kolomnamen gebruiken" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL-compatibiliteitsmodus" @@ -5976,7 +5997,7 @@ msgstr "Exporteer gerelateerde metadata van de phpMyAdmin configuratie opslag" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Voeg %s toe" @@ -6150,7 +6171,7 @@ msgid "Customize the navigation tree." msgstr "Aanpassen navigatie boomstructuur." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servers" @@ -7063,7 +7084,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Authenticatiemethode." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Authenticatietype" @@ -7810,7 +7831,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Schakel het ontwikkelaarstabblad in bij instellingen" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Controleren op de meest recente versie" @@ -7820,10 +7841,10 @@ msgstr "" "Schakel de controle op de nieuwste versie in op de hoofdpagina van " "phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versiecontrole" @@ -7971,24 +7992,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Tekst" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "De lijst met favorieten is vol!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s is leeggemaakt." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "View %s werd verwijderd." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabel %s werd verwijderd." @@ -8002,12 +8023,12 @@ msgid "Position" msgstr "Positie" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Gebeurtenistype" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server-ID" @@ -8016,7 +8037,7 @@ msgid "Original position" msgstr "Oorspronkelijke positie" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informatie" @@ -8030,42 +8051,42 @@ msgstr "Getoonde query's afkappen" msgid "Show Full Queries" msgstr "Toon volledige query's" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Geen databases" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s is aangemaakt." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d database werd succesvol verwijderd." msgstr[1] "%1$d databases werden succesvol verwijderd." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rijen" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Totaal" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8092,34 +8113,34 @@ msgstr "" msgid "Enable statistics" msgstr "Statistieken inschakelen" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Niet genoeg rechten om server variabelen en instellingen in te mogen zien. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Variabele instellen is mislukt" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Geen SQL-query is ingesteld om gegevens op te halen." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" "Geen numerieke kolommen aanwezig om weer te kunnen geven in de grafiek." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Geen gegevens om weer te geven" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabel %1$s is succesvol bijgewerkt." @@ -8162,7 +8183,7 @@ msgstr "De geselecteerde kolommen zijn met succes verplaatst." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Fout in query" @@ -8179,12 +8200,12 @@ msgstr "Veranderen" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8205,13 +8226,13 @@ msgstr "Volledige tekst" msgid "Distinct values" msgstr "Onderscheidbare waarden" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "De extensie %s ontbreekt. Controleer uw PHP-configuratie." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -8235,31 +8256,35 @@ msgstr "" "installatie!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Geen wachtwoord" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Wachtwoord:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Tik opnieuw in:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Wachtwoord-hashing:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8269,83 +8294,83 @@ msgstr "" "verbinding die het wachtwoord versleuteld met RSA'; wanneer verbinding " "wordt gemaakt met de server." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exporteer meerdere databases vanuit de huidige server" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Tabellen exporteren uit de database \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Rijen exporteren uit de tabel \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Exporteer templates:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nieuwe template:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Template naam" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Aanmaken" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Bestaande templates:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Template:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Bijwerken" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Selecteer een template" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Export methode:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Snel - toon enkel de belangrijkste opties" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Uitgebreid - toon alle mogelijke opties" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Databases:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabellen:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Opmaak:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opmaakspecifieke opties:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8354,52 +8379,52 @@ msgstr "" "opties voor de andere formaten kunnen genegeerd worden." # Is er een betere vertaling voor 'encoding' ? -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Coderingsconversie:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rijen:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Exporteer enkele rijen" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Te beginnen op rij:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Exporteer alle rijen" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Uitvoer:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Bewaar op de server in de map %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Bestandsnaam-template:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ wordt vervangen door de servernaam" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ wordt vervangen door de databasenaam" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ wordt vervangen door de tabelnaam" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8411,100 +8436,100 @@ msgstr "" "vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" "%5$s voor meer details." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "gebruik dit voor toekomstige exports" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Karakterset van het bestand:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compressie:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "gezipt" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "ge-gzipt" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Bekijk output als tekst" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exporteer databases as afzonderlijke bestanden" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exporteer tabellen als afzonderlijke bestanden" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Geëxporteerde databases/tabellen/kolommen hernoemen" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Opslaan als bestand" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Sla tabellen over groter dan" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Selecteer een database" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Selecteer een tabel" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nieuwe databasenaam" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nieuwe tabelnaam" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Vorige kolomnaam" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nieuwe kolomnaam" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "De plugins voor het exporteren konden niet worden geladen, controleer uw " "installatie!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s van tak %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "geen tak" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git-revisie:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "gecommit op %1$s door %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "geschreven door %2$s op %1$s" @@ -8968,13 +8993,13 @@ msgstr "" "Documentatie en meer informatie over PBXT kan gevonden worden op de " "%sPrimeBase XT home pagina%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende ruimte om het bestand %s op te slaan." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8982,76 +9007,76 @@ msgstr "" "Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de " "optie overschrijven." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "De webserver heeft geen rechten om het bestand %s op te slaan." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Het exportbestand is bewaard als %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK is uitgevoerd]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Bekijk de inhoud van een structuur door op de naam te klikken." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Een instelling wijzigen door op \"Opties\" te klikken." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Klik op de \"Structuur\"-link om de structuur aan te passen." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Ga naar database: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Instellingen voor %s wijzigen" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Ga naar tabel: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Structuur van %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Ga naar view: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Enkel UPDATE- en DELETE-query's die inwerken op 1 tabel kunnen gesimuleerd " "worden." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9064,87 +9089,88 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Een index aanmaken op kolommen %s " -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Verbergen" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Functie" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" "Vanwege z'n lengte,
kan deze kolom mogelijk niet gewijzigd worden." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binair - niet aanpassen" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Of" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "uploadmap op webserver:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Aanpassen/Invoegen" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Toevoegen als nieuwe rij" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Toon insert-query" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Terug" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Een nieuwe rij toevoegen" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Volgende rij bewerken" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9155,31 +9181,31 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Geslaagd!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Alleen structuur" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Structuur en gegevens" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Alleen gegevens" @@ -9188,14 +9214,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Voeg AUTO INCREMENT-waarde toe" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Voeg beperkingen toe" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Aanpassen rechten" @@ -9240,8 +9266,8 @@ msgstr "Procedures:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Toon" @@ -9286,17 +9312,17 @@ msgid_plural "%s results found" msgstr[0] "%s resultaat gevonden" msgstr[1] "%s resultaten gevonden" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Start met typen om te filteren, type Enter voor alles zoeken" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Snelle filter leegmaken" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Alles samenvouwen" @@ -9311,7 +9337,7 @@ msgstr "Ongeldige klassenaam \"%1$s\", \"Node\" zal gebruikt worden" msgid "Could not load class \"%1$s\"" msgstr "Klasse \"%1$s\" kon niet geladen worden" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Uitklappen/samenvouwen" @@ -9330,7 +9356,7 @@ msgstr "Nieuw" msgid "Database operations" msgstr "Databasebewerkingen" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Toon verborgen onderdelen" @@ -9436,11 +9462,11 @@ msgstr "" "(wanneer 'geen dergelijke kolom' geselecteerd wordt, wordt er overgeschakeld " "naar de volgende stap)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Selecteer er één…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Geen dergelijke kolom" @@ -9720,8 +9746,8 @@ msgid "Rename database to" msgstr "Hernoem database naar" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9767,177 +9793,177 @@ msgstr "(apart)" msgid "Move table to (database.table)" msgstr "Verplaats tabel naar (database.tabel)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Tabel hernoemen naar" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabelopmerkingen" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabelopties" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Opslag-engine" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Wijzig alle kolommen vergelijkingen" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Tabel kopiëren naar (database.tabel)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Wissel naar de gekopieerde tabel" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabelonderhoud" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analyseer tabel" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Controleer tabel" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Checksum tabel" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Tabel defragmenteren" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabel %s is leeggemaakt." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "De tabel leegmaken (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Repareer tabel" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Gegevens of tabel verwijderen" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "De tabel leegmaken (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "De tabel verwijderen (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analyseren" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Controleren" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimaliseren" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Heropbouwen" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Repareren" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Afbreken" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Samenvoegen" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Partitie-onderhoud" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partitie %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Partitionering verwijderen" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Kan de tabel niet naar dezelfde verplaatsen!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Kan de tabel niet naar dezelfde kopiëren!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s is verplaatst naar %s. Rechten zijn aangepast." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s is gekopieerd naar %s. Rechten zijn aangepast." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is verplaatst naar %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieerd naar %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "De tabelnaam is leeg!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Dit formaat heeft geen opties" @@ -9966,18 +9992,18 @@ msgstr "Toon kleur" msgid "Only show keys" msgstr "Alleen sleutels tonen" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Kan niet verbinden: ongeldige instellingen." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Welkom bij %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9986,7 +10012,7 @@ msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9998,7 +10024,7 @@ msgstr "" "wachtwoord in config.inc.php en zorg ervoor dat deze overeenkomen met de " "informatie die u van de beheerder van de MySQL-server kreeg." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Opnieuw proberen te verbinden" @@ -10025,15 +10051,15 @@ msgstr "Gebruikersnaam:" msgid "Server Choice:" msgstr "Serverkeuze:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Invoer is verkeerd, probeer opnieuw!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Vul een correcte captcha in!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Aanmelden op de MySQL-server niet toegestaan!" @@ -10094,7 +10120,7 @@ msgstr "Dataexport-opties" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Gegevens worden geëxporteerd voor tabel" @@ -10103,7 +10129,7 @@ msgstr "Gegevens worden geëxporteerd voor tabel" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Gebeurtenis" @@ -10111,8 +10137,8 @@ msgstr "Gebeurtenis" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definitie" @@ -10199,7 +10225,7 @@ msgstr "Kolomnamen in de eerste regel plaatsen:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -10732,7 +10758,7 @@ msgstr "Inhoudsopgave" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11118,11 +11144,11 @@ msgstr "" "Meld opnieuw aan bij phpMyAdmin om het bijgewerkte configuratiebestand te " "laden." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Geen beschrijving aanwezig" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11132,7 +11158,7 @@ msgstr "" "aan te maken. Je kunt naar de 'Operations' tab gaan van enige database om " "phpMyAdmin configuratie opslag in te stellen." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11141,40 +11167,40 @@ msgstr "" "%sCreate%s een database met de naam 'phpmyadmin' en stel daar de phpMyAdmin " "configuratie opslag in." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sMaak%s de configuratie-opslag van phpMyAdmin aan in de huidige database." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sCreate%s ontbrekende phpMyAdmin configuratie opslag tabellen." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Masterreplicatie" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatieproces." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Toon verbonden slaves" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Gebruiker voor de slave-replicatie toevoegen" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Masterinstellingen" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11188,19 +11214,19 @@ msgstr "" "standaard alle databases te negeren en alleen enkele geselecteerde databases " "te repliceren. Maak a.u.b. uw keuze:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Repliceer alle databases; Negeer:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Negeer alle databases; Repliceer enkel:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Selecteer uit de onderstaande databases:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11208,7 +11234,7 @@ msgstr "" "Voeg nu de onderstaande regels aan de sectie [mysqld] van uw my.cnf toe en " "herstart uw MySQL-server." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11217,69 +11243,69 @@ msgstr "" "Nadat u de MySQL-server herstart heeft, klikt u op Start. Hierna zou u de " "melding moeten krijgen dat de server ingesteld is als master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slave-replicatie" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Hoofdverbinding:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread niet actief!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread niet actief!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server is ingesteld als slave in een replicatieproces. Wilt u:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Slave-statustabel bekijken" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Beheer slave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Start volledig" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Stop volledig" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Slave herinstellen" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Start enkel de SQL-Thread" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Stop enkel de SQL-Thread" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Start enkel de IO Thread" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Stop enkel de IO Thread" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Masterserver wijzigen" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11288,28 +11314,28 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatieproces. Wilt u dit " "nu instellen?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Foutenbeheer:" # "errors" => "fouten" # master and slave _what_? -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Het overslaan van fouten kan leiden tot verschillen tussen de meester en " "slaaf!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Sla de huidige fout over" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Sla de volgende %s fouten over." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11318,11 +11344,11 @@ msgstr "" "Deze server is niet ingesteld als master in een replicatieproces. Wilt u dit " "nu instellen?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slave-instellingen" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11331,53 +11357,53 @@ msgstr "" "in het configuratiebestand (my.cnf). Voeg anders de onderstaande regels toe " "aan de sectie [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Gebruikersnaam:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Gebruikersnaam" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Wachtwoord" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Poort:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Master-status" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slave-status" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabelen" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11385,39 +11411,39 @@ msgstr "" "Enkel slaves gestart met de optie --report-host=host_name zijn zichtbaar in " "deze lijst." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Elke host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Deze host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Elke gebruiker" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Tekstveld gebruiken:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Gebruik hosttabel" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11425,77 +11451,77 @@ msgstr "" "Indien er gebruik wordt gemaakt van de hosttabel is dit veld niet van " "toepassing." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Type opnieuw" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Wachtwoord genereren:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replicatie is succesvol gestart." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Fout bij starten van replicatie." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replicatie werd succesvol gestopt." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Fout bij stoppen van replicatie." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Opnieuw instellen van replicatie was succesvol." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Fout bij opnieuw instellen van replicatie." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Geslaagd." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Fout." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Onbekende fout" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Het verbinden met de master %s is mislukt." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Het lezen van de master-positie is mislukt. Mogelijk gaat het om een " "probleem met de rechten op de master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Wijzigen van master is mislukt!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Masterserver succesvol gewijzigd in %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11516,7 +11542,7 @@ msgstr "Gebeurtenis %1$s werd gewijzigd." msgid "Event %1$s has been created." msgstr "Gebeurtenis %1$s werd aangemaakt." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11526,76 +11552,76 @@ msgstr "" msgid "Edit event" msgstr "Gebeurtenis bewerken" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Details" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Gebeurtenisnaam" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Veranderen naar %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Uitvoeren om" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Uitvoeren iedere" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Begin" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Einde" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Na afloop behouden" # Not the best translation, suggestions are welcome -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Naam" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "De naam moet het formaat \"gebruikersnaam@computernaam\" hebben!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Vul een naam voor de gebeurtenis in!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Vul een geldige waarde in voor het interval van de gebeurtenis." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Vul een geldige uitvoeringstijd in voor de gebeurtenis." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Vul een geldig type in voor de gebeurtenis." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Vul een definitie voor de gebeurtenis in." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Fout tijdens het uitvoeren van de opdracht:" @@ -11616,7 +11642,7 @@ msgstr "Status van de gebeurtenis-scheduler" msgid "The backed up query was:" msgstr "De gebackupte query was:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Geeft terug" @@ -11632,72 +11658,72 @@ msgstr "" "routines kan mislukken![/strong] Gebruik de verbeterde 'mysqli'-uitbreiding " "om problemen te voorkomen." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Routine aanpassen" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ongeldig routine-type: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Routine %1$s werd aangemaakt." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Het terugzetten van de verwijderde routine is mislukt." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Routine %1$s werd gewijzigd. Rechten zijn aangepast." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Routine %1$s werd gewijzigd." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Routinenaam" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Richting" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Parameter toevoegen" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Laatste parameter verwijderen" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Returntype" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Return-lengte/waarden" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Return-opties" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Is vast bepaald" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11705,25 +11731,25 @@ msgstr "" "U heeft niet genoeg rechten om deze actie uit te voeren; Kijk a.u.b. naar de " "documentatie voor meer details" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Beveiligingstype" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL-gegevenstoegang" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Vul een routinenaam in!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ongeldige richting \"%s\" opgegeven voor parameter." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11731,37 +11757,37 @@ msgstr "" "Vul de lengte/waarden in voor routineparameters van het type ENUM, SET, " "VARCHAR en VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Vul een naam en type in voor elke routineparameter." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Vul een geldig returntype in voor de routine." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Vul een routinedefinitie in." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Resultaten van uitgevoerde routine %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 regel beïnvloed door het laatste statement in de procedure." msgstr[1] "%d regels beïnvloed door het laatste statement in de procedure." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Routine uitvoeren" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Routineparameters" @@ -11783,32 +11809,32 @@ msgstr "Trigger %1$s werd aangemaakt." msgid "Edit trigger" msgstr "Trigger bewerken" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Triggernaam" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tijdstip" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "U moet een triggernaam ingeven!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "U moet een geldig tijdstip voor de trigger ingeven!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "U moet een geldige gebeurtenis voor de trigger ingeven!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "U moet een geldige tabelnaam ingeven!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "U moet een triggerdefinitie ingeven." @@ -11928,94 +11954,94 @@ msgstr "Karaktersets en collaties" msgid "Databases statistics" msgstr "Databasestatistieken" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Geen rechten." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Omvat alle rechten behalve GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Maakt het lezen van gegevens mogelijk." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om gegevens in te voegen en te vervangen." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Maakt het mogelijk gegevens aan te passen." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Maakt het mogelijk om gegevens te verwijderen." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databases en tabellen te verwijderen." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Maakt het mogelijk om processen van alle gebruikers te zien." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om gegevens te importeren en te exporteren van en naar " "bestanden." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL-versie." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen aan te maken en te verwijderen." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de volledige lijst van databases." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12026,133 +12052,106 @@ msgstr "" "opties zoals het instellen van globale variabelen of het stoppen van threads " "van andere gebruikers." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Nodig om slaves te repliceren." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de slaves / masters zijn." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Maakt het mogelijk om triggers aan te maken en te verwijderen." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW uit te voeren." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om opgeslagen routines aan te maken." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" "Maakt het mogelijk om opgeslagen routines te bewerken en te verwijderen." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om opgeslagen routines uit te voeren." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Geen" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Gebruikersgroep" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Verbindingen zonder SSL encryptie toegestaan." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Verbinding met SSL encryptie vereist." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Vereist een geldig X509 certificaat." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" "Vereist dat een specifieke versleutelmethode wordt gebruikt voor een " "connectie." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Vereist dat een geldig X509 certificaat uitgegeven door deze CA wordt " "aangeboden." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Vereist dat een geldig X509 certificaat met dit onderwerp wordt aangeboden." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Resource-beperkingen" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Opmerking: het instellen van deze waarden op 0 (nul) verwijdert de limiet." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Beperkt het aantal query's dat een gebruiker mag versturen per uur." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12160,28 +12159,26 @@ msgstr "" "Beperkt het aantal opdrachten, welke een database of tabel veranderen, die " "een gebruiker per uur mag uitvoeren." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Beperkt het aantal nieuwe verbindingen die een gebruiker per uur mag openen." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beperkt het aantal gelijktijdige verbindingen dat de gebruiker open kan " "hebben." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." @@ -12189,63 +12186,63 @@ msgstr "" "Geef gebruiker de rechten om aan andere gebruikers van deze routine rechten " "te geven of in te trekken." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Staat het toe om deze routine te bewerken en te verwijderen." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Staat het toe deze routine uit te voeren." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabel-specifieke rechten" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" "Opmerking: de namen van de MySQL-rechten zijn uitgedrukt in het Engels." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administratie" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globale rechten" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globaal" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Database-specifieke rechten" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Maakt het mogelijk nieuwe tabellen te maken." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Maakt het mogelijk om gebruikers en rechten toe te voegen zonder de " "rechtentabel opnieuw op te vragen." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." @@ -12253,31 +12250,28 @@ msgstr "" "Geef gebruiker de rechten om aan andere gebruikers dezelfde rechten als " "jezelf te geven of in te trekken." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "MySQL authenticatie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 wachtwoord authenticatie" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "MySQL authenticatie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Aanmeldingsinformatie" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Tekstveld gebruiken" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12285,136 +12279,136 @@ msgstr "" "Er bestaat al een account met dezelfde gebruikersnaam maar mogelijk met een " "andere hostnaam." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Server naam:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Server naam" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Authenticatie Plugin" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Wachtwoord hashing methode" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "U heeft de rechten ingetrokken voor %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Gebruikersaccount toevoegen" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Database voor gebruikersaccount" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Een database aanmaken met dezelfde naam en alle rechten hierop geven." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Alle rechten geven op database %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Gebruikers die toegang hebben tot \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Gebruiker is toegevoegd." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Toekennen" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Niet genoeg rechten om gebruikers in te zien." # Enkelvoud. -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "database-specifiek" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "tabel-specifiek" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Rechten bewerken" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Ongedaan maken" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Gebruikersgroep bewerken" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… de oude behouden." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… de oude verwijderen van de gebruikerstabellen." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… alle actieve rechten van de oude intrekken en deze daarna verwijderen." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12422,90 +12416,77 @@ msgstr "" "… de oude verwijderen van de gebruikerstabellen en de rechten nadien " "vernieuwen." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Aanmeldingsinformatie wijzigen / Gebruikersaccount kopiëren" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Een nieuwe gebruikersaccount aanmaken met dezelfde rechten en …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Routine-specifieke rechten" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "De geselecteerde gebruikersaccounts verwijderen" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Gebruikersgroep" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "De rechten werden opnieuw ingeladen" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "De rechten werden succesvol opnieuw ingeladen." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Rechten voor %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nieuw" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Rechten bewerken:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Gebruikersaccount" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12513,11 +12494,11 @@ msgstr "" "Opmerking: U probeert de rechten te wijzigen van de gebruikersnaam waarmee u " "op dit moment ingelogd bent." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Gebruikersaccount overzicht" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12528,7 +12509,7 @@ msgstr "" "maken als het server deel van hun account een verbinding toestaat vanaf elke " "server (%)." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12542,7 +12523,7 @@ msgstr "" "geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " "gaat." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12556,11 +12537,11 @@ msgstr "" "dit het geval zijn dan moet de gebruikersrechten opnieuw geladen worden, " "maar op dit moment heeft u niet het RELOAD gebruikersrecht." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." @@ -12874,12 +12855,12 @@ msgstr "Opdracht" msgid "Progress" msgstr "Voortgang" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filters" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Enkel actieve waarden tonen" @@ -12900,12 +12881,12 @@ msgstr "per minuut:" msgid "per second:" msgstr "per seconde:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Opdrachten" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12929,7 +12910,7 @@ msgstr "Toon niet-opgemaakte waarden" msgid "Related links:" msgstr "Gerelateerde links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12937,11 +12918,11 @@ msgstr "" "Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder " "de verbinding keurig af te sluiten." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Aantal gefaalde pogingen om te verbinden met de MySQL-server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12952,18 +12933,18 @@ msgstr "" "hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op " "te slaan." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van de tijdelijke binaire logcache." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Het aantal verbindingspogingen (succesvol of niet) met de MySQL-server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12975,11 +12956,11 @@ msgstr "" "groot is, is het aangewezen om tmp_table_size te vergroten om tijdelijke " "tabellen aan te maken in geheugen in plaats van op harde schijf." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12987,7 +12968,7 @@ msgstr "" "Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " "door de server werd aangemaakt tijdens het uitvoeren van opdrachten." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12995,7 +12976,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13003,23 +12984,23 @@ msgstr "" "Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke " "tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH-opdrachten." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT-opdrachten." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13029,7 +13010,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13039,7 +13020,7 @@ msgstr "" "hoog geeft dit een indicatie dat de server veel scans doet op de volledige " "index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13048,7 +13029,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13058,7 +13039,7 @@ msgstr "" "wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking " "of bij het doen van een indexscan." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13066,7 +13047,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13079,7 +13060,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13091,35 +13072,35 @@ msgstr "" "betekent dit dat de gebruikte tabellen niet optimaal van indexen zijn " "voorzien of dat de toegepaste query's hier niet optimaal gebruik van maken." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK-opdrachten." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Het aantal update-opdrachten voor een tabelrij." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Het aantal pagina's dat momenteel \"dirty\" is." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal bufferpool-pagina's dat is geschoond." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Het aantal vrije pagina's." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13129,7 +13110,7 @@ msgstr "" "waarin momenteel wordt gelezen of geschreven, of die om een andere reden " "niet geschoond of verwijderd kunnen worden." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13141,11 +13122,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Totale grootte van de bufferpool, in pagina's." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13154,7 +13135,7 @@ msgstr "" "gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13162,11 +13143,11 @@ msgstr "" "Het aantal sequentiële read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurt wanneer er een volledige tabelscan wordt uitgevoerd." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13174,7 +13155,7 @@ msgstr "" "Het aantal logische leesoperaties dat InnoDB niet kon doen vanuit de " "bufferpool maar waarvoor een extra pagina ingeladen moest worden." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13188,86 +13169,86 @@ msgstr "" "zijn geschoond. Deze teller houdt bij hoe vaak dit voorkomt. Indien de " "bufferpool-grootte goed is ingesteld hoort deze waarde laag te zijn." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync()-operaties." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync()-operaties." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande leesoperaties." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijfoperaties." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Het totale aantal operaties voor het lezen van gegevens." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Het totale aantal operaties voor het schrijven van gegevens." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Het aantal pagina's dat werd geschreven voor doublewrite-operaties." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite-operaties." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle logbuffer." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Het aantal verzoeken voor het schrijven in het logboek." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijfoperaties op het logbestand." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Het aantal pagina's dat werd aangemaakt." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13276,54 +13257,54 @@ msgstr "" "Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het " "eenvoudig deze om te zetten naar bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Het aantal gelezen pagina's." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Het aantal geschreven pagina's." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "De gemiddelde tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "De totale tijd besteed aan het verkrijgen van rij-locks, in milliseconden." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "De maximale tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Het aantal keer dat er op een rij-lock moest worden gewacht." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13332,13 +13313,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "Het aantal ongebruikte blokken in het sleutelcache." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13347,15 +13328,15 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13365,7 +13346,7 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13373,22 +13354,22 @@ msgstr "" "Sleutelcachemissers berekend als percentage van fysieke leesoperaties in " "vergelijking met leesverzoeken (berekende waarde)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijfopdrachten voor een sleutelblok naar de cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijfopdrachten voor een sleutelblok naar disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken " "(berekende waarde)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13399,7 +13380,7 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekent " "dat er nog geen query is gecompileerd." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13407,13 +13388,13 @@ msgstr "" "Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de " "server gestart werd." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staat om te worden geschreven in INSERT DELAYED-" "wachtrijen." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13421,21 +13402,21 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de " "tabelcachewaarde te laag." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven naar " "logboeken)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13445,19 +13426,19 @@ msgstr "" "wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-" "statement uit te voeren." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het querycache." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Het aantal cache-hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Het aantal query's dat aan de cache werd toegevoegd." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13470,7 +13451,7 @@ msgstr "" "gebruikt (least recently used, LRU) strategie om te bepalen welke query's " "worden verwijderd." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13478,19 +13459,19 @@ msgstr "" "Het aantal niet-gecachte query's (niet cachebaar, dan wel niet gecached " "vanwege de instelling query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Het aantal query's dat in de cache staat." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in de querycache." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13498,13 +13479,13 @@ msgstr "" "Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " "is het aan te raden om het gebruik van indexen te controleren." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Het aantal joins dat een bereik beperking toepassen op een gerefereerde " "tabel." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13513,7 +13494,7 @@ msgstr "" "van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " "van indexen te controleren.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13521,17 +13502,17 @@ msgstr "" "Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " "hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave-SQL-" "thread." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13539,13 +13520,13 @@ msgstr "" "Het totaal aantal transacties dat moest worden herhaald door de replicatie-" "slave-SQL-thread (sinds het opstarten van de server)." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie-slave verbonden is " "met een masterserver." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13553,14 +13534,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Het aantal query's waarvan het uitvoeren langer dan long_query_time seconden " "duurde." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13570,24 +13551,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de " "systeemvariabele sort_buffer_size te vergroten." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" "Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Het aantal keer dat een tabel-lock direct kon worden verkregen." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13599,7 +13580,7 @@ msgstr "" "problemen, kunt u het beste eerst uw query's optimaliseren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13609,11 +13590,11 @@ msgstr "" "met Threads_created/Connections. Indien deze waarde rood staat aangegeven is " "het aan te raden om thread_cache_size te vergroten." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13625,11 +13606,11 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thread-implementatie, geen noemenswaardige prestatieverbetering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Threadcache-trefprecentage (berekende waarde)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." @@ -13659,37 +13640,37 @@ msgstr "Tabs op databaseniveau" msgid "Table level tabs" msgstr "Tabs op tabelniveau" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "View gebruikers" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Gebruikersgroep toevoegen" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Bewerk gebruikersgroep: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Gebruikersgroep menutoewijzingen" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Groepsnaam:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Tabs op serverniveau" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Tabs op databaseniveau" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tabs op tabelniveau" @@ -13790,7 +13771,7 @@ msgstr "Voer SQL-query/query's uit op database %s" msgid "Run SQL query/queries on table %s" msgstr "Voer SQL query/query's uit op tabel %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Leegmaken" @@ -13875,112 +13856,112 @@ msgstr "Nu uitschakelen" msgid "Version" msgstr "Versie" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Aangemaakt" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Bijgewerkt" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Versie verwijderen" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Tracking-rapport" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Structuur-snapshot" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "ingeschakeld" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "niet actief" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Tracking-statements" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Verwijder tracking-gegevensrij uit verslag" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Geen gegevens" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Laat %1$s zien met datums van %2$s tot %3$s door gebruiker %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL-export (naar bestand)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL-export" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Deze optie vervangt de tabel en alle gegevens van die tabel." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL-uitvoering" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exporteren als %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Manipulatie-statement" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Definitie-statement" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Gebruikersnaam" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versie %s snapshot (SQL-code)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Geen" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Tracking-gegevensdefinitie succesvol verwijderd" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking-gegevensmanipulatie succesvol verwijderd" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13988,64 +13969,64 @@ msgstr "" "U kunt de export gebruiken door deze in een tijdelijke database te " "importeren. Let er wel op dat u hier rechten voor nodig heeft." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" "De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig " "zijn." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL-statements geëxporteerd. Kopieer het exportbestand of voer deze uit." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking-rapport voor tabel `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking van %1$s is ingeschakeld op versie %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking van %1$s is uitgeschakeld op versie %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versie %1$s van %2$s werd verwijderd." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versie %1$s is aangemaakt, tracking van %2$s is ingeschakeld." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tabel tracken" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabellen met tracker" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Laatste versie" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Verwijder tracking" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versies" @@ -14053,7 +14034,7 @@ msgstr "Versies" msgid "Manage your settings" msgstr "Uw instellingen beheren" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "De configuratie werd opgeslagen." @@ -14079,7 +14060,7 @@ msgstr "Fout in het ZIP-archief:" msgid "No files found inside ZIP archive!" msgstr "Geen bestanden gevonden in ZIP-archief!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fatale fout: de navigatie is alleen toegankelijk via AJAX" @@ -14088,57 +14069,57 @@ msgid "Cannot save settings, submitted form contains errors!" msgstr "" "Instellingen werden niet opgeslagen, het verstuurde formulier bevat fouten!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin configuratie fragment" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Plak het in uw config.inc.php" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Standaard configuratiebestand kon niet geladen worden" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Het configuratiebestand bevat foute gegevens in sommige velden." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Wilt u de overgebleven instellingen importeren?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Opgeslagen op: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importeren uit bestand" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importeren uit browseropslag" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "De instellingen zullen geïmporteerd worden uit de lokale opslag van uw " "browser." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Er zijn geen opgeslagen instellingen!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Deze functie wordt niet ondersteund door uw webbrowser" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Samenvoegen met de huidige configuratie" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14147,24 +14128,24 @@ msgstr "" "U kan meer instellingen veranderen door config.inc.php aan te passen, bv. " "door het %ssetup-script%s te gebruiken." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Opslaan als PHP bestand" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Opslaan in de browseropslag" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" "De instellingen zullen bewaard worden in de lokale opslag van uw browser." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Bestaande instellingen zullen overschreven worden!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "U kan al uw instellingen terugzetten op de standaardwaarden." @@ -14172,12 +14153,12 @@ msgstr "U kan al uw instellingen terugzetten op de standaardwaarden." msgid "View dump (schema) of databases" msgstr "Export (schema) van de databases bekijken" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Geen rechten" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14185,20 +14166,20 @@ msgstr "" "Gebruikersnaam en servernaam zijn ongewijzigd. Als u alleen het wachtwoord " "wil wijzigen, gebruik de 'Wijzig wachtwoord' tab." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Niet genoeg rechten om server status te mogen zien." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Niet genoeg rechten om adviseur in te mogen zien." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s is succesvol afgesloten." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14206,15 +14187,15 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten. Waarschijnlijk is het " "al gesloten." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Niet genoeg rechten om query statistieken in te zien." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Niet genoeg rechten om status variabelen in te mogen zien." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Download" @@ -14224,11 +14205,11 @@ msgstr "" "Ongeldige formset, controleer de array $formsets in setup/frames/form.inc." "php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Laden en opslaan van het configuratiebestand is niet mogelijk" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14239,7 +14220,7 @@ msgstr "" "[doc@setup_script]documentatie[/doc]. Anders is het enkel mogelijk om de " "gegenereerde configuratie te bekijken en te downloaden." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14248,24 +14229,27 @@ msgstr "" "potentieel gevoelige informatie zoals wachtwoorden) worden onversleuteld " "verzonden!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Indien uw server ook is ingesteld om HTTPS-verbindingen te ondersteunen, " "gebruik dan [a@%s]deze link[/a] om de beveiligde verbinding te gebruiken." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Onveilige verbinding" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuratie opgeslagen." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14274,59 +14258,59 @@ msgstr "" "phpMyAdmin-installatiemap, kopieer dit bestand naar de installatiemap en " "verwijder de config-map." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Configuratie niet bewaard!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Overzicht" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Toon verborgen berichten (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Er zijn momenteel geen servers geconfigureerd" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nieuwe server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Standaard taal" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "laat de gebruiker kiezen" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- geen -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Standaard server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Regeleinde" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Toon" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Laden" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin-website" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Doneren" @@ -14363,7 +14347,7 @@ msgstr "Negeer foutmeldingen" msgid "Show form" msgstr "Toon formulier" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14371,15 +14355,15 @@ msgstr "" "Het ophalen van de versie-informatie is mislukt. Mogelijk bent u offline, of " "is de upgradeserver niet beschikbaar." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Een ongeldige versiecode was ontvangen van de server" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "De versiecode werd niet herkend" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14388,7 +14372,7 @@ msgstr "" "U gebruikt een Git-versie, voer [kbd]git pull[/kbd] uit :-)[br]De meest " "recente stabiele versie is %s, uitgebracht op %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Er is geen recentere stabiele versie beschikbaar" @@ -14401,12 +14385,12 @@ msgstr "Verkeerde gegevens" msgid "Wrong data or no validation for %s" msgstr "Verkeerde gegevens of geen validatie voor %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Database '%s' bestaat niet." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s bestaat reeds!" @@ -14419,29 +14403,29 @@ msgstr "Een export (schema) van tabel bekijken" msgid "Invalid table name" msgstr "Ongeldige tabelnaam" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rij: %1$s, Kolom: %2$s, Fout: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Geen rij geselecteerd." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Tracking van %s is ingeschakeld." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Tracking versies zijn met succes verwijderd." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Geen versies geselecteerd." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL-statements uitgevoerd." @@ -14612,7 +14596,7 @@ msgid "List of available transformations and their options" msgstr "Lijst met beschikbare transformaties en hun opties" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Browserweergavetransformaties" @@ -14634,7 +14618,7 @@ msgstr "" "(bijvoorbeeld '\\\\xyz' of 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Invoertransformaties" @@ -15066,17 +15050,17 @@ msgid "Size" msgstr "Grootte" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Gecreëerd" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Laatst bijgewerkt" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Laatst gecontroleerd" @@ -15118,6 +15102,12 @@ msgstr "" "Uw browser bevat configuratie van phpMyAdmin voor dit domein. Wilt u dit " "gebruiken in de huidige sessie?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Verwijder tracking" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Rechten toevoegen op de volgende database(s):" @@ -15136,10 +15126,45 @@ msgstr "Rechten toevoegen op de volgende routine:" msgid "Add privileges on the following table:" msgstr "Rechten toevoegen op de volgende tabel:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nieuw" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Geen" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "De geselecteerde gebruikersaccounts verwijderen" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Kolom-specifieke rechten" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Resource-beperkingen" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Opmerking: het instellen van deze waarden op 0 (nul) verwijdert de limiet." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" @@ -15170,7 +15195,7 @@ msgstr "Plug-in" msgid "Author" msgstr "Auteur" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "uitgeschakeld" @@ -15328,7 +15353,7 @@ msgstr "Lezer:" msgid "Comment:" msgstr "Opmerking:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Sleep om te herschikken" @@ -15365,20 +15390,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Beperking voor vreemde sleutel" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Voeg beperking toe" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Interne relaties" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Interne relatie" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15386,7 +15411,7 @@ msgstr "" "Een interne relatie is niet noodzakelijk wanneer er reeds een FOREIGN KEY-" "relatie bestaat." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Kies weer te geven kolom:" @@ -15439,11 +15464,11 @@ msgstr "Oorspronkelijke tekenreeks" msgid "Replaced string" msgstr "Vervangen tekenreeks" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Vervang" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Bijkomende zoekcriteria" @@ -15514,7 +15539,7 @@ msgid "at beginning of table" msgstr "bij begin van de tabel" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partities %s" @@ -15538,24 +15563,24 @@ msgstr "Lengte van de data" msgid "Index length" msgstr "Lengte van de index" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Partitietabel" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Partitionering bewerken" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "View bewerken" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Ruimtegebruik" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effectief" @@ -15580,31 +15605,31 @@ msgstr "Tabelstructuur verbeteren" msgid "Track view" msgstr "View volgen" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Rijstatistieken" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statisch" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamisch" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "gepartitioneerd" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Lengte van de rij" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Grootte van de rij" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Volgende automatische indexwaarde" @@ -15617,44 +15642,44 @@ msgstr "Kolom %s is verwijderd." msgid "Click to toggle" msgstr "Klik om te wisselen" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Thema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Bekijk meer thema's!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Beschikbare MIME-types" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Beschikbare browserweergave transformaties" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Beschikbare invoer transformaties" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Omschrijving" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Neemt je naar de doel site." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "U heeft niet genoeg rechten om hier te zijn!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Het profiel is aangepast." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Wachtwoord is te lang!" @@ -15723,8 +15748,12 @@ msgid "Unexpected end of CASE expression" msgstr "Onverwacht einde van CASE expressie" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Een symbool naam werd verwacht! Een gereserveerd sleutelwoord kan niet als " @@ -15747,17 +15776,17 @@ msgid "Unrecognized data type." msgstr "Onbekend gegevenstype." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Een alias werd verwacht." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Een alias was eerder al gevonden." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Onverwachte punt." @@ -15809,24 +15838,24 @@ msgstr "Spatie(s) werd(en) verwacht voor het scheidingsteken." msgid "Expected delimiter." msgstr "Scheidingsteken verwacht." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Eindquote %1$s werd verwacht." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Naam van variabele werd verwacht." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Onverwacht begin van opdracht." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Opdracht type niet herkent." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Er is geen transactie gestart." @@ -15843,10 +15872,16 @@ msgstr "Onverwacht token." msgid "This type of clause was previously parsed." msgstr "Dit type van voorwaarde is eerder uitgevoerd." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Sleutelwoord niet herkent." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Onverwacht begin van opdracht." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "De naam van de entiteit werd verwacht." @@ -15883,7 +15918,7 @@ msgstr "%2$s#%1$d" msgid "strict error" msgstr "strikte fout" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "View naam kan niet leeg zijn" @@ -17196,6 +17231,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "MySQL authenticatie" + #~ msgid "Try to connect without password." #~ msgstr "Probeer te verbinden zonder wachtwoord." diff --git a/po/pa.po b/po/pa.po index f570069c25..67a8fb3608 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-08-21 12:25+0000\n" "Last-Translator: Satnam S Virdi \n" "Language-Team: Punjabi Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2327,109 +2332,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2438,351 +2443,371 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Show all" msgid "Copy tables to" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "ਜਨਵਰੀ" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "ਫ਼ਰਵਰੀ" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "ਮਾਰਚ" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "ਅਪ੍ਰੈਲ" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "ਮਈ" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "ਜੂਨ" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "ਜੁਲਾਈ" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "ਅਗਸਤ" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "ਸਤੰਬਰ" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "ਅਕਤੂਬਰ" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "ਨਵੰਬਰ" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "ਦਸੰਬਰ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "ਜਨਵਰੀ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "ਫ਼ਰਵਰੀ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "ਮਾਰਚ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "ਅਪ੍ਰੈਲ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "ਮਈ" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "ਜੂਨ" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "ਜੁਲਾਈ" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "ਅਗਸਤ" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "ਸਤੰਬਰ" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "ਅਕਤੂਬਰ" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "ਨਵੰਬਰ" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "ਦਸੰਬਰ" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "ਐਤਵਾਰ" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "ਸੋਮਵਾਰ" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "ਮੰਗਲਵਾਰ" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "ਬੁਧਵਾਰ" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "ਵੀਰਵਾਰ" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "ਸ਼ੁੱਕਰਵਾਰ" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "ਸ਼ਨੀਵਾਰ" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "ਐਤ" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "ਸੋਮ" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "ਮੰਗਲ" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "ਬੁਧ" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "ਵੀਰ" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "ਸ਼ਨੀ" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "ਐਤ" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "ਸੋਮ" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "ਮੰਗਲ" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "ਬੁਧ" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "ਵੀਰ" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "ਸ਼ਨੀ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2843,20 +2868,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3051,7 +3076,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3095,48 +3120,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3232,112 +3257,107 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "ਲੱਭੋ" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3357,30 +3377,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3389,7 +3409,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3398,8 +3418,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3421,10 +3441,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3464,104 +3484,104 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3569,97 +3589,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3668,20 +3688,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3691,78 +3711,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "ਪੰਨਾ ਨੰਬਰ:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "ਭਾਸ਼ਾ" @@ -3786,11 +3806,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3809,14 +3829,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3825,8 +3846,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3834,45 +3855,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "ਲੱਭੋ" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3888,16 +3909,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3905,20 +3926,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3927,53 +3948,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4025,27 +4046,27 @@ msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" msgid "Favorites" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4107,7 +4128,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4161,78 +4182,78 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show all" msgid "Unknown table status:" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4240,19 +4261,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4519,7 +4540,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4534,126 +4555,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "ਐਤ" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4667,7 +4688,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4675,14 +4696,14 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "ਲੱਭੋ" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4690,7 +4711,7 @@ msgstr "ਲੱਭੋ" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4727,22 +4748,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4751,7 +4772,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4768,11 +4789,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4780,33 +4801,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4814,20 +4835,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5352,7 +5373,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5454,12 +5475,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5469,7 +5490,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5594,7 +5615,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5607,7 +5628,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5616,7 +5637,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5646,7 +5667,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5814,7 +5835,7 @@ msgid "Customize the navigation tree." msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6661,7 +6682,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7304,7 +7325,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7312,10 +7333,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7450,25 +7471,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %s has been dropped." @@ -7483,12 +7504,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7497,7 +7518,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7511,42 +7532,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7571,32 +7592,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7641,7 +7662,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7658,12 +7679,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7684,13 +7705,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7710,165 +7731,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7876,98 +7901,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8364,86 +8389,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8454,84 +8479,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8542,31 +8568,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8575,14 +8601,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8627,8 +8653,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8669,17 +8695,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8694,7 +8720,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8713,7 +8739,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show all" msgid "Show hidden items" @@ -8814,11 +8840,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9052,8 +9078,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9097,177 +9123,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9294,25 +9320,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9320,7 +9346,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9345,15 +9371,15 @@ msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9414,7 +9440,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9423,7 +9449,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9431,8 +9457,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9518,7 +9544,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10012,7 +10038,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10344,57 +10370,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10403,293 +10429,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10710,7 +10736,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10719,75 +10745,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10808,7 +10834,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10820,132 +10846,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10967,32 +10993,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11108,569 +11134,526 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "User name" msgid "Host name" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11679,7 +11662,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11688,11 +11671,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11959,12 +11942,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11985,12 +11968,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12014,33 +11997,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12048,78 +12031,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12127,7 +12110,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12135,42 +12118,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12178,33 +12161,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12213,242 +12196,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12456,99 +12439,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12556,18 +12539,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12575,11 +12558,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12608,37 +12591,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12733,7 +12716,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12818,172 +12801,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12991,7 +12974,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13015,7 +12998,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13023,78 +13006,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13102,45 +13085,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13148,97 +13131,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13274,28 +13256,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13308,12 +13290,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13326,31 +13308,31 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "Database %1$s has been created." msgid "No row selected." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13514,7 +13496,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13532,7 +13514,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13968,17 +13950,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -14013,6 +13995,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14029,10 +14015,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14063,7 +14082,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14217,7 +14236,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14249,28 +14268,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14324,11 +14343,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14397,7 +14416,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14421,26 +14440,26 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Show all" msgid "Partition table" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14465,31 +14484,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14502,44 +14521,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14607,7 +14626,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14632,19 +14651,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14698,24 +14717,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14732,10 +14751,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14776,7 +14799,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index cb1eeaedf7..83bc042716 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, possible-php-format msgid "" "The %s file is not available on this system, please visit %s for more " "information." msgstr "" -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, possible-php-format msgid "Showing rows %1$s - %2$s." msgstr "" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -61,13 +61,13 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -78,9 +78,9 @@ msgstr "" msgid "Column" msgstr "" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -91,12 +91,12 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,9 +108,9 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -121,15 +121,15 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -140,14 +140,14 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -157,7 +157,7 @@ msgstr "" msgid "Links to" msgstr "" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -171,19 +171,19 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -191,13 +191,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -205,17 +205,17 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -224,13 +224,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -242,15 +242,15 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "" #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -259,8 +259,8 @@ msgid "Tables" msgstr "" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -268,10 +268,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -284,27 +284,27 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "" -#: db_operations.php:137 +#: db_operations.php:138 #, possible-php-format msgid "Database %1$s has been renamed to %2$s." msgstr "" -#: db_operations.php:149 +#: db_operations.php:150 #, possible-php-format msgid "Database %1$s has been copied to %2$s." msgstr "" @@ -315,37 +315,37 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "" -#: db_qbe.php:143 +#: db_qbe.php:144 #, possible-php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "" -#: db_tracking.php:61 +#: db_tracking.php:62 #, possible-php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "" -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "" @@ -381,200 +381,200 @@ msgstr "" msgid "Bad parameters!" msgstr "" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, possible-php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, possible-php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, possible-php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, possible-php-format msgid "Linestring %d:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, possible-php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, possible-php-format msgid "Polygon %d:" msgstr "" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "" -#: import.php:195 +#: import.php:196 #, possible-php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "" -#: import.php:489 +#: import.php:486 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 "" -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, possible-php-format msgid "Bookmark %s has been created." msgstr "" -#: import.php:593 +#: import.php:590 #, possible-php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "" msgstr[1] "" -#: import.php:622 +#: import.php:619 #, possible-php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: import.php:632 +#: import.php:629 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 "" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -582,17 +582,17 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "" -#: index.php:156 +#: index.php:157 #, possible-php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -600,120 +600,120 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 "" -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -721,21 +721,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -743,26 +743,26 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, possible-php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, possible-php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:618 +#: index.php:619 #, possible-php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -912,7 +912,7 @@ msgid "Save & close" msgstr "" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "" @@ -944,7 +944,7 @@ msgstr "" msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, possible-php-format msgid "Add %s column(s) to index" msgstr "" @@ -969,10 +969,10 @@ msgstr "" msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -984,7 +984,7 @@ msgstr "" msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "" @@ -1001,13 +1001,13 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "" @@ -1015,8 +1015,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "" @@ -1038,19 +1038,19 @@ msgstr "" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "" @@ -1152,40 +1152,40 @@ msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "" @@ -1203,7 +1203,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" @@ -1217,16 +1217,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "" @@ -1407,20 +1407,20 @@ msgstr "" msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "" @@ -1502,10 +1502,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "" @@ -1578,7 +1578,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "" @@ -1618,8 +1618,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "" @@ -1657,7 +1657,7 @@ msgstr "" msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "" @@ -1685,71 +1685,76 @@ msgstr "" msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:388 +#, possible-php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, possible-php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, possible-php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1757,559 +1762,559 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, possible-php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, possible-php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 #, possible-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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, possible-php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, possible-php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, possible-php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, possible-php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, possible-php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2317,105 +2322,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, possible-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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, possible-php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, possible-php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, possible-php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2424,349 +2429,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2827,20 +2852,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3035,7 +3060,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3079,48 +3104,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, possible-php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3214,110 +3239,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, possible-php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, possible-php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, possible-php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, possible-php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, possible-php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3337,30 +3357,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3369,7 +3389,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3378,8 +3398,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3401,10 +3421,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3444,102 +3464,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, possible-php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, possible-php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, possible-php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, possible-php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3547,97 +3567,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, possible-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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, possible-php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3646,20 +3666,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3669,78 +3689,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, possible-php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, possible-php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3764,11 +3784,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3787,14 +3807,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3803,8 +3824,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3812,45 +3833,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3866,16 +3887,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3883,20 +3904,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3905,53 +3926,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, possible-php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, possible-php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, possible-php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -3999,27 +4020,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4081,7 +4102,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4135,76 +4156,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, possible-php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, possible-php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, possible-php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, possible-php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, possible-php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, possible-php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, possible-php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, possible-php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, possible-php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, possible-php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4212,19 +4233,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, possible-php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4491,7 +4512,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4506,126 +4527,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, possible-php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, possible-php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, possible-php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4639,7 +4660,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4647,12 +4668,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4660,7 +4681,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4697,22 +4718,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4721,7 +4742,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4738,11 +4759,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4750,33 +4771,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, possible-php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, possible-php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, possible-php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, possible-php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4784,20 +4805,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5322,7 +5343,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5422,12 +5443,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, possible-php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5437,7 +5458,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5562,7 +5583,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5575,7 +5596,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5584,7 +5605,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5614,7 +5635,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, possible-php-format msgid "Add %s" msgstr "" @@ -5780,7 +5801,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6611,7 +6632,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7246,7 +7267,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7254,10 +7275,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7392,24 +7413,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, possible-php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, possible-php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, possible-php-format msgid "Table %s has been dropped." msgstr "" @@ -7423,12 +7444,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7437,7 +7458,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7451,42 +7472,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, possible-php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, possible-php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7511,32 +7532,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, possible-php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, possible-php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7579,7 +7600,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7596,12 +7617,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7622,13 +7643,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, possible-php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7648,165 +7669,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, possible-php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, possible-php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, possible-php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7814,98 +7839,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, possible-php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, possible-php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, possible-php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8302,86 +8327,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, possible-php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, possible-php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, possible-php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, possible-php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, possible-php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, possible-php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, possible-php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, possible-php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, possible-php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8392,84 +8417,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8480,31 +8506,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8513,14 +8539,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8565,8 +8591,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8607,17 +8633,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8632,7 +8658,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8651,7 +8677,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8750,11 +8776,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -8988,8 +9014,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9033,177 +9059,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, possible-php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, possible-php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, possible-php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, possible-php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, possible-php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, possible-php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9230,25 +9256,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, possible-php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, possible-php-format msgid "" "You probably did not create a configuration file. You might want to use the " "%1$ssetup script%2$s to create one." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9256,7 +9282,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9281,15 +9307,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9350,7 +9376,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9359,7 +9385,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9367,8 +9393,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9454,7 +9480,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9948,7 +9974,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10268,57 +10294,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, possible-php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, possible-php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, possible-php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10327,293 +10353,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, possible-php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, possible-php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, possible-php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, possible-php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, possible-php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, possible-php-format @@ -10634,7 +10660,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10643,75 +10669,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, possible-php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10732,7 +10758,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10744,132 +10770,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, possible-php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, possible-php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, possible-php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, possible-php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, possible-php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, possible-php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, possible-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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10891,32 +10917,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11032,565 +11058,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, possible-php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, possible-php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, possible-php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, possible-php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, possible-php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11599,7 +11582,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11608,11 +11591,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11879,12 +11862,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11905,12 +11888,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -11934,33 +11917,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11968,78 +11951,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12047,7 +12030,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12055,42 +12038,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12098,33 +12081,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12133,242 +12116,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12376,99 +12359,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12476,18 +12459,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12495,11 +12478,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12528,37 +12511,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, possible-php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12653,7 +12636,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12738,172 +12721,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, possible-php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, possible-php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, possible-php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, possible-php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, possible-php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, possible-php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, possible-php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, possible-php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12911,7 +12894,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12935,7 +12918,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12943,78 +12926,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, possible-php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13022,45 +13005,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, possible-php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, possible-php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13068,97 +13051,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, possible-php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13194,28 +13176,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, possible-php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13228,12 +13210,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, possible-php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, possible-php-format msgid "Table %s already exists!" msgstr "" @@ -13246,29 +13228,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, possible-php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, possible-php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13432,7 +13414,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13450,7 +13432,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13878,17 +13860,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13923,6 +13905,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13939,10 +13925,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13973,7 +13992,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14127,7 +14146,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14159,26 +14178,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14231,11 +14250,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14304,7 +14323,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14328,24 +14347,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14370,31 +14389,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14407,44 +14426,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14512,7 +14531,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14533,17 +14552,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14595,24 +14614,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, possible-php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14629,10 +14648,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14669,7 +14692,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/pl.po b/po/pl.po index fc35de90d5..86f4a3ea43 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-08-17 15:46+0000\n" "Last-Translator: Stanisław Krukowski \n" "Language-Team: Polish =20) ? 1 : 2;\n" "X-Generator: Weblate 2.8-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -25,31 +25,31 @@ msgstr "" "Plik %s nie jest dostępny w tym systemie. Proszę odwiedzić %s, aby uzyskać " "więcej informacji." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Centralna lista kolumn dla obecnej bazy danych jest pusta." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Kliknij, by posortować." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Pokazano wiersze %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Komentarz bazy danych" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Komentarze tabeli:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -61,13 +61,13 @@ msgstr "Komentarze tabeli:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -78,9 +78,9 @@ msgstr "Komentarze tabeli:" msgid "Column" msgstr "Kolumna" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -91,12 +91,12 @@ msgstr "Kolumna" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,9 +108,9 @@ msgstr "Kolumna" msgid "Type" msgstr "Typ" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -121,15 +121,15 @@ msgstr "Typ" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -140,14 +140,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Ustawienia domyślne" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -157,7 +157,7 @@ msgstr "Ustawienia domyślne" msgid "Links to" msgstr "Odsyłacze do" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -171,19 +171,19 @@ msgstr "Odsyłacze do" msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Podstawowy" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -191,13 +191,13 @@ msgstr "Podstawowy" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -205,17 +205,17 @@ msgstr "Podstawowy" msgid "No" msgstr "Nie" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -224,13 +224,13 @@ msgstr "Nie" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -242,15 +242,15 @@ msgstr "Tak" msgid "View dump (schema) of database" msgstr "Zobacz zrzut (schemat) bazy danych" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Nie znaleziono żadnych tabel w bazie danych." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -259,8 +259,8 @@ msgid "Tables" msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -268,10 +268,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -284,27 +284,27 @@ msgstr "Struktura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Dane" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Zaznacz wszystko" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Nazwę bazy danych %1$s zmieniono na %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Baza danych %1$s została przekopiowana do %2$s." @@ -317,38 +317,38 @@ msgstr "" "Przechowywanie konfiguracji phpMyAdmin zostało wyłączone. Aby dowiedzieć się " "dlaczego, kliknij %stutaj%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Musisz wybrać co najmniej jedną kolumnę do wyświetlenia!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Przełącz do %svisual builder%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Odmowa dostępu!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Dane śledzenia zostały poprawnie usunięte." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "Wersja %1$s została utworzona dla wybranej tabeli, śledzenie jest aktywne." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Nie wybrano tabeli." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Dziennik bazy danych" @@ -390,131 +390,131 @@ msgstr "Zły typ!" msgid "Bad parameters!" msgstr "Złe parametry!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Wartość dla kolumny \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Użyj OpenStreetMaps jako Podstawowej Warstwy" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Dodaj punkt" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Linia łamana %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Pierścień zewnętrzny:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Pierścień wewnętrzny %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Dodaj linię łamaną" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Dodaj pierścień wewnętrzny" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Wielokąt %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Dodaj wielokąt" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Dodaj geometrię" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Wykonaj" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Wyjście" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -522,19 +522,19 @@ msgstr "" "Wybierz \"GeomFromText\" z kolumny \"Funkcja\" i wklej poniższy ciąg znaków " "do pola \"Wartość\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Sukces" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Nieudane" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Niekompletne parametry" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -543,15 +543,15 @@ msgstr "" "Prawdopodobnie nastąpiła próba załadowania zbyt dużego pliku. Proszę " "zapoznać się %sdokumentacją%s, aby obejść to ograniczenie." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Wyświetlanie zakładki" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Zakładka została usunięta." -#: import.php:489 +#: import.php:486 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 " @@ -561,16 +561,16 @@ msgstr "" "albo jego rozmiar przekroczył rozmiar maksymalny, dozwolony przez " "konfigurację PHP. Zobacz [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Zakładka %s została utworzona." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -578,7 +578,7 @@ msgstr[0] "Import zakończony sukcesem, wykonano %d zapytanie." msgstr[1] "Import zakończony sukcesem, wykonano %d zapytań." msgstr[2] "Import zakończony sukcesem, wykonano %d zapytań." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -587,7 +587,7 @@ msgstr "" "Limit czasu wykonania skryptu minął. Aby ukończyć import, proszę %sponownie " "przesłać ten sam plik%s, a import zostanie wznowiony." -#: import.php:632 +#: import.php:629 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." @@ -596,7 +596,7 @@ msgstr "" "dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego " "importu bez zwiększenia limitów czasowych PHP." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." @@ -604,17 +604,17 @@ msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." msgid "Could not load the progress of the import." msgstr "Nie można wczytać postępu importu." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Powrót" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Serwer demo phpMyAdmina" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -625,107 +625,107 @@ msgstr "" "niedokonywanie zmian dla kont root, debian-sys-maint oraz pma. Więcej " "informacji na %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Ustawienia ogólne" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Zmień hasło" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Sortowanie połączenie z serwerem" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Ustawienia wyglądu" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Więcej ustawień" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Serwer bazy danych" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Serwer:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Typ serwera:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Wersja serwera:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Wersja protokołu:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Użytkownik:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Kodowanie znaków serwera:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Serwer WWW" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Wersja klienta bazy danych:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Rozszerzenie PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Wersja PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Informacja o wersji:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacja" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Oficjalna strona phpMyAdmina" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Współpraca" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Pomoc techniczna" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista zmian" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licencja" -#: index.php:443 +#: index.php:444 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 " @@ -736,7 +736,7 @@ msgstr "" "phpMyAdmin nie ma możliwości poprawnego rozbijania napisów, co może " "skutkować niespodziewanymi rezultatami." -#: index.php:458 +#: index.php:459 #, fuzzy msgid "" "The curl extension was not found and allow_url_fopen is disabled. Due to " @@ -746,7 +746,7 @@ msgstr "" "allow_url_fopen. Powoduje to zablokowanie niektórych funkcjonalności, takich " "jak raportowanie błędów czy sprawdzanie wersji." -#: index.php:473 +#: index.php:474 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 " @@ -758,7 +758,7 @@ msgstr "" "wartość niż czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z " "tego powodu sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -767,16 +767,16 @@ msgstr "" "ciasteczek skonfigurowanego w phpMyAdmin, z tego powodu, swój login wygasa " "wcześniej niż skonfigurowane w phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Plik konfiguracyjny wymaga teraz tajnej frazy kodującej (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -789,7 +789,7 @@ msgstr "" "serwera jest zagrożone przez osoby nieupoważnione ściągające twoją " "konfigurację." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -798,14 +798,14 @@ msgstr "" "Przechowywania konfiguracji phpMyAdmin nie jest w pełni skonfigurowane, " "niektóre rozszerzone funkcje zostały wyłączone. %sDowiedz się dlaczego%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Możesz też przejść do karty 'Operacje' dowolnej bazy danych, by " "skonfigurować tą opcję tylko dla tej bazy." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -814,7 +814,7 @@ msgstr "" "PHP MySQL w wersji biblioteki %s różni się od serwera MySQL w wersji %s. " "Może to spowodować nieprzewidywalne zachowanie." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -981,7 +981,7 @@ msgid "Save & close" msgstr "Zapisz & zamknij" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Resetuj" @@ -1013,7 +1013,7 @@ msgstr "Dodaj indeks" msgid "Edit index" msgstr "Edytuj indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Dodaj %s kolumny do indeksu" @@ -1038,10 +1038,10 @@ msgstr "Wybierz kolumny dla indeksu." msgid "You have to add at least one column." msgstr "Musisz dodać co najmniej jedną kolumnę." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Podgląd SQL" @@ -1053,7 +1053,7 @@ msgstr "Symuluj zapytanie" msgid "Matched rows:" msgstr "Dopasowane wiersze:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Zapytanie SQL:" @@ -1070,13 +1070,13 @@ msgstr "Nazwa hosta jest pusta!" msgid "The user name is empty!" msgstr "Nazwa użytkownika jest pusta!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Hasło jest puste!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" @@ -1084,8 +1084,8 @@ msgstr "Hasła nie są identyczne!" msgid "Removing Selected Users" msgstr "Usuwanie wybranych użytkowników" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Zamknij" @@ -1107,19 +1107,19 @@ msgstr "Szablon został usunięty." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Inne" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1225,40 +1225,40 @@ msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1276,7 +1276,7 @@ msgstr "Pytania" msgid "Traffic" msgstr "Ruch" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ustawienia" @@ -1290,16 +1290,16 @@ msgid "Please add at least one variable to the series!" msgstr "Dodaj co najmniej jedną zmienną do serii!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Żaden" @@ -1495,20 +1495,20 @@ msgstr "Analizowanie…" msgid "Explain output" msgstr "Wyjaśnij wynik przetworzenia danych" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Czas" @@ -1597,10 +1597,10 @@ msgstr "" "domyślnej konfiguracji…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Import" @@ -1673,7 +1673,7 @@ msgstr "Nie znaleziono parametrów!" msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Ustawienia strony" @@ -1713,8 +1713,8 @@ msgid "Error text: %s" msgstr "Błąd tekstu: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." @@ -1752,7 +1752,7 @@ msgstr "Kopiowanie bazy danych" msgid "Changing charset" msgstr "Zmiana kodowania" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Włącz sprawdzanie kluczy obcych" @@ -1780,71 +1780,76 @@ msgstr "Przeglądanie" msgid "Deleting" msgstr "Usuwanie" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Usunąć dopasowania do tabeli %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicja przechowywania funkcji musi zawierać deklarację RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Eksport" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Edytor ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Wartości dla kolumny %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Wartości dla nowej kolumny" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Wprowadź każdą wartość do osobnego pola." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d wartość(i)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Uwaga: Jeśli plik zawiera wiele tabel, będzie połączony w jeden." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Ukryj okno zapytań" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Pokaż okno zapytań" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1852,53 +1857,53 @@ msgstr "Pokaż okno zapytań" msgid "Edit" msgstr "Edytuj" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Usuń" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem wiersza." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Brak automatycznie zapisanych zapytań" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Zmienna %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Wybierz" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Wybieranie kolumn" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Szukaj w tej liście" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1908,15 +1913,15 @@ msgstr "" "dla bazy danych %s zawiera kolumny, które nie są wyświetlane w aktywnej " "tabeli.." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Zobacz więcej" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Czy jesteś pewien?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1924,51 +1929,51 @@ msgstr "" "To działanie może zmienić część definicji kolumn.
Czy jesteś pewien, że " "chcesz kontynuować?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Kontynuuj" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Dodaj klucz główny" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Klucz podstawowy dodany." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Przenoszenie cię do następnego kroku…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Pierwszy etap dostosowywania dla tableli '%s' został ukończony." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Koniec kroku" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Drugi etap dostosowywania (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Zakończ" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Potwierdź częściowe zależności" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Wybrane częściowe zależności to:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1976,20 +1981,20 @@ msgstr "" "Uwaga: a, b -> d,f oznacza, że złączone wartości kolumn a i b mogą " "definiować wartości kolumn d i f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Żadne częściowe zależności nie zostały wybrane!" -#: js/messages.php:452 +#: js/messages.php:453 #, fuzzy msgid "Show me the possible partial dependencies based on data in the table" msgstr "Pokaż częściowe zależności w oparciu o dane w tabeli" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Ukryj listę częściowych zależności" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1997,194 +2002,194 @@ msgstr "" "Poczekaj chwilę! To może zająć chwilę zależnie od rozmiaru bazy i ilości " "kolumn." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Krok" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Następujące operacje zostaną wykonane:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Usuń kolumny %s z tabeli %s" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "Utwórz następującą tabelę" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Trzeci krok normalizacji" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Wybrano następujące zależności:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nie wybrano żadnych zależności!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Zapisz" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Ukryj okno zapytania SQL" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Pokaż kryteria wyszukiwania" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Wyszukanie z zakresem" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Maximum kolumny:" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Nazwy kolumn:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimalna wartość:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maksymalna wartość:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Ukryj kryteria wyszukiwania i zamiany" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Pokaż kryteria wyszukiwania i zamiany" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Każdy punkt reprezentuje wiersz danych." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Najechanie nad punkt pokaże jego etykietę." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Aby powiększyć, wybierz część powierzchni z myszy." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Kliknij Resetuj powiększenie, aby wrócić do pierwotnego stanu." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliknij punkt danych, aby wyświetlić lub ewentualnie zmodyfikować wiersze " "danych." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Wykres może być zmieniany przez przeciągnięcie go wzdłuż prawego dolnego " "rogu." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Wybierz dwie kolumny" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Wybierz dwie różne kolumny" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Treść punktu danych" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopiuj" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linia ciągu" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Wielokąt" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Pierścień wewnętrzny" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Pierścień zewnętrzny:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Czy chcesz skopiować klucz szyfrowania?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Klucz szyfrowania" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2192,24 +2197,24 @@ msgstr "" "Wygląda na to, że dokonałeś zmian na tej stronie; Zostaniesz zapytany o " "potwierdzenie zanim anulujesz zmiany" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Wybierz klucz podstawowy lub unikalny klucz!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Wybierz kolumny do wyświetlenia" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2217,76 +2222,76 @@ msgstr "" "Nie zapisano zmian w układzie. Zostaną utracone, jeśli ich nie zapiszesz. " "Czy chcesz kontynuować?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nazwa strony" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Zapisz stronę" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Zapisz stronę jako" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otwórz stronę" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Usuń stronę" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Bez nazwy" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Proszę wybrać stronę, aby kontynuować" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Czy chcesz zapisać zmiany na obecnej stronie?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Usuwanie strony zakończylo się sukcesem" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Eksportuj schemat relacji" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modyfikacja została zapisana" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Dodaj opcję kolumny \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d obiekt(y) utworzony." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Wyślij" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Naciśnij ESC, aby anulować edycję." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2294,41 +2299,41 @@ msgstr "" "Po dokonaniu edycji pewnych danych, nie zostały one zapisane. Czy na pewno " "chcesz opuścić tę stronę przed zapisaniem danych?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Przeciągnij, aby uporządkować." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Kliknij, aby posegregować wyniki na podstawie tej kolumny." -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Kliknij, by zaznaczyć/odznaczyć." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Kliknij dwukrotnie, aby skopiować nazwę kolumny." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Kliknij rozwijane strzałki,
aby przełączyć widoczność kolumn." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Pokaż wszystko" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2337,12 +2342,12 @@ msgstr "" "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać po " "zapisaniu." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Proszę wstaw poprawną liczbę heksadecymalną. Poprawne znaki to 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2350,104 +2355,104 @@ msgstr "" "Czy napewno chcesz zobaczyć wszystkie wiersze? Przy dużej tabeli może to " "spowodować wysypanie się przeglądarki." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Oryginalna długość" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "anuluj" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Przerwane" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Sukces" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importuj status" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Tutaj upuść pliki" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Najpierw wybierz bazę danych" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Drukuj" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Można również edytować większość wartości
klikając dwukrotnie " "bezpośrednio na nich." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Można również edytować większość wartości
klikając bezpośrednio na " "nich." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Idź do linku:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Skopiuj nazwę kolumny." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Kliknij prawym przyciskiem myszy nazwę kolumny aby skopiować go do schowka." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generuj" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Więcej" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Pokaż panel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Ukryj panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Pokaż ukryte elementy drzewa nawigacji." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Połącz z głównym panelem" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Odłącz od głównego panelu" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Żądana strona nie została znaleziona w historii, może wygasła." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2457,41 +2462,41 @@ msgstr "" "wersja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", ostatnia stabilna wersja:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "aktualna" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Utwórz widok" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Wyślij raport o błędach" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Wyślij zgłoszenie błędu" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Wystąpił błąd krytyczny JavaScript. Czy chcesz wysłać raport błędu?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Zmiana ustawień raportów" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Pokaż szczegóły raportu" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2499,7 +2504,7 @@ msgstr "" "Twój eksport jest niekompletny, z powodu niskiej realizacji terminu na " "poziomie PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2509,58 +2514,58 @@ msgstr "" "niektóre pola mogą zostać zignorowane, w związku z ustawieniami PHP's " "max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Parę błędów zostało wykrytych na serwerze!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Proszę, popatrz na dół tego okienka." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignoruj wszystko" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Wyczuwam nowe ustawienia, poczekaj chwilę, są one przetwarzane." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Czy wykonać to zapytanie ponownie?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Czy na pewno chcesz usunąć tę zakładkę?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Wystąpiły błędy podczas pobierania zdebugowanego kodu SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s kwerendy wykonane %s razy w %s sekund." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentów spełniło kryteria" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Pokaż argumenty" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Ukryj argumenty" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Zajeło to:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2569,355 +2574,375 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiuj bazę danych do" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Dodaj prefiks tabeli:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zamień przedrostek tabeli" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiuj tabelę z przedrostkiem" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Poprz." -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Nast." #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Dziś" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Styczeń" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Luty" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Marzec" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Kwiecień" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maj" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Czerwiec" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Lipiec" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Sierpień" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Wrzesień" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Październik" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Listopad" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Gru" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Piątek" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Ty" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalendarz-miesiąc-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "brak" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Godzina" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuta" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekunda" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "To pole jest wymagane" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Popraw to pole" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Podaj poprawny adres email" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Wprowadź prawidłowy adres URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Wprowadź prawidłową datę" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Wprowadź poprawną datę (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Wprowadź poprawną liczbę" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Wprowadź prawidłowy numer karty kredytowej" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Wprowadź tylko cyfry" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Wprowadź ponownie tę samą wartość" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Wprowadź nie więcej niż {0} znaków" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Wprowadź co najmniej {0} znaków" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Wprowadź wartość o długości pomiędzy {0} a {1} znaków" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Wprowadź wartość między {0} i {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Wprowadź wartość mniejszą niż lub równą {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Wprowadź wartość większą niż lub równą {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Podaj prawidłową datę lub czas" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Wprowadź prawidłową wartość HEX" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Błąd" @@ -2982,20 +3007,20 @@ msgid "Charset" msgstr "Kodowanie znaków" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Metoda porównywania napisów" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binarne" @@ -3192,7 +3217,7 @@ msgid "Czech-Slovak" msgstr "Czesko-słowacki" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nieznany" @@ -3244,7 +3269,7 @@ msgstr "" msgid "Font size" msgstr "Rozmiar czcionki" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3252,21 +3277,21 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Brak zakładek" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Konsola zapytań SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Nie można odczytać pliku konfiguracyjnego!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3274,25 +3299,25 @@ msgstr "" "Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo " "skonfigurowane)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Serwer nie odpowiada." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Szczegóły…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Brakuje parametru:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku " @@ -3388,57 +3413,57 @@ msgstr "Wstaw:" msgid "Del:" msgstr "Usuń:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Zapytanie SQL do bazy danych %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Wyślij zapytanie" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Zapisane w zakładkach wyszukiwania:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nowa zakładka" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Utwórz zakładkę" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Aktualizuj zakładkę" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Usuń zakładkę" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "co najmniej jeden z wyrazów" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "wszystkie wyrazy" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "dokładna fraza" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "jako wyrażenie regularne" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Wyniki wyszukiwania dla \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3446,7 +3471,7 @@ msgstr[0] "Ogółem: %s dopasowania" msgstr[1] "Ogółem: %s dopasowania" msgstr[2] "Ogółem: %s dopasowania" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -3454,46 +3479,41 @@ msgstr[0] "%1$s dopasowanie w %2$s" msgstr[1] "%1$s dopasowania w %2$s" msgstr[2] "%1$s dopasowań w %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Przeglądaj" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Usunąć dopasowania do tabeli %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Szukaj w bazie danych" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Wyrazy lub wartości do wyszukania (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Znajdź:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Wyrazy oddzielone są znakiem spacji (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Wewnątrz tabel:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Odznacz wszystko" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Wewnątrz kolumny:" @@ -3513,30 +3533,30 @@ msgstr "Filtrowanie wierszy" msgid "Search this table" msgstr "Szukaj w tej tabeli" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Początek" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Poprzednie" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Następne" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Koniec" @@ -3545,7 +3565,7 @@ msgstr "Koniec" msgid "All" msgstr "Wszystko" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Liczba wierszy:" @@ -3554,8 +3574,8 @@ msgstr "Liczba wierszy:" msgid "Sort by key" msgstr "Sortuj wg klucza" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3577,10 +3597,10 @@ msgstr "Sortuj wg klucza" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opcje" @@ -3622,29 +3642,29 @@ msgstr "Znany tekst" msgid "Well Known Binary" msgstr "Znane binarne" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Wiersz został usunięty." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Zabij" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Może być w przybliżeniu. Zobacz [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Zapytanie SQL zostało wykonane pomyślnie." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3653,73 +3673,73 @@ msgstr "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Pokazano wiersze %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d ogółem, %2$d w zapytaniu" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d ogółem" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Wykonanie zapytania trwało %01.4f sekund(y)." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Z zaznaczonymi:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Zaznacz wszystko" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopiuj do schowka" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Wyświetlanie wykresu" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Wizualizacja danych GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Łącza nie znaleziono!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Brak" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konwersja do Kana" @@ -3727,24 +3747,24 @@ msgstr "Konwersja do Kana" msgid "Too many error messages, some are not displayed." msgstr "Zbyt wiele komunikatów o błędach, niektóre nie są wyświetlane." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Raport" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Wyślij zgłoszenie automatycznie następnym razem" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Plik nie został przesłanym plikiem." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Przesłany plik przekracza dyrektywę upload_max_filesize w pliku php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3752,48 +3772,48 @@ msgstr "" "Przesłany plik przekracza dyrektywę MAX_FILE_SIZE, który został określony w " "formularzu HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Przesłany plik był tylko częściowo przesłany." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Brakuje folderu tymczasowego." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Nie udało się zapisać pliku na dysk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Nieznany błąd w przesyłania pliku." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Nie można odczytać pliku!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Błąd przenoszenia przesłanego pliku, patrz [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Błąd podczas przenoszenia plików na serwerze." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Nie można odczytać przesłanego pliku." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3802,28 +3822,28 @@ msgstr "" "Próbowano wczytać plik z nieobsługiwaną kompresją (%s). Albo ten typ " "kompresji nie jest obsługiwany, albo jest wyłączony w konfiguracji." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Brakuje Git informacji!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Otwórz nowe okno phpMyAdmina" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Podgląd wydruku" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Kliknij na pasku, aby przewinąć do góry strony" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Obsługa javascript musi być włączona!" @@ -3832,20 +3852,20 @@ msgid "No index defined!" msgstr "Brak zdefiniowanego indeksu!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3855,59 +3875,59 @@ msgstr "Indeksy" msgid "Action" msgstr "Działanie" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nazwa klucza" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Moc" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komentarz" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Klucz podstawowy został usunięty." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Klucz %s został usunięty." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Usuń" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3916,20 +3936,20 @@ msgstr "" "Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać " "usunięty." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Numer strony:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 #, fuzzy msgid "Ignoring unsupported language code." msgstr "Ignorowanie niewspieranego kodu językowego." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Język" @@ -3953,11 +3973,11 @@ msgstr "Serwer" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3976,14 +3996,15 @@ msgid "View" msgstr "Widok" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3992,8 +4013,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4001,45 +4022,45 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Szukaj" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Wstaw" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Uprawnienia" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacje" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Śledzenie" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4055,16 +4076,16 @@ msgstr "Wyzwalacze" msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Zapytanie" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Procedury i funkcje" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4072,20 +4093,20 @@ msgstr "Procedury i funkcje" msgid "Events" msgstr "Zdarzenia" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Widok projektu" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centralne kolumny" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Bazy danych" @@ -4094,39 +4115,39 @@ msgid "User accounts" msgstr "Konta użytkowników" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Dziennik binarny" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacja" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Zmienne" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Kodowania znaków" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Mechanizmy" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Wtyczki" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4134,7 +4155,7 @@ msgstr[0] "Zmodyfikowanych rekordów: %1$d." msgstr[1] "Zmodyfikowanych rekordów: %1$d." msgstr[2] "Zmodyfikowanych rekordów: %1$d." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4142,7 +4163,7 @@ msgstr[0] "Usuniętych rekordów: %1$d." msgstr[1] "Usuniętych rekordów: %1$d." msgstr[2] "Usuniętych rekordów: %1$d." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4191,27 +4212,27 @@ msgstr "Tabele Ulubione" msgid "Favorites" msgstr "Ulubione" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Proszę podać nazwę dla tej zakładki wyszukiwania." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Brakuje informacji, aby zapisać zakładkę wyszukiwania." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Wpis o tej nazwie już istnieje." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Brakuje informacji, aby usunąć wyszukiwanie." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Brakuje informacji, aby załadować wyszukiwanie." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Błąd podczas ładowania wyszukiwania." @@ -4273,7 +4294,7 @@ msgstr "Pokaż otwarte tabele" msgid "Show slave hosts" msgstr "Pokaż podrzędne hosty" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Pokaż stan serwera głównego" @@ -4329,69 +4350,69 @@ msgstr[0] "%d minut" msgstr[1] "%d minuty" msgstr[2] "%d minuty" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Brak szczegółowych informacji o tym mechanizmie składowania." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny silnik składowania tego serwera MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s jest dostępny na tym serwerze MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Mechanizm %s został wyłączony dla tego serwera MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Nieznany status tabeli:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Źródło bazy danych '%s' nie zostało znalezione!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Docelowej bazy '%s' nie znaleziono!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Niewłaściwa baza danych:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Niewłaściwa nazwa tabeli:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s ma nazwę zmienioną na %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Nie można zapisać preferencji UI tabeli!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4400,7 +4421,7 @@ msgstr "" "Nie udało się czyszczenie preferencji tabeli UI (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4410,19 +4431,19 @@ msgstr "" "Nie można zapisać \"%s\" własności UI. Wprowadzone zmiany nie będą trwałe po " "odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nazwą podstawowego klucza musi być… PRIMARY!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Nie można zmienić nazwy indeksu na PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Brak zdefiniowanych części indeksu!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4748,7 +4769,7 @@ msgid "Date and time" msgstr "Data i czas" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Ciąg" @@ -4763,70 +4784,70 @@ msgstr "Przestrzenny" msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dane statyczne" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d błędów zostało znalezionych podczas analizy." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez kodu PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Wyślij zapytanie" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Utwórz kod PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Odśwież" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilowanie" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4834,63 +4855,63 @@ msgid "Edit inline" msgstr "Edytuj indeks" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Nie" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Brakuje parametru:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Przejście do bazy danych \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Brak plików do załadowania!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Opróżnij" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Wykonaj" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Użytkownicy" @@ -4904,7 +4925,7 @@ msgstr "na minutę" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "na godzinę" @@ -4912,12 +4933,12 @@ msgstr "na godzinę" msgid "per day" msgstr "na dzień" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Szukaj:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4925,7 +4946,7 @@ msgstr "Szukaj:" msgid "Description" msgstr "Opis" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Użyj tej wartości" @@ -4964,22 +4985,22 @@ msgstr "TAK" msgid "NO" msgstr "NIE" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nazwa" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Długość/Wartości" @@ -4988,7 +5009,7 @@ msgstr "Długość/Wartości" msgid "Attribute" msgstr "Atrybut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "Auto Inkrementacja" @@ -5005,11 +5026,11 @@ msgstr "Dodaj kolumnę" msgid "Select a column." msgstr "Wybierz kolumnę." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Dodaj nową kolumnę" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5017,7 +5038,7 @@ msgstr "Dodaj nową kolumnę" msgid "Attributes" msgstr "Atrybuty" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5027,27 +5048,27 @@ msgstr "" "jest niezgodna z phpMyAdminem i może spowodować uszkodzenie niektórych " "danych!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Niewłaściwy indeks serwera: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Serwer %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5058,20 +5079,20 @@ msgstr "" "pliki konfiguracyjne [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin obecnie używa domyślnej strefy czasowej serwera." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Należy uaktualnić do %s %s lub nowszej." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Błąd: Token niedopasowany" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Próba nadpisania GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "można wykorzystać" @@ -5719,7 +5740,7 @@ msgid "Compress on the fly" msgstr "Kompresuj w locie" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Plik konfiguracyjny" @@ -5833,13 +5854,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Maksymalny czas wykonania" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Dodaj oświadczenie %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Zapisz jako plik" @@ -5849,7 +5870,7 @@ msgstr "Kodowanie znaków pliku" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -5976,7 +5997,7 @@ msgid "Save on server" msgstr "Zapisz na serwerze" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Nadpisz istniejące pliki" @@ -5989,7 +6010,7 @@ msgid "Remember file name template" msgstr "Zapamiętaj nazwę pliku szablonu" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartość AUTO_INCREMENT" @@ -5998,7 +6019,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Użyj cudzysłowów z nazwami tabel i kolumn" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" @@ -6030,7 +6051,7 @@ msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -6207,7 +6228,7 @@ msgid "Customize the navigation tree." msgstr "Dostosuj drzewo nawigacji." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serwery" @@ -7199,7 +7220,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Metoda uwierzytelniania w użyciu." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Typ uwierzytelniania" @@ -8101,7 +8122,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Włącz zakładkę deweloperską w ustawieniach" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Sprawdź, czy jest nowsza wersja" @@ -8109,10 +8130,10 @@ msgstr "Sprawdź, czy jest nowsza wersja" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Włącza sprawdzanie, czy są aktualizacje na stronie głównej phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Sprawdzenie wersji" @@ -8261,25 +8282,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Otwórz dokument tekstowy" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Lista ulubionych jest pełna!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s została opróżniona." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Widok %s został usunięty" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8294,12 +8315,12 @@ msgid "Position" msgstr "Pozycja" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Typ zdarzenia" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID serwera" @@ -8308,7 +8329,7 @@ msgid "Original position" msgstr "Oryginalna pozycja" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informacje" @@ -8322,16 +8343,16 @@ msgstr "Ucinaj wyświetlane zapytania" msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Brak baz danych" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -8339,26 +8360,26 @@ msgstr[0] "%1$d baza danych została pomyślnie usunięta." msgstr[1] "%1$d bazy danych zostały pomyślnie usunięte." msgstr[2] "%1$d baz danych zostało pomyślnie usuniętych." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rekordy" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Ogółem" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Nadmiar" @@ -8387,33 +8408,33 @@ msgstr "" msgid "Enable statistics" msgstr "Włącz statystyki" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Zmienne i ustawienia serwera" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Błędne ustawienie zmienne" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Brak zapytania SQL został ustawiony, aby pobrać dane." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Kolumny liczbowe nie występujących w tabeli wykreślić." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Brak danych do wyświetlenia" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabela %1$s została pomyślnie zmodyfikowana." @@ -8468,7 +8489,7 @@ msgstr "Kolumny przeniesiono pomyślnie." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Błąd zapytania" @@ -8486,12 +8507,12 @@ msgstr "Zmień" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8512,13 +8533,13 @@ msgstr "Pełny tekst" msgid "Distinct values" msgstr "Różne wartości" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez zmian" @@ -8542,132 +8563,136 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Brak hasła" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Hasło:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Powtórz:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Sposób kodowania haseł:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Eksport bazy danych z bieżącego serwera" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Eksportowanie tabeli z bazy \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Eksportuj wiersze z tabeli \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Rodzaj eksportu" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Szablon nazwy pliku:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Nazwa tabeli" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Utwórz" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Szablon nazwy pliku:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "Szybkość dysku tymczasowego" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Zaktualizowana" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "Wybierz tabele" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Metoda eksportu" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Szybko - wyświetlane są tylko minimalne opcje" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Dostosuj - wyświetli wszystkie możliwe opcje" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Bazy danych" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabele:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Specyficzne opcje formatu:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8675,52 +8700,52 @@ msgstr "" "Przewiń do wypełnienia w opcji dla wybranego formatu i ignorowanie opcji dla " "innych formatów." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Kodowanie konwersji:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Wiersze:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Eksportuj wybrane wiersze" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Wiersz rozpoczynający się:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Zrzuć wszystkie wiersze" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Wyjście:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Zapisz na serwerze w katalogu %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Szablon nazwy pliku:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ zostanie zastąpione aktualną nazwą serwera" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ zostanie zastąpione nazwą wybranej bazy danych" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8732,116 +8757,116 @@ msgstr "" "się: %3$s. Inne teksty będą przechowywane tak, jak zostaną wstawione. Zobacz " "szczegóły w %4$sFAQ%5$s." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "użyj tego dla przyszłego eksportu" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Kodowanie znaków pliku:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Kompresja:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "\".zip\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "\".gzip\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Pokaż wynik jako tekst" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Eksportuj widoki jako tabele" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Eksport nagłówków tabeli" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Zapisz wynik do pliku" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Pomiń tabele większe niż" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Wybierz tabele" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Wybierz tabele" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "Nazwa bazy danych" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "Nowa nazwa strony: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name." msgid "Old column name" msgstr "Skopiuj nazwę kolumny." -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name." msgid "New column name" msgstr "Skopiuj nazwę kolumny." -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić instalację!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s z %2$s gałęzi" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "brak gałęzi" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 #, fuzzy #| msgid "Git revision" msgid "Git revision:" msgstr "Zmiany Git" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "miejsce na %1$s dla %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "autorem %1$s dla %2$s" @@ -9311,13 +9336,13 @@ msgstr "" "Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie " "domowej PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Za mało miejsca na zapis pliku %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9325,37 +9350,37 @@ msgstr "" "Plik %s już istnieje na serwerze. Zmień nazwę pliku lub zaznacz opcję " "nadpisywania plików." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serwer WWW nie ma uprawnień do zapisania tego pliku %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero wierszy)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Zobacz zawartość struktury klikając jej nazwę." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9363,42 +9388,42 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\"" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Idź do bazy danych: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Edytuj ustawienia dla %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Przejdź do tabeli: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Przejdź do widoku: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9409,80 +9434,81 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Utwórz indeks na kolumnach %s" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Ukryj" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcja" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Ze względu na jego długość,
kolumna ta może nie być edytowalne" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binarne - nie do edycji" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Lub" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "katalog przesyłania serwera web:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edycja/Wstaw" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Kontynuuj wstawianie %s wierszy" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "i potem" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Wstaw jako nowy wiersz" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Wstaw jko nowy wiersz i ignoruj błędy" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Pokaż wstawiane zapytanie" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Wstaw nowy wiersz" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Edytuj następny wiersz" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9492,8 +9518,8 @@ msgstr "" "Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do " "poruszania się w dowolnym miejscu" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9504,33 +9530,33 @@ msgstr "" msgid "Value" msgstr "Wartość" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 #, fuzzy #| msgid "Success." msgid "Success!" msgstr "Sukces." #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Tylko struktura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktura i dane" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Tylko dane" @@ -9541,14 +9567,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Dodaj wartość AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Dodaj ograniczenia" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9599,8 +9625,8 @@ msgstr "Procedury:" msgid "Views:" msgstr "Widoki:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Pokaż" @@ -9648,19 +9674,19 @@ msgstr[0] "Znaleziono %s inny wynik" msgstr[1] "Znaleziono %s inne wyniki" msgstr[2] "Znaleziono %s innych wyników" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Clear Fast Filter" msgid "Clear fast filter" msgstr "Wyczyść szybki filtr" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 #, fuzzy #| msgid "Collapse" msgid "Collapse all" @@ -9678,7 +9704,7 @@ msgstr "Nieprawidłowa nazwa klasy \"%1$s\", użyj domyślnych z \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Nie można dodać kolumn!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Rozwiń/Zwiń" @@ -9697,7 +9723,7 @@ msgstr "Nowy" msgid "Database operations" msgstr "Operacje na bazie danych" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Pokaż ukryte elementy" @@ -9796,13 +9822,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Wybierz dwie kolumny" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Move column" msgid "No such column" @@ -10058,8 +10084,8 @@ msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10105,183 +10131,183 @@ msgstr "(pojedynczo)" msgid "Move table to (database.table)" msgstr "Przenieś tabelę do (bazadanych.tabela)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Zmień nazwę tabeli na" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentarze tabeli" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opcje tabeli" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Mechanizm składowania" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopiuj tabelę do (bazadanych.tabela)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Przełącz na przekopiowaną tabelę" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Zarządzanie tabelą" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizuj tabelę" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Sprawdź tabelę" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Sprawdź tabelę" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentuj tabelę" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s została przeładowana." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Napraw tabelę" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Usuń dane lub tabelę" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Opróżnij tabelę (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Usuń tabelę (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizuj" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Sprawdź" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optymalizuj" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Przebuduj" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Napraw" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Zwiń" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Zarządzanie partycjami" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partycja %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Usuń partycjonowanie" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Nie można przenieść tabeli do niej samej!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Nie można przekopiować tabeli do niej samej!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s została przeniesiona do %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s została przekopiowana do %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s została przeniesiona do %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s została przekopiowana do %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Nazwa tabeli jest pusta!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Ten format nie ma żadnych opcji" @@ -10310,18 +10336,18 @@ msgstr "Pokaż kolor" msgid "Only show keys" msgstr "Pokaż tylko klucze" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Nie udało się nawiązać połączenia: błędne ustawienia." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Witamy w %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10330,7 +10356,7 @@ msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Możesz " "użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10342,7 +10368,7 @@ msgstr "" "pliku config.inc.php i upewnić się, że odpowiadają one informacjom danym " "przez administratora serwera MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Ponów podłączenie" @@ -10367,15 +10393,15 @@ msgstr "Użytkownik:" msgid "Server Choice:" msgstr "Wybór serwera:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Wprowadzona captcha jest niewłaściwa, spróbuj ponownie!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Proszę podać poprawną captcha!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10438,7 +10464,7 @@ msgstr "Opcje eksportu danych" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" @@ -10447,7 +10473,7 @@ msgstr "Zrzut danych tabeli" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Zdarzenie" @@ -10455,8 +10481,8 @@ msgstr "Zdarzenie" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Określenie" @@ -10544,7 +10570,7 @@ msgstr "Umieść nazwy kolumn w pierwszym wierszu" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -11109,7 +11135,7 @@ msgstr "Spis treści" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Dodatkowo" @@ -11536,18 +11562,18 @@ msgstr "" "Zaloguj się ponownie do phpMyAdmin, żeby załadować zmieniony plik " "konfiguracyjny." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "brak opisu" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11555,41 +11581,41 @@ msgid "" "configuration storage there." msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replikacja serwera głównego" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Ten serwer jest skonfigurowany jako główny w procesie replikacji." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Pokaż połączone serwery podrzędne" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Dodaj użytkownika replikacji na serwerze podrzędnym" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Konfiguracja serwera głównego" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11610,19 +11636,19 @@ msgstr "" "wybrać do ignorowania wszystkie bazy danych domyślnie i pozwala jedynie na " "niektóre bazy danych które mają być replikowane. Wybierz tryb:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replikuj wszystkie bazy danych; Pomiń:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Pomiń wszystkie bazy danych; Replikuj:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Wybierz bazy danych:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11630,7 +11656,7 @@ msgstr "" "Teraz dodaj następujące wiersze na końcu pliku my.cnf a następnie zrestartuj " "serwer MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11639,72 +11665,72 @@ msgstr "" "Gdy zrestartowałeś już serwer MySQL kliknij przycisk Go. Powinieneś zobaczyć " "komunikat informujący, że serwer jest skonfigurowany jako główny." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replikacja serwera podrzędnego" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Niezabezpieczone połączenie" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Wątek SQL serwera podrzędnego nie uruchomiony!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Wątek IO serwera podrzędnego nie uruchomiony!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Serwer jest skonfigurowany jako podrzędny w procesie replikacji. Czy chesz:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Zobacz status tabeli serwera podrzędnego" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kontrola serwera podrzędnego:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Pełny start" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Pełne zatrzymanie" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Zrestartuj serwer podrzędny" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Tylko początek wątku SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Tylko zatrzymaj wątek SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Tylko początek IO wątku" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Zatrzymaj tylko wątek IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Zmień lub skonfiguruj ponownie serwer główny" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11713,27 +11739,27 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Błąd zarządzania:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Włącznie \"omijania błędów\" może powodować rozsynchronizowanie serwera " "master i slave!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Pomiń bieżący błąd" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Pomiń bieżący błąd" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11742,11 +11768,11 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako główny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Konfiguracja serwera podrzędnego" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11754,53 +11780,53 @@ msgstr "" "Upewnij się, że w pliku konfiguracyjnym (my.conf) jest wprowadzony unikalny " "ID serwera. Jeśli tak nie jest, dodaj następującą linię w sekcji [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nazwa użytkownika:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nazwa użytkownika" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Hasło" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Stan serwera głównego" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Stan serwera podrzędnego" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Zmienna" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11808,39 +11834,39 @@ msgstr "" "Tylko serwery podrzędne uruchomione z opcją --report-host=host_name są " "widoczne na tej liście." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Dowolny host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Host lokalny" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ten host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Dowolny użytkownik" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Użyj pola tekstowego:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11848,92 +11874,92 @@ msgstr "" "Kiedy tabela Hosta jest używana, to pole jest ignorowane i wartość zapisana " "w tabeli hostów jest używana zamiast." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ponownie" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Wygeneruj hasło" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Stan replikacji" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Replikacja serwera głównego" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Wykres generowany pomyślnie." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Replikacja serwera głównego" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Stan replikacji" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Replikacja serwera głównego" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Sukces." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Błąd." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Nieznany błąd" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Nie można połączyć się z serwerem głównym %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nie można odczytać pozycji dziennika głównego. Możliwy problem uprawnień na " "serwerze głównym." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Nie można zmienić serwera głównego!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "Serwer główny zmieniony pomyślnie na %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11954,7 +11980,7 @@ msgstr "Zdarzenie %1$s zostało zmodyfikowane." msgid "Event %1$s has been created." msgstr "Zdarzenie %1$s zostało utworzone." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Jeden lub więcej błędów miały miejsce podczas przetwarzania żądania:" @@ -11963,77 +11989,77 @@ msgstr "Jeden lub więcej błędów miały miejsce podczas przetwarzania żądan msgid "Edit event" msgstr "Edytuj wydarzenie" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Szczegóły" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nazwa zdarzenia" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Zmień na %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Wykonać w" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Wykonaj co" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Pocz" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Koniec" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Po zakończeniu zachować" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definiujący" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 #, fuzzy #| msgid "The definer must be in the \"username@hostname\" format" msgid "The definer must be in the \"username@hostname\" format!" msgstr "Definer musi znajdować się w formacie \"username@hostname\"" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Musisz podać nazwę zdarzenia!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Musisz podać prawidłową wartość odstępu dla zdarzenia." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Musisz podać poprawny czas realizacji dla tego wydarzenia." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Musisz podać prawidłowy typ zdarzenia." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Należy podać definicję zdarzeń." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Błąd na żądanie przetwarzania:" @@ -12054,7 +12080,7 @@ msgstr "Harmonogram zdarzeń stanu" msgid "The backed up query was:" msgstr "Kopia zapasowa kwerendy została:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Powrót" @@ -12070,97 +12096,97 @@ msgstr "" "procedur może się nie udać![/strong] Proszę skorzystać z nowszego " "rozszerzenia 'mysqli', aby uniknąć problemów." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Edycja procedury" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Nieprawidłowy typ procedury: %s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Przepraszamy, nie udało nam się przywrócić upuszczony procedury." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Kolumna %1$s została zmodyfikowana." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Kolumna %1$s została zmodyfikowana." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nazwa procedury" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametry" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Kierunek" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Dodaj parametr" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Usuń ostatni parametr" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Zwracany typ" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Powrót długości/wartości" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Powrót opcji" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Jest deterministyczna" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Rodzaj zabezpieczenia" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Dostęp SQL do danych" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Musisz podać rutynowe nazwę!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Nieprawidłowy kierunek \"%s\" podany dla parametru." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -12168,24 +12194,24 @@ msgstr "" "Należy podać długość/wartość parametrów procedury typu ENUM, SET, VARCHAR i " "VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Należy podać nazwę i typ dla każdego parametru procedury." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Musisz podać poprawny typ wartości zwracanej do procedury." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Należy podać definicję procedury." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Wynik wykonanych procedur %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12195,13 +12221,13 @@ msgstr[0] "%d wiersz dotyczy ostatniego sprawozdania wewnątrz procedury" msgstr[1] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury" msgstr[2] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Wykonaj procedurę" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parametry procedury" @@ -12223,38 +12249,38 @@ msgstr "Tabela %1$s została utworzona." msgid "Edit trigger" msgstr "Edytuj wyzwalacz" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nazwa wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Czas" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a trigger name" msgid "You must provide a trigger name!" msgstr "Należy podać nazwę wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" msgstr "Należy podać poprawny czas dla wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid event for the trigger" msgid "You must provide a valid event for the trigger!" msgstr "Musisz podać prawidłowe zdarzenie dla wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Musisz podać prawidłową nazwę tabeli!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Musisz podać definicję wyzwalacza." @@ -12381,93 +12407,93 @@ msgstr "Kodowania znaków i metody porównywania" msgid "Databases statistics" msgstr "Statystyki baz danych" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Brak uprawnień." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Pozwól czytać dane." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Pozwól oglądać procesy wszystkich użytkowników" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12477,133 +12503,107 @@ msgstr "" "połączeń; Wymagane dla większość operacji administracyjnych, takich jak " "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Pozwól tworzyć widoki." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Pozwól tworzyć i usuwać wyzwalacze" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Brak" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Grupa użytkownika" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Trwałe połączenia" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Trwałe połączenia" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ograniczenia zasobów" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12611,130 +12611,123 @@ msgstr "" "Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " "które może wykonać użytkownik w ciągu godziny." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " "godziny." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Procedury i funkcje" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Pozwól modyfikować i usuwać procedury składowane." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Pozwól wykonywać procedury składowane." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administracja" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globalne uprawnienia" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Ogólny" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " "uprawnień." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Uwierzytelnianie ciasteczkami" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Zarejestruj się na uwierzytelnianiu" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Uwierzytelnianie ciasteczkami" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Dane użytkownika" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12742,274 +12735,259 @@ msgstr "" "Konto już istnieje o tej samej nazwie użytkownika, ale prawdopodobnie inna " "nazwa hosta." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Nazwa użytkownika:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Nazwa dziennika" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Uwierzytelnienie" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Sposób kodowania haseł:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało zmienione." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Masz cofnięte uprawnienia dla %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Dodaj grupę użytkownika" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza danych dla użytkownika" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Przyznanie wszystkich uprawnień do bazy danych \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Użytkownicy mają dostęp do \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Użytkownik został dodany." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Nadawanie" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Żadnego użytkownika nie znaleziono." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Dowolny" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "ogólny" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "znak wieloznaczny" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Edytuj uprawnienia:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Cofnij" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Edytuj grupę użytkownika" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… pozostaw starego." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… usunąć starą z tabel użytkowników." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… usuń starą z tabel użytkownika i przeładuj uprawnienia później." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Zmień dane użytkownika / Kopiuj użytkownika" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Usuń zaznaczonych użytkowników" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Grupa użytkownika" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Zaktualizowano uprawnienia dla %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia były przeładowane pomyślnie." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Uprawnienia dla %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Użytkownik" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nowy" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Edytuj uprawnienia:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grupa użytkownika" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Omówienie użytkowników" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13022,7 +13000,7 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13041,11 +13019,11 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Dodałeś nowego użytkownika." @@ -13363,12 +13341,12 @@ msgstr "Polecenie" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtry" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13391,12 +13369,12 @@ msgstr "na minutę:" msgid "per second:" msgstr "na sekundę:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Oświadczenia" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13420,7 +13398,7 @@ msgstr "Pokaż niesformatowane wartości" msgid "Related links:" msgstr "Powiązane linki:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13428,11 +13406,11 @@ msgstr "" "Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez " "poprawnego zamykania połączenia." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Liczba nieudanych prób połączenia się z serwerem MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13442,18 +13420,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " "binarnego." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Liczba prób połączenia (udane lub nie) do serwera MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13465,11 +13443,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13477,7 +13455,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13485,7 +13463,7 @@ msgstr "" "Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13493,23 +13471,23 @@ msgstr "" "Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " "której wykonuje się INSERT DELAYED dostaje własny wątek." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Ile razy wiersz został usunięty z tabeli." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13519,7 +13497,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13529,7 +13507,7 @@ msgstr "" "sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " "col1 FROM foo, przy założeniu, że col1 jest zindeksowane." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13537,7 +13515,7 @@ msgstr "" "Liczba żądań odczytu wiersza na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13547,7 +13525,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13555,7 +13533,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13567,7 +13545,7 @@ msgstr "" "sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " "przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13579,35 +13557,35 @@ msgstr "" "nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " "pozwalający skorzystać z istniejących indeksów." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany wiersza w tabeli." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania wiersza do tabeli." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13617,7 +13595,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13630,11 +13608,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Całkowita wielkość puli bufora, w stronach." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13643,7 +13621,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13651,11 +13629,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13663,7 +13641,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13677,51 +13655,51 @@ msgstr "" "wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " "ustawiony właściwie, wartość ta powinna być mała." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13729,35 +13707,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13766,51 +13744,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad wiersza na które aktualnie się czeka." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady wiersza, w milisekundach." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad wierszy, w milisekundach." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę wiersza." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba wierszy usuniętych z tabel InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba wierszy dodanych do tabel InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Liczba wierszy odczytanych z tabel InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba wierszy zmienionych w tabelach InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13819,7 +13797,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13827,7 +13805,7 @@ msgstr "" "Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " "wartości do określenia jaka część bufora indeksów jest w użyciu." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13836,15 +13814,15 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13855,7 +13833,7 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13863,21 +13841,21 @@ msgstr "" "Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego " "odczytu do żądania odczytu (obliczona wartość)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procent fizycznego zapisu w porównaniu do żądania zapisu (obliczona wartość)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13888,7 +13866,7 @@ msgstr "" "kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda " "została opracowana jeszcze." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13896,11 +13874,11 @@ msgstr "" "Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer " "został uruchomiony." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba wierszy oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13908,20 +13886,20 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13931,19 +13909,19 @@ msgstr "" "na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie " "polecenie FLUSH CACHE QUERY." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13956,7 +13934,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13964,19 +13942,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13984,13 +13962,13 @@ msgstr "" "Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " "staranne przyjrzenie się indeksom tabel." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " "złączanej tabeli." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13999,7 +13977,7 @@ msgstr "" "dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14007,16 +13985,16 @@ msgstr "" "Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " "(Nawet duża wartość nie ma kluczowego znaczenia.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14024,26 +14002,26 @@ msgstr "" "Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " "głównego." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14053,23 +14031,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Liczba posortowanych wierszy." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14081,7 +14059,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14091,11 +14069,11 @@ msgstr "" "może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " "oznacza, że powinno się zwiększyć thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14107,11 +14085,11 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Cache wątku trafień (obliczona wartość)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." @@ -14144,41 +14122,41 @@ msgstr "Zakładki poziomie bazy danych" msgid "Table level tabs" msgstr "Komentarze tabeli" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Zobacz użytkowników" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Dodaj grupę użytkownika" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Edycja grupy użytkowników: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Menu skojarzenia grupy użytkownika" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Nazwa grupy:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Wersja serwera" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Serwer bazy danych" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14288,7 +14266,7 @@ msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s" msgid "Run SQL query/queries on table %s" msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Wyczyść" @@ -14376,114 +14354,114 @@ msgstr "Dezaktywuj teraz" msgid "Version" msgstr "Wersja" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Utworzona" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Zaktualizowana" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Utwórz wersję" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Raport śledzenia" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Migawka struktury" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktywny" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "nieaktywny" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Śledzenie instrukcji" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Usuń wiersz śledzenia danych z raportu" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Brak danych" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Pokaż %1$s w okresie od %2$s do %3$s wg użytkownika %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Zrzut SQL (plik do pobrania)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Zrzut SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Ta opcja zamienia twoją tabelę i zawarte w niej dane." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Wykonanie SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Eksportuj jako %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Instrukcja przetwarzania danych" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Instrukcja definiowania danych" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Użytkownik" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Wersja %s migawki (kod SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Brak" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Śledzenie definicją danych pomyślnie usunięte" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Śledzenie manipulacją danymi pomyślnie usunięte" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14491,65 +14469,65 @@ msgstr "" "Możesz wykonać zrzut poprzez tworzenie i używanie tymczasowej bazy danych. " "Upewnij się, że masz uprawnienia do tego." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Ujmij w komentarz te dwa wiersze jeśli ich nie potrzebujesz." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Instrukcje SQL zostały wyeksportowane. Proszę skopiować zrzut lub go wykonać." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Raport śledzenia tabeli `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Śledzenie dla %1$s zostało włączone w wersji %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Śledzenie dla %1$s zostało wyłączone w wersji %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Utwórz wersję %1$s dla %2$s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Wersja %1$s stworzona, śledzenie dla %2$s jest aktywne." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabele nieśledzone" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Śledź tabelę" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabele śledzone" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Ostatnia wersja" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Usuwanie danych śledzących" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Wersje" @@ -14557,7 +14535,7 @@ msgstr "Wersje" msgid "Manage your settings" msgstr "Zarządzaj ustawieniami" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfiguracja została zapamiętana." @@ -14583,7 +14561,7 @@ msgstr "Błąd w archiwum ZIP:" msgid "No files found inside ZIP archive!" msgstr "Archiwum ZIP jest puste!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Błąd krytyczny: Nawigacja może być dostępna tylko za pośrednictwem AJAX" @@ -14592,57 +14570,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Nie można zapisać ustawień, formularz złożony zawiera błędy!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nie można zaimportować konfiguracji" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguracja ma błędy w niektórych polach." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Chcesz zaimportować pozostałe ustawienia?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Zapisane: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importuj z pliku" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Import z pamięci przeglądarki" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Ustawienia będą zaimportowane z pamięci przeglądarki." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Nie masz żadnych zapisanych ustawień!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Ta funkcja nie jest obsługiwana przez twoją przeglądarkę internetową" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Scal z aktualną konfiguracją" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14651,25 +14629,25 @@ msgstr "" "Możesz ustawić więcej ustawień poprzez modyfikację config.inc.php, przez " "użycie %sSkrypt instalacyjny%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Zapisz jako plik" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Zapisz w pamięci przeglądarki" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Ustawienia zostaną zapisane w lokalnej pamięci przeglądarki." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Istniejące ustawienia zostaną nadpisane!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Można przywrócić wszystkie ustawienia i przywrócić je do wartości domyślnych." @@ -14678,31 +14656,31 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Pokaż zrzut (schemat) bazy danych" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Brak uprawnień" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Wątek %s został pomyślnie zabity." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14710,15 +14688,15 @@ msgstr "" "phpMyAdmin nie mógł unicestwić wątku %s. Prawdopodobnie został on już " "zamknięty." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Ściągnij" @@ -14730,11 +14708,11 @@ msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" "Nieprawidłowa formset, sprawdź tablicę $formsets w setup/frames/form.inc.php" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Nie udało się załadować lub zapisać konfiguracji" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14745,7 +14723,7 @@ msgstr "" "[doc@setup_script]dokumentacji (po angielsku)[/doc]. W przeciwnym razie " "będzie tylko mogli pobrać lub wyświetlić to." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14753,24 +14731,27 @@ msgstr "" "Nie używasz bezpiecznego połączenia, wszystkie dane (w tym potencjalnie " "poufne informacje, takie jak hasła) są przekazywane niezaszyfrowane!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Jeżeli serwer WWW jest skonfigurowany do obsługi zapytań HTTPS, należy " "skorzystać z [a@%s]tego linku[/a], aby zabezpieczyć połączenie." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Niezabezpieczone połączenie" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfiguracja zapisana." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14779,61 +14760,61 @@ msgstr "" "phpMyAdmin, skopiuj go do jednego z najwyższego poziomu i usunąć katalog " "config z niego korzystać." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfiguracja zapisana." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Opcje podstawowe" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Pokaż ukryte wiadomości (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Nie ma skonfigurowanych serwerów" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nowy serwer" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Domyślny język" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "pozwalają użytkownikowi wybrać" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- brak -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Domyślny serwer" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Koniec linii" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Pokaż" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Załaduj" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Strona główna phpMyAdmina" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Przekaż darowiznę" @@ -14869,7 +14850,7 @@ msgstr "Ignoruj błędy" msgid "Show form" msgstr "Pokaż formularz" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14877,15 +14858,15 @@ msgstr "" "Odczytanie wersji nie udało się. Być może nie ma połączenia z Internetem lub " "serwer aktualizacji nie odpowiada." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Otrzymano od serwera nieprawidłowy numer wersji" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Nie udało się zanalizować numeru wersji" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14894,7 +14875,7 @@ msgstr "" "Używasz wersji Git, uruchomić [kbd]git pull[/kbd] :-)[br]Najnowsza stabilna " "wersja to %s, wydana na %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Nowsza stabilna wersja nie jest dostępna" @@ -14907,12 +14888,12 @@ msgstr "Nieprawidłowe dane" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Baza danych '%s' nie istnieje." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s już istnieje!" @@ -14925,35 +14906,35 @@ msgstr "Pokaż zrzut (schemat) tabeli" msgid "Invalid table name" msgstr "Niewłaściwa nazwa tabeli" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Nie wybrano żadnego rekordu" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Śledzenie %s jest aktywne." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Nie wybrano żadnego rekordu" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Instrukcje SQL zostały wykonane." @@ -15165,7 +15146,7 @@ msgid "List of available transformations and their options" msgstr "Lista dostępnych transformacji i ich opcje" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15191,7 +15172,7 @@ msgstr "" "lub 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15667,17 +15648,17 @@ msgid "Size" msgstr "Rozmiar" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Data utworzenia" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Ostatnia aktualizacja" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Ostatnie sprawdzanie" @@ -15722,6 +15703,12 @@ msgstr "" "Twoja przeglądarka ma konfigurację phpMyAdmin dla tej domeny. Chcesz " "zaimportować to do bieżącej sesji?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Usuwanie danych śledzących" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database:" @@ -15743,10 +15730,46 @@ msgstr "Dodaj uprawnienia dla następującej tabeli:" msgid "Add privileges on the following table:" msgstr "Dodaj uprawnienia dla następującej tabeli:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nowy" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Brak" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Usuń zaznaczonych użytkowników" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ograniczenia zasobów" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" @@ -15777,7 +15800,7 @@ msgstr "Wtyczka" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "wyłączone" @@ -15943,7 +15966,7 @@ msgstr "Użytkownik:" msgid "Comment:" msgstr "Komentarz:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15983,29 +16006,29 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ograniczenie klucza obcego" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dodaj ograniczenia" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Wewnętrzne relacje" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Wewnętrzne relacje" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Wewnętrzna relacja jest zbędna gdy istnieje odpowiednia relacja FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Wybierz kolumny do wyświetlenia:" @@ -16061,11 +16084,11 @@ msgstr "Oryginalny ciąg" msgid "Replaced string" msgstr "Zastępuje ciąg" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Zastąp" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Dodatkowe kryteria wyszukiwania" @@ -16144,7 +16167,7 @@ msgid "at beginning of table" msgstr "Na początku tabeli" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16180,28 +16203,28 @@ msgstr "Długość wiersza" msgid "Index length" msgstr "Długość wiersza" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "partycjonowanie" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Usuń partycjonowanie" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Edycja widoku" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Wykorzystanie przestrzeni" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektywne" @@ -16230,31 +16253,31 @@ msgstr "Zaproponowanie struktury tabeli" msgid "Track view" msgstr "Śledź tabelę" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Statystyki wiersza" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statycznie" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamiczny" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partycjonowanie" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Długość wiersza" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Rozmiar wiersza" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Następny autoindeks" @@ -16267,50 +16290,50 @@ msgstr "Kolumna %s została upuszczona." msgid "Click to toggle" msgstr "Kliknij, aby przełączać" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Motyw" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Pobierz więcej motywów!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Dostępne typy MIME" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Dostępne transformacje" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Dostępne transformacje" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Przenoszenie cię do następnego kroku…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nie masz wystarczających uprawnień, aby być tu i teraz!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil został zaktualizowany." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16389,7 +16412,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16414,19 +16437,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Żadna baza danych nie został wybrana." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16489,29 +16512,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Zdarzenie %1$s zostało utworzone." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Nazwa szablonu tabeli" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na początku tabeli" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16530,10 +16553,16 @@ msgstr "Nieoczekiwane znaki w linii %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Na początku tabeli" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16580,7 +16609,7 @@ msgstr "" msgid "strict error" msgstr "Zbieraj błędy" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17930,6 +17959,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawiony na 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Uwierzytelnianie ciasteczkami" + #~ msgid "Try to connect without password." #~ msgstr "Spróbuj połączyć się bez hasła." diff --git a/po/pt.po b/po/pt.po index 75a6fe411a..e385ba28ce 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-10-10 19:29+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Portuguese Are you sure you " "want to continue?" @@ -1984,51 +1989,51 @@ msgstr "" "Esta acção pode modificar as definições de algumas colunas\n" "
Tem a certeze que quer continuar?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continuar" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Adicionar chave primária" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Chave primária adicionada." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Continuando para a próxima forma…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "A primeira forma de normalização da tabela '%s' foi concluída." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fim da forma de normalização" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Segunda forma de normalização (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Concluído" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirme as dependências parciais" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Dependênciais parciais selecionadas:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2036,19 +2041,19 @@ msgstr "" "Nota: a, b -> d,f implica que os valores das colunas a e b combinadas podem " "determinar os valores das colunas d e f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Nenhuma dependência parcial selecionada!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Mostrar possíveis dependênciais parciais baseando nos dados da tabela" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Ocultar lista de dependências parciais" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2056,188 +2061,188 @@ msgstr "" "Aguarde uns instantes! Isto poderá demorar alguns segundos dependendo do " "tamanho dos dados e do número de colunas da tabela." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Passo" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "As seguintes ações serão executadas:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP colunas %s da tabela %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Criar a próxima tabela" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Terceira forma de normalização (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 #, fuzzy msgid "Confirm transitive dependencies" msgstr "Confirme as dependências transitivas" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Dependências selecionadas:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nenhuma dependência selecionada!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Guarda" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Esconder critérios de buca" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Mostrar critérios de busca" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Intervalo de pesquisa" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Máximo de colunas:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Mínimo de colunas:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Esconder critérios de localizar e substituir" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Mostrar critérios de localizar e substituir" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Cada ponto representa um registo (linha) de dados." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Colocar o cursor por cima de um ponto irá mostrar a sua legenda." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, selecione uma area do gráfico com o rato." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Clique no botão Reset Zoom para voltar ao estado original." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clique num ponto de dados para ver e possivelmente editar a linha de dados." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "O plano pode ser redimensionado arrastando-o ao longo do canto inferior " "direito." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Seleccione duas colunas" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Seleccione duas colunas diferentes" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Conteúdo do ponto de dados" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copiar" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Ponto" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Segmento de Reta" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Anel Interior" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Anel exterior:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Deseja copiar a chave de encriptação?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Chave de encriptação" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2245,24 +2250,24 @@ msgstr "" "Indica que foram feitas mudanças nesta página; Será pedida confirmação antes " "de abandonar as mudanças" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Seleccione chave de referencia" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Seleccione Foreign Key" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Seleccione a chave primária ou uma chave única!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Escolha a coluna para mostrar" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2270,76 +2275,76 @@ msgstr "" "Não salvou as mudanças no layout. Estas serão perdidas se não as guardar. " "Deseja continuar?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nome da página" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Guardar página" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salvar página como" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir página" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Eliminar página" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sem título" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Selecione uma página para continuar" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Introduza um nome de página válido" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Deseja guardar as alterações à página atual?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Página eliminada com sucesso" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exporta o esquema relacional (schema)" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adiciona uma opção para a coluna \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objecto(s) criado(s)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Submete" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Carregue em ESC para cancelar a edição." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2347,15 +2352,15 @@ msgstr "" "Editou alguns dados e estes não foram salvos. Tem certeza que quer sair " "desta página antes de salvar os seus dados?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Arraste para re-ordenar." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Clica para ordenar resultados por esta coluna." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2365,26 +2370,26 @@ msgstr "" "entre ASC/DESC.
-Ctrl+Click ou Alt+Click (Mac: Shift+Option+Click) para " "remover a coluna da cláusula ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Clique para seleccionar/rejeitar." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Duplo-clique para copiar o nome da coluna." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2393,13 +2398,13 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Por favor introduza uma cadeia hexadecimal válida. Os caracteres válidos são " "0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2407,110 +2412,110 @@ msgstr "" "Deseja realmente ver todas as linhas? Grandes tabelas poderão crashar o " "navegador." -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Segmento original" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "cancelar" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Sucesso" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Largue ficheiros aqui" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Primeiro selecione a base de dados" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Também pode editar a maioria dos valores
com um duplo clique no valor a " "alterar." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Pode editar a maioria dos valores
com um duplo clique no valor a editar." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Ir para link:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Clique com o botão direito do rato para copiar para a área de transferência." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Gerar palavra-passe" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Gerar" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mais" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Ver Painel" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Esconder Painel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Mostrar items de navegação escondidos da árvore." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Conectar com o painel principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Desconectar do painel principal" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "A página requisitada não foi encontrada no histórico, pode ter expirado." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2520,48 +2525,48 @@ msgstr "" "actualização. A nova versão é %s, e foi lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "até à data" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Criar visualização" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Enviar relatório de erro" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Enviar relatório de erro" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Ocorreu um erro fatal de JavaScript. Pretende enviar um relatório de erro?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Alterar as definições dos relatórios" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Ver os detalhes do relatório" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2569,7 +2574,7 @@ msgstr "" "Exportação incompleta devido a um limite de tempo de execução baixo a nível " "do PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2579,62 +2584,62 @@ msgstr "" "alguns dos campos podem ser ignorados, devido à configuração do PHP " "max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Foram detectados alguns erros no servidor!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Por favor olhe para a parte inferior desta janela." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorar tudo" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "As suas definições estão agora a ser submetidas, por favor aguarde." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Executar consulta novamente?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Deseja realmente eliminar este marcador?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Algum erro ocorreu ao carregar a informação de debug do SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s querys executadas %s vezes em %s segundos." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentários da tabela" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Esconder resultados da pesquisa" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2643,385 +2648,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiar a Base de Dados para" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Substituir prefixo da tabela" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Substituir prefixo da tabela" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabela com prefixo" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Ant" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Próx" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hoje" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Janeiro" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Fevereiro" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Março" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Abril" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Junho" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Julho" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Agosto" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Setembro" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Outubro" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembro" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dez" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Segunda" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Sexta" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Domingo" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sáb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "Calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "Nenhum" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hora" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuto" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Segundo" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Usar campo de texto" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Introduza um nome de página válido" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Introduza um número válido!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Introduza um nome de página válido" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Introduza um nome de página válido" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduza um número válido!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Introduza um número válido!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Introduza um comprimento válido!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Introduza um nome de página válido" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Introduza um nome de página válido" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Introduza um nome de página válido" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Introduza um comprimento válido!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Introduza um nome de página válido" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Introduza um nome de página válido" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduza um número válido!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Erro" @@ -3086,20 +3111,20 @@ msgid "Charset" msgstr "Mapa de Caractere" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Agrupamento (Collation)" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binário" @@ -3300,7 +3325,7 @@ msgid "Czech-Slovak" msgstr "Checo-Eslovaco" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "desconhecido" @@ -3354,28 +3379,28 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Sem marcadores" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Consola de Consulta SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Falhou ao ler o arquivo de configuração!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3383,25 +3408,25 @@ msgstr "" "O servidor não está a responder (ou o socket do servidor local está mal " "configurado)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "O servidor não está a responder." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Verifique quais os privilégios que o directório da base de dados tem." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Informações…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Parâmetros em falta:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A ligação como utilizador de controlo definida na sua configuração falhou." @@ -3498,112 +3523,107 @@ msgstr "Ins:" msgid "Del:" msgstr "Elim:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL na base de dados %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Executar Consulta" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Pesquisa de marcadores guardada:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Novo marcador" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Criar marcador" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Atualizar marcador" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Eliminar marcador" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "todas as palavras" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "a frase exacta" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "como expressão regular" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar resultados para \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s resultado em %2$s" msgstr[1] "%1$s resultados em %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Procurar" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Apagar os semelhantes para a %s tabela?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Pesquisar na Base de Dados" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) a pesquisar (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Procurar:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "As palavras são separadas pelo caracter espaço (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Dentro de Tabela(s):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Desseleccionar tudo" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Dentro da coluna:" @@ -3623,30 +3643,30 @@ msgstr "Filtrar registos" msgid "Search this table" msgstr "Pesquisar esta tabela" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Fim" @@ -3655,7 +3675,7 @@ msgstr "Fim" msgid "All" msgstr "Todas" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de registos:" @@ -3664,8 +3684,8 @@ msgstr "Número de registos:" msgid "Sort by key" msgstr "Ordenar por chave" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3687,10 +3707,10 @@ msgstr "Ordenar por chave" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opções" @@ -3732,29 +3752,29 @@ msgstr "Texto bem conhecido" msgid "Well Known Binary" msgstr "Binario bem conhecido" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Registo eliminado." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Termina" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Pode ser aproximado. Veja o [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "A sua consulta SQL foi executada com êxito." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3763,69 +3783,69 @@ msgstr "" "Esta vista tem número de linhas aproximado. Por favor, consulte a " "%sdocumentação%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "A mostrar registos de %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d no total, %2$d na consulta" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "A consulta demorou %01.4f segundos." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Com os seleccionados:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Todos" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link não encontrado!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -3833,7 +3853,7 @@ msgid "None" msgstr "Nenhum" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3841,25 +3861,25 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Excesso de mensagens de erro, algumas não serão mostradas." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Reportar" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Enviar o relatóro automáticamente da próxima vez" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "O ficheiro não era carregável." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O arquivo carregado excede o tamanho definido na directriz " "'upload_max_filesize' no ficheiro php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3867,47 +3887,47 @@ msgstr "" "O ficheiro enviado excede o tamanho definido na directriz 'MAX_FILE_SIZE' " "que foi definido no formulário HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro foi apenas parcialmente carregado." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Falha ao salvar o ficheiro para o disco." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Carregamento do ficheiro parado pela extensão." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Erro desconhecido no upload do ficheiro." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Não foi possível ler o ficheiro!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Erro ao mover o ficheiro carregado, veja [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Ficheiro carregado não pode ser lido." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3917,28 +3937,28 @@ msgstr "" "suporte não se encontra implementado ou está desabilitado na sua " "configuração." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "A executar o Git revisão %1$s do ramo %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Falta informação!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Vista de impressão" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Clique na barra para deslizar para o topo da página" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "O Javascript tem de estar activo a partir deste ponto!" @@ -3947,20 +3967,20 @@ msgid "No index defined!" msgstr "Nenhum indíce definido!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3970,59 +3990,59 @@ msgstr "Índices" msgid "Action" msgstr "Acções" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Único" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pacote" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Quantidade" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Comentário" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "A chave primária foi eliminada." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "O Índice %s foi eliminado." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Elimina" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4030,19 +4050,19 @@ msgid "" msgstr "" "Os Índices %1$s e %2$s parecem ser iguais ou um deles pode ter sido removido." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Número da página:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Língua" @@ -4066,11 +4086,11 @@ msgstr "Servidor" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4089,14 +4109,15 @@ msgid "View" msgstr "Vista" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4105,8 +4126,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4114,45 +4135,45 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Pesquisar" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Insere" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilégios" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operações" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Rastreando" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4168,16 +4189,16 @@ msgstr "Acionadores" msgid "Database seems to be empty!" msgstr "A Base de Dados aparenta estar vazia!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4185,20 +4206,20 @@ msgstr "Rotinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Desenhador" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colunas centrais" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Base de Dados" @@ -4207,53 +4228,53 @@ msgid "User accounts" msgstr "Contas de usuário" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registo binário" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicação" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugins" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d linha afectada." msgstr[1] "%1$d linha(s) afectadas." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d linhas excluída." msgstr[1] "%1$d linhas(s) excluídas." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4301,27 +4322,27 @@ msgstr "Tabelas Favoritas" msgid "Favorites" msgstr "Favoritos" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Por favor dê um nome a este marcador de pesquisa." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Informação insuficiente para guardar a pesquisa de marcadores." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Já existe um registo com o mesmo nome." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Falta informação para poder apagar pesquisa." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Falta informação para carregar pesquisa." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Erro ao carregar a pesquisa." @@ -4383,7 +4404,7 @@ msgstr "Ver tabelas abertas" msgid "Show slave hosts" msgstr "Mostrar anfitriões secundários" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Ver estado do principal" @@ -4437,71 +4458,71 @@ msgid_plural "%d minutes" msgstr[0] "$d minuto" msgstr[1] "%d minutos" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Não está disponível nenhuma informação detalhada para este mecanismo de " "armazenamento." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o storage engine por defeito neste MySQL server." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponível neste servidor MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s está desactivado neste servidor MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor MySQL não suporta o mecanismo de armazenamento %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Estado da tabela desconhecido:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "A base de dados fonte `%s` não foi encontrada!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "A base de dados de destino `%s` não foi encontrada!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Base de dados inválida:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Nome da tabela inválido:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Falha ao mudar o nome da tabela %1$s para %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s renomeada para %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Não foi possível guardar as preferências de interface da tabela!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4510,7 +4531,7 @@ msgstr "" "Falha ao limpar as preferências de interface da tabela (consulte " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4521,19 +4542,19 @@ msgstr "" "serão constantes quando recarregar esta página. Favor verifique se a " "estrutura da tabela foi alterada." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária tem de ser \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Impossível renomear índice para PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nenhuma parte do índice definida!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4860,7 +4881,7 @@ msgid "Date and time" msgstr "Data e hora" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Segmento" @@ -4875,70 +4896,70 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dados estáticos" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, fuzzy, php-format msgid "%d errors were found during analysis." msgstr "%d erros foram encontrados na análise." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sem código PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Executar Consulta" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Criar código PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Actualizar" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Perfil" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -4946,63 +4967,63 @@ msgid "Edit inline" msgstr "Vista de impressão" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parâmetros em falta:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Saltar para a Base de Dados \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir da directoria de upload do servidor %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Não é possivel alcançar a directoria que configurou para fazer upload." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Não existem ficheiros para fazer upload!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Limpa" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Utilizadores" @@ -5016,7 +5037,7 @@ msgstr "por minuto" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "por hora" @@ -5024,12 +5045,12 @@ msgstr "por hora" msgid "per day" msgstr "por dia" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Pesquisar:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5037,7 +5058,7 @@ msgstr "Pesquisar:" msgid "Description" msgstr "Descrição" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Utilizar este valor" @@ -5078,22 +5099,22 @@ msgstr "SIM" msgid "NO" msgstr "NÃO" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nome" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Tamanho/Valores*" @@ -5104,7 +5125,7 @@ msgstr "Tamanho/Valores*" msgid "Attribute" msgstr "Atributos" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5123,11 +5144,11 @@ msgstr "Adicione nova coluna" msgid "Select a column." msgstr "Seleccione duas colunas" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Adicionar nova coluna" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5135,7 +5156,7 @@ msgstr "Adicionar nova coluna" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5144,28 +5165,28 @@ msgstr "" "Activou a função mbstring.func_overload na sua configuração PHP. Esta opção " "é incompatível com o phpMyAdmin e pode causar alguns danos aos dados!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de servidor inválido para o servidor %1$s. Verifique as suas " "configurações." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação definido nas configurações inválido:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5173,20 +5194,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Erro: testemunho inválido ou trocado" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "possível 'exploit'" @@ -5815,7 +5836,7 @@ msgid "Compress on the fly" msgstr "Comprimir na hora" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Ficheiro de configuração" @@ -5928,13 +5949,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Tempo máximo de execução" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Itens" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "envia" @@ -5944,7 +5965,7 @@ msgstr "Configurar o Mapa de Caracteres do ficheiro" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formato" @@ -6069,7 +6090,7 @@ msgid "Save on server" msgstr "Guardar no Servidor" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Substituir o(s) ficheiro(s) existente(s)" @@ -6084,7 +6105,7 @@ msgid "Remember file name template" msgstr "Lembrar Nome do ficheiro modelo" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" @@ -6093,7 +6114,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Encapsular nomes de tabela e coluna com acentos grave" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL modo compatibilidade" @@ -6125,7 +6146,7 @@ msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Adicionar %s" @@ -6306,7 +6327,7 @@ msgid "Customize the navigation tree." msgstr "Personalizar o painel de navegação" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servidores" @@ -7265,7 +7286,7 @@ msgstr "Domínio HTTP" msgid "Authentication method to use." msgstr "Método de autenticação a utilizar." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipo de autenticação" @@ -8085,7 +8106,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Activar o separador Programador nas definições" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Verificar se é a última versão" @@ -8094,10 +8115,10 @@ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Possibilita a verificação da última versão na página inicial do phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Verificação da versão" @@ -8248,25 +8269,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Lista de Favoritos está cheia!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "A tabela %s foi limpa." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "A Vista %s foi eliminada" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8281,13 +8302,13 @@ msgid "Position" msgstr "Posição" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 #, fuzzy msgid "Event type" msgstr "Tipo de Exportação" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 #, fuzzy msgid "Server ID" msgstr "Servidor" @@ -8297,7 +8318,7 @@ msgid "Original position" msgstr "Posição original" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 #, fuzzy msgid "Information" msgstr "Informação de Login " @@ -8312,16 +8333,16 @@ msgstr "Truncar as consultas mostrados" msgid "Show Full Queries" msgstr "Mostrar consultas completas" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Sem bases de dados" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "A base de dados %1$s foi criada." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8329,26 +8350,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "As Bases de Dados %s foram apagadas com sucesso." msgstr[1] "As Bases de Dados %s foram apagadas com sucesso." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Registos" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Suspenso" @@ -8377,35 +8398,35 @@ msgstr "" msgid "Enable statistics" msgstr "Activar as estatísticas" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Variáveis do servidor e configurações" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "Dados não encontrados." -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." @@ -8458,7 +8479,7 @@ msgstr "Os utilizadores selecionado foram apagados com sucesso." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8477,12 +8498,12 @@ msgstr "Muda" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Índice" @@ -8505,15 +8526,15 @@ msgstr "Texto Completo" msgid "Distinct values" msgstr "Valor de sessão" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" "A extensão %s não foi encontrada. Por favor verifique a sua configuração do " "PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sem alterações" @@ -8539,135 +8560,139 @@ msgstr "" "instalação!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Sem palavra-passe" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Palavra-passe:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Confirma:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hash da palavra-passe:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportando as bases de dados do servidor actual" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportando as tabelas da base de dados \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportando as linhas da tabela \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Tipo de Exportação" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Nome do ficheiro modelo:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "New page name: " msgid "Template name" msgstr "Nome da nova página: " -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Criar" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Nome do ficheiro modelo:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s tabela" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Actualizado" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Seleccionar Tabelas" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Metodo de Exportação" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rápido - exibe o mínimo de opções" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Personalizado - exibe todas as opções possíveis" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Base de Dados" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tabelas" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formato:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opções específicas do formato:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8675,52 +8700,52 @@ msgstr "" "Desloque-se para baixo para preencher as opções do formato seleccionado e " "ignore as opções para outros formatos." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Conversão de codificação:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Linhas:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Eliminar alguma(s) linha(s)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Começar na linha:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Eliminar todas as linhas" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Saída:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Gravar no servidor na directoria %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Nome do ficheiro modelo:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ será o nome do servidor" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ será o nome da base de dados" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ será o nome da tabela" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8728,116 +8753,116 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "utilize isto para futuras exportações" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compressão:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zipado" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzipado" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Ver resultado como texto" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Exportar visualizações como tabelas" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horizontal (cabeçalhos rodados)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Guarda resultado para um ficheiro" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Ignorar tabelas maiores que" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Seleccionar Tabelas" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Seleccionar Tabelas" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "Nome da base de dados" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "Nome da nova página: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name." msgid "Old column name" msgstr "Copiar nome da coluna." -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name." msgid "New column name" msgstr "Copiar nome da coluna." -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Não foi possível carregar os plugins de exportação, por favor verifique a " "sua instalação!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s do %2$s ramo" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "sem ramos" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "revisão Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "Submetido em %1$s por %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "Autoria em %1$s por %2$s" @@ -9269,13 +9294,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Não existe espaço suficiente para gravar o ficheiro %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9283,75 +9308,75 @@ msgstr "" "O ficheiro %s já existe no servidor, mude o nome do ficheiro ou verifique a " "opção de substituição (re-escrita)." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissões para gravar o ficheiro %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente a estrutura" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9363,89 +9388,90 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Criar um índice com %s coluna(s)" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Esconder" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funções" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Devido ao seu tamanho,
este campo pode não ser editável " -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binário - não editar" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ou" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Directoria no servidor web para fazer upload" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Editar próxima coluna" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9456,32 +9482,32 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Somente a estrutura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Apenas dados" @@ -9492,14 +9518,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Adicionar restrições (constraints)" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9558,8 +9584,8 @@ msgstr "Processos" msgid "Views:" msgstr "Vista" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Mostrar" @@ -9606,19 +9632,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "envia" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9634,7 +9660,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Impossível adicionar colunas!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9657,7 +9683,7 @@ msgstr "" msgid "Database operations" msgstr "Opções de exportação da Base de Dados" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9761,13 +9787,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Seleccione duas colunas" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10019,8 +10045,8 @@ msgid "Rename database to" msgstr "Alterar o nome da base de dados para" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10068,83 +10094,83 @@ msgstr "(A refazer após inserir/eliminar)" msgid "Move table to (database.table)" msgstr "Move tabela para (base de dados.tabela)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Renomeia a tabela para" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Comentários da tabela" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opções da tabela" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Motor de armazenamento" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copia tabela para (base-de-dados.tabela)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Manutenção da tabela" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizar tabela" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "A tabela %s foi fechada." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Fecha a tabela (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizar tabela" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparar tabela" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10152,107 +10178,107 @@ msgstr "Reparar tabela" msgid "Delete data or table" msgstr "Extraindo dados da tabela" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Sem bases de dados" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "Checo" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Reparar tabela" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Ocultar" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Manutenção da tabela" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Não é posivel mover a tabela para o mesmo!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Não é possivel copiar a tabela para o mesmo!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "A tabela %s foi movida para %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "A tabela %s foi movida para %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10284,18 +10310,18 @@ msgstr "Mostrar côr" msgid "Only show keys" msgstr "Mostrar apenas chaves" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Não é possível realizar a ligação: configurações inválidas." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Bemvindo ao %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10304,7 +10330,7 @@ msgstr "" "Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" "%2$s pode ser utilizado para criar um." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10316,7 +10342,7 @@ msgstr "" "inc.php e assegure-se que correspondem à informação fornecida pelo " "administrador do MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10343,15 +10369,15 @@ msgstr "Utilizador :" msgid "Server Choice:" msgstr "Escolha do Servidor" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10427,7 +10453,7 @@ msgstr "Opções de exportação da Base de Dados" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" @@ -10436,7 +10462,7 @@ msgstr "Extraindo dados da tabela" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "Enviado" @@ -10445,8 +10471,8 @@ msgstr "Enviado" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10550,7 +10576,7 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11117,7 +11143,7 @@ msgstr "Índice" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11477,18 +11503,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "sem Descrição" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11496,41 +11522,41 @@ msgid "" "configuration storage there." msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11539,316 +11565,316 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Por favor seleccione uma base de dados" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "Ligações" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Texto Completo" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 #, fuzzy msgid "Full stop" msgstr "Texto Completo" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Somente estrutura" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Somente estrutura" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Nome do Utilizador" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nome do Utilizador" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Palavra-passe" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Ordenação" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variável" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Máquina" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Qualquer utilizador" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Usar campo de texto" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Confirma" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Gerar palavra-passe" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy msgid "Replication started successfully." msgstr "Relações" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "O privilégios foram recarregados com sucesso." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy msgid "Replication resetting successfully." msgstr "Relações" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Erro" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "O privilégios foram recarregados com sucesso." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11870,7 +11896,7 @@ msgstr "A tabela %s foi eliminada" msgid "Event %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11880,82 +11906,82 @@ msgstr "" msgid "Edit event" msgstr "Enviado" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy msgid "Event name" msgstr "Tipo de Exportação" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Muda" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Estado" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Fim" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Instrucções de inserção completas" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in Processing Request" @@ -11978,7 +12004,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -11992,146 +12018,146 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nome dos Campos" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Criação" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Remover a Base de Dados" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamanho/Valores*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Tipo de Query" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "Permite criar novas tabelas." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12155,36 +12181,36 @@ msgstr "A tabela %s foi eliminada" msgid "Edit trigger" msgstr "Acrescenta um utilizador" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "User name" msgid "Trigger name" msgstr "Nome do Utilizador" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12323,512 +12349,477 @@ msgstr "" msgid "Databases statistics" msgstr "Estatísticas das bases de dados" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Sem privilégios." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Inclui todos os privilégios excepto GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permite ler dados." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permite alterar dados." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permite apagar dados." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar ou exportar dados de e para ficheiros." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Permite definir eventos para o organizador de eventos" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Permite criar e apagar indexes." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite criar, apagar e mudar o nome das contas dos utilizadores." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nenhum" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Ligações persistentes" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Ligações persistentes" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Limites do recurso" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rotinas" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "Permite criar e apagar indexes." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy msgid "Allows executing this routine." msgstr "Permite criar novas tabelas." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: os nomes dos privilégios do MySQL são em Inglês" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administração" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilégios Globais" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permite apagar tabelas." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adicionar utilizadores e privilégios sem recarregar a tabela de " "privilégios." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autenticação por cookie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autenticação Signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Autenticação por cookie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Informação de Login" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Nome do Utilizador" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Constraints for table" msgid "Host name" msgstr "Limitadores para a tabela" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Mantendo a palavra-passe" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autenticação" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hash da palavra-passe:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anulou os privilégios para %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Adicionar utilizador" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Opções de exportação da Base de Dados" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Verificar Privilégios para a Base de Dados \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizadores que tem acesso a \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "A Vista %s foi eliminada" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Todos" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Anula" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editar próxima coluna" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo das tabelas do utilizador." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12836,120 +12827,105 @@ msgstr "" "… apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mudar a informação de login / Copiar Utilizador" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Criar um novo utilizador com os mesmo privilégios e …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilégios específicos da Coluna" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Remover utilizadores seleccionados" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilégios" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Utilizador" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Utilizadores" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12962,7 +12938,7 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12981,11 +12957,11 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." @@ -13281,13 +13257,13 @@ msgstr "Comando" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Qtd Campos" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "Mostra tabelas" @@ -13315,12 +13291,12 @@ msgstr "por minuto" msgid "per second:" msgstr "por segundo" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Itens" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13350,34 +13326,34 @@ msgstr "Mostra tabelas" msgid "Related links:" msgstr "Relações" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13385,78 +13361,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13464,7 +13440,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13472,42 +13448,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13515,33 +13491,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13550,243 +13526,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas à cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13794,99 +13770,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13894,18 +13870,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13913,13 +13889,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Detecção de Alterações está desactivada." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13956,48 +13932,48 @@ msgstr "Servidor de base de dados" msgid "Table level tabs" msgstr "Comentários da tabela" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "Adicionar utilizador" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Adicionar utilizador" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Sem privilégios." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nome dos Campos" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versão do servidor" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Servidor de base de dados" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14123,7 +14099,7 @@ msgstr "Executa comando(s) SQL na base de dados %s" msgid "Run SQL query/queries on table %s" msgstr "Executa comando(s) SQL na base de dados %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Limpar" @@ -14216,105 +14192,105 @@ msgstr "" msgid "Version" msgstr "versão do PHP" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Criado" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Actualizado" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Criar versão" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Relatório do acompanhamento" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Snapshot da estrutura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "activo" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "inactivo" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Apagar dados de tracking para esta tabela" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Sem bases de dados" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de Exportação" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Dados" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nome de utilizador" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14322,78 +14298,78 @@ msgctxt "None for default" msgid "None" msgstr "Nenhum" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Detecção de Alterações está activa." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Detecção de Alterações está activa." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version" msgid "Version %1$s of %2$s was deleted." msgstr "Criar versão" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabelas sem acompanhamento" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Acompanhar tabela" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabelas em tracking" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Última versão" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Excluir rastreamento" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versões" @@ -14403,7 +14379,7 @@ msgstr "Versões" msgid "Manage your settings" msgstr "Características gerais de Relação" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14429,7 +14405,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14441,85 +14417,85 @@ msgstr "" "Não foi possível guardar as configurações, o formulário submetido contém " "erros" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Não foi possível importar a configuração" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importar" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importar do armazenamento do seu browser" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "As configurações vão ser importadas do armazenamento local do seu browser." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Não dispõe de configurações guardadas!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Esta funcionalidade não é suportada pelo seu browser" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Combinar com a configuração atual" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "envia" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Gravar para o armazenamento do seu browser" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "As configurações serão gravadas no armazenamento local do seu browser." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "As configurações existentes serão sobre-escritas!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Pode eliminar todas as definições e restaurá-las para os valores padrão." @@ -14529,45 +14505,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Sem Privilégios" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14575,103 +14551,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Modificações foram guardadas" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Modificações foram guardadas" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Local" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "Documentação do phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 #, fuzzy msgid "Donate" msgstr "Dados" @@ -14710,28 +14685,28 @@ msgstr "" msgid "Show form" msgstr "Mostrar côr" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14746,12 +14721,12 @@ msgstr "Sem bases de dados" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "O utilizador %s já existe!" @@ -14764,36 +14739,36 @@ msgstr "Ver o esquema da tabela" msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Nenhum registo(linha) seleccionado" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "Detecção de Alterações está activa." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Nenhum registo(linha) seleccionado" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15017,7 +14992,7 @@ msgid "List of available transformations and their options" msgstr "Transformações disponíveis" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15043,7 +15018,7 @@ msgstr "" "exemplo '\\\\xyz' ou 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15556,17 +15531,17 @@ msgid "Size" msgstr "Tamanho" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Criação" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Última actualização" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Última Verificação" @@ -15601,6 +15576,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Excluir rastreamento" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15623,10 +15604,48 @@ msgstr "Todos privilégios na tabela seguinte" msgid "Add privileges on the following table:" msgstr "Todos privilégios na tabela seguinte" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nenhum" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Remover utilizadores seleccionados" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Limites do recurso" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15657,7 +15676,7 @@ msgstr "Plugin" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15845,7 +15864,7 @@ msgstr "Utilizador:" msgid "Comment:" msgstr "Comentário" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15885,30 +15904,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Adicionar restrições (constraints)" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15967,11 +15986,11 @@ msgstr "Segmento original" msgid "Replaced string" msgstr "Segmento de substituição" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Substituir" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Critérios de pesquisa adicionais" @@ -16050,7 +16069,7 @@ msgid "at beginning of table" msgstr "No Início da Tabela" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16080,30 +16099,30 @@ msgstr "Comprimento de linha" msgid "Index length" msgstr "Comprimento de linha" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Posição" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Print view" msgid "Edit partitioning" msgstr "Vista de impressão" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Vista de impressão" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Espaço ocupado" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Em uso" @@ -16132,34 +16151,34 @@ msgstr "Propor uma estrutura de tabela" msgid "Track view" msgstr "Acompanhar vista" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Estatísticas dos registos" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinâmico" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 #, fuzzy msgid "Row length" msgstr "Comprimento de linha" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Tamanho dos registos" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16173,53 +16192,53 @@ msgstr "A tabela %s foi eliminada" msgid "Click to toggle" msgstr "Clique para alternar" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Obter mais temas!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 #, fuzzy msgid "Available MIME types" msgstr "MIME-types disponíveis" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Transformações disponíveis" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Transformações disponíveis" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Descrição" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Continuando para a próxima forma…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "O prefil foi actualizado." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16297,7 +16316,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16322,19 +16341,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Nenhuma tabela selecionada." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16394,28 +16413,28 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "A tabela %s foi eliminada" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No Início da Tabela" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16434,10 +16453,16 @@ msgstr "Caracteres inesperados na linha %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "No Início da Tabela" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16482,7 +16507,7 @@ msgstr "" msgid "strict error" msgstr "Reunir erros" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17724,6 +17749,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert é definido como 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autenticação por cookie" + #~ msgid "Try to connect without password." #~ msgstr "Tentar ligar sem palavra-passe." diff --git a/po/pt_BR.po b/po/pt_BR.po index 033ebd2339..c0ff6b1d2b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:30+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Portuguese (Brazil) " -"\n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "O arquivo %s não está disponível neste sistema, por favor, visite %s 2 para " "maiores informações." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "A lista central de colunas para o banco de dados atual está vazia." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Clique para organizar." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Mostrando registros %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Comentário do banco de dados" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Comentários de tabela:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Comentários de tabela:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Comentários de tabela:" msgid "Column" msgstr "Coluna" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Coluna" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Coluna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Tipo" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nulo" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Nulo" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Padrão" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Padrão" msgid "Links to" msgstr "Links para" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primária" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Primária" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Primária" msgid "No" msgstr "Não" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "Não" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Sim" msgid "View dump (schema) of database" msgstr "Ver despejo (estrutura) do banco de dados" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no banco de dados." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Tabelas" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,27 +283,27 @@ msgstr "Estrutura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Dados" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Selecionar todos" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "O nome do banco de dados está em branco!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "O banco de dados %1$s foi renomeado para %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "O banco de dados %1$s foi copiado para %2$s." @@ -316,27 +316,27 @@ msgstr "" "A configuração de armazenamento do phpMyAdmin foi desativada. %sSaiba mais " "aqui%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Você deve escolher pelo menos uma coluna para exibir!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Alterar para %sconstrutor visual%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Acesso negado!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Dados de rastreamento apagados com sucesso." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -344,11 +344,11 @@ msgstr "" "Versão %1$s foi criada para as tabelas selecionadas, rastreamento ativo para " "eles." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Nenhum banco de dados selecionado." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Registro de log do banco de dados" @@ -390,131 +390,131 @@ msgstr "Tipo incorreto!" msgid "Bad parameters!" msgstr "Parâmetros incorretos!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Valores da coluna \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Use o OpenStreetMaps como camada base" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Ponto:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Ponto %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Adicione um ponto" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Cadeia de linha %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Anel externo:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Anel interno %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Adicionar uma cadeia de linha" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Adicionar um anel interno" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polígono %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Adicionar polígono" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Adicionar geometria" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Executar" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Saída" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -522,19 +522,19 @@ msgstr "" "Selecione \"GeomFromText\" da coluna \"Function\" e cole o texto abaixo no " "campo \"Value\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Sucesso" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Falha" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Parâmetros incompletos" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -543,15 +543,15 @@ msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentação%s para resolver esse problema." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:489 +#: import.php:486 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 " @@ -561,23 +561,23 @@ msgstr "" "enviado, ou o tamanho do arquivo excedeu o tamanho máximo permitido pela sua " "configuração do PHP. Verifique a [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível carregar os plugins, verifique sua instalação!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Marcador %s criado." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importação finalizada com sucesso, %d consultas executadas." msgstr[1] "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -586,7 +586,7 @@ msgstr "" "Script passou do tempo limite, se você deseja terminar a importação, " "%sreenvie o mesmo arquivo%s e a importação será resumida." -#: import.php:632 +#: import.php:629 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." @@ -595,7 +595,7 @@ msgstr "" "dizer que o phpMyAdmin não será capaz de realizar essa importação a menos " "que você aumente o tempo limite do PHP." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." @@ -603,17 +603,17 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado." msgid "Could not load the progress of the import." msgstr "Não foi possível carregar o progresso da importação." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Voltar" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Servidor de Demonstração do phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -624,107 +624,107 @@ msgstr "" "desejar aqui mas, por favor, não altere os usuários root, debian-sys-maint e " "pma. Mais informações disponíveis em %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Configurações gerais" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Alterar a senha" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Collation de conexão do servidor MySQL" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Configurações do Tema" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Mais configurações" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Servidor de banco de dados" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Servidor:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Tipo de servidor:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Versão do servidor:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Versão de protocolo:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Usuário:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Charset do servidor:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Servidor web" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Versão do cliente de banco de dados:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Extensão do PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Versão do PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Informações da versão:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentação" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Página Oficial do phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Contribuir" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Obter suporte" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista de mudanças" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licença" -#: index.php:443 +#: index.php:444 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 " @@ -735,7 +735,7 @@ msgstr "" "será capaz de dividir as strings corretamente e isso pode causar resultados " "inesperados." -#: index.php:458 +#: index.php:459 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." @@ -744,7 +744,7 @@ msgstr "" "desabilitado. Devido a isto, alguns comportamentos tais como relatório de " "erro ou verificação de versão estão desabilitadas." -#: index.php:473 +#: index.php:474 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 " @@ -756,7 +756,7 @@ msgstr "" "que a validade de cookies configurada no phpMyAdmin, por isso, o seu login " "poderá expirar mais cedo do que o configurado no phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -765,17 +765,17 @@ msgstr "" "phpMyAdmin, por isso, o seu login expirará mais cedo do que o configurado no " "phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O arquivo de configuração agora precisa de uma frase secreta com senha " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "A chave privada para encriptação (blowfish_secret) é muito curta." -#: index.php:528 +#: index.php:529 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 " @@ -788,7 +788,7 @@ msgstr "" "servidor pode ser comprometida por indivíduos não autorizados realizando " "downloads de suas configurações." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -798,14 +798,14 @@ msgstr "" "configurado, algumas funções avançadas foram desativadas. %sDescubra porque" "%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ou, alternativamente, vá à aba 'Operações' de qualquer banco de dados para " "configurá-lo lá." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -814,7 +814,7 @@ msgstr "" "Sua versão %s da biblioteca MySQL do PHP é diferente da versão %s do seu " "servidor MySQL. Isso pode causar comportamentos imprevistos." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -985,7 +985,7 @@ msgid "Save & close" msgstr "Salvar & fechar" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Resetar" @@ -1017,7 +1017,7 @@ msgstr "Adicionar índice" msgid "Edit index" msgstr "Editar índice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Adicionar %s coluna(s) ao índice" @@ -1042,10 +1042,10 @@ msgstr "Por favor. Selecione a(as) coluna(as)para o Índice." msgid "You have to add at least one column." msgstr "Você deve adicionar pelo menos uma coluna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Ver SQL" @@ -1057,7 +1057,7 @@ msgstr "Simular query" msgid "Matched rows:" msgstr "Linhas afetadas:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Query SQL:" @@ -1074,13 +1074,13 @@ msgstr "O nome do servidor está vazio!" msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "A senha está em branco!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" @@ -1088,8 +1088,8 @@ msgstr "As senhas não são iguais!" msgid "Removing Selected Users" msgstr "Removendo os usuários selecionados" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Fechar" @@ -1111,19 +1111,19 @@ msgstr "Template foi excluído." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1229,40 +1229,40 @@ msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1280,7 +1280,7 @@ msgstr "Requisições" msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configurações" @@ -1297,16 +1297,16 @@ msgid "Please add at least one variable to the series!" msgstr "Por favor adicione no mínimo uma variável à série!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Nenhum" @@ -1506,20 +1506,20 @@ msgstr "Analisando…" msgid "Explain output" msgstr "Demonstrar saída" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Tempo" @@ -1608,10 +1608,10 @@ msgstr "" "Resetando para a configuração padrão…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importar" @@ -1684,7 +1684,7 @@ msgstr "Parâmetros incorretos!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Configurações da página" @@ -1724,8 +1724,8 @@ msgid "Error text: %s" msgstr "Texto do erro: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nenhum banco de dados selecionado." @@ -1763,7 +1763,7 @@ msgstr "Copiando o banco de dados" msgid "Changing charset" msgstr "Alterando o conjunto de caracteres" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Habilitar verificação de chaves estrangeiras" @@ -1791,74 +1791,79 @@ msgstr "Navegando" msgid "Deleting" msgstr "Apagando" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Excluir correspondentes para a tabela %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A definição de uma função armazenada deve conter uma instrução de RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exportar" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Nenhuma rotina é exportável. Podem estar faltando privilégios necessários.." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Valores para coluna %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Valores para uma nova coluna" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Insira cada valor em um campo separado." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Adicionar %d valor(es)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: Se o arquivo contém várias tabelas, elas serão combinadas em uma só." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Ocultar caixa de consulta" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Mostrar caixa de consulta" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1866,53 +1871,53 @@ msgstr "Mostrar caixa de consulta" msgid "Edit" msgstr "Editar" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Remover" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Nenhuma consulta salva automaticamente" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variável %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Escolher" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Seletor de Coluna" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Procurar nesta tabela" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1922,15 +1927,15 @@ msgstr "" "centrais do banco de dados %s tem colunas que não estão presentes na tabela " "atual." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Visualizar Mais" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Você tem certeza?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1938,51 +1943,51 @@ msgstr "" "Esta ação pode mudar alguns de definição colunas.
Tem certeza de que " "deseja continuar?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continuar" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Adicionar chave primária" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Chave Primária adicionada." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Indo para a próxima etapa…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "O primeira etapa de normalização está completa para a tabela '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fim da etapa" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Segunda etapa da normalização (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Concluído" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirme dependências parciais" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "As dependências parciais selecionadas são as seguintes:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1990,20 +1995,20 @@ msgstr "" "Nota: a, b _. d, f implica em valores de colunas a e b combinados juntos " "podem determinar os valores da coluna d e coluna f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Nenhuma dependência parcial selecionada!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostre-me as possíveis dependências parciais baseado nos dados da tabela" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Esconder a lista de dependências parciais" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2011,169 +2016,169 @@ msgstr "" "Seja paciente! A operação pode levar alguns segundos dependendo do tamanho " "dos dados e número de colunas da tabela." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Etapa" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "As seguintes ações serão executadas:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "APAGAR colunas %s da tabela %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Criar a seguinte tabela" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Terceiro passo da normalização (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Confirmar dependências transitivas" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "As dependências selecionadas são as seguintes:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nenhuma dependência selecionada!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvar" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Ocultar critério de pesquisa" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Intervalo de pesquisa" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Máximo de colunas:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Mínimo de colunas:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Ocultar critério de substituição" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Exibir critério de substituição" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Cada ponto representa uma linha de dados." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Mover o mouse sobre um ponto mostrará seu rótulo." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, selecione um trecho do gráfico com o mouse." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Clique no botão resetar zoom para voltar ao estado original." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clique em um ponto de dados para ver e possivelmente editar a linha de dados." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "O plano pode ser redimensionado arrastando-o ao longo do canto inferior " "direito." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Selecione duas colunas" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Selecione duas colunas diferentes" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copiar" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Ponto" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linha" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Aro interno" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Anel externo" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Você deseja copiar a chave de encriptação?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Chave de encriptação" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2181,7 +2186,7 @@ msgstr "" "MySQL aceita valores que não seria possível seleciona-los com a barra; se o " "desejar insira-os diretamente" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "" #| "MySQL accepts additional values not selectable by the slider; key in " @@ -2193,7 +2198,7 @@ msgstr "" "MySQL aceita valores que não seria possível seleciona-los com a barra; se o " "desejar insira-os diretamente" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2201,24 +2206,24 @@ msgstr "" "Indica que você fez alterações nesta página; Você será questionado por uma " "confirmação antes de abandonar as alterações" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Selecionar chave referenciada" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Selecionar chave estrangeira" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Por favor, selecione uma chave primária ou uma chave única!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Marque a coluna para exibir" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2226,76 +2231,76 @@ msgstr "" "Você não salvou as mudanças no layout. Elas serão perdidas se você não salvá-" "las. Deseja continuar mesmo assim?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Nome da página" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Selecionar página" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salvar página como" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Páginas livres" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Apagar página" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sem título" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Favor escolher uma página para editar" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Por favor, digite um número válido" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Você quer salvar as alterações para a página atual?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Página apagada com sucesso :)" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adicionar uma opção para a coluna \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) criado(s)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Submit" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Pressione ESC para cancelar a edição." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2303,15 +2308,15 @@ msgstr "" "Você editou alguns dados e estes não foram salvos. Você tem certeza que quer " "sair desta página antes de salvar os dados?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Arraste para reordenar." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Clique para ordenar os resultados por esta coluna." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2322,26 +2327,26 @@ msgstr "" "DECRESCENTE) .
- Ctrl+Clique ou Alt+Clique (Mac: Shift+Opção+Clique) " "para remover a coluna da ORDER BY (ORDEM POR) da cláusula" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Clique para marcar/desmarcar." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Clique duas vezes para copiar o nome da coluna." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2350,13 +2355,13 @@ msgstr "" "Editar, Marcar, Editar, Copiar e Apagar podem não funcionar mais depois de " "salvar." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Por favor insira uma seqüência hexadecimal válido. Os caracteres válidos são " "0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2364,106 +2369,106 @@ msgstr "" "Você realmente quer ver todas as linhas? Para uma tabela grande isto poderia " "travar o nevegador." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Tamanho original" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "Cancelar" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Sucesso" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Solte os arquivos aqui" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Primeiro escolha um banco de dados" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Você também pode editar a maioria dos valores
clicando duas vezes sobre " "eles." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Você também pode editar a maioria dos valores
clicando diretamente sobre " "eles." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Ir para o link:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Clique com o botão direito do mouse no nome da coluna para copiá-la para a " "área de transferência." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Gerar senha" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Gerar" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mais" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Mostrar painel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Ocultar painel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Mostrar itens ocultos da árvore de navegação." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Fazer ligação com painel principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Encerrar ligação com painel principal" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "A página solicitada não foi encontrada no histórico, ela pode ter expirado." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2473,27 +2478,27 @@ msgstr "" "atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "atualizado(a)" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Criar view" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Enviar relatório de erros" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Cadastrar relatório de erro" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2501,15 +2506,15 @@ msgstr "" "Ocorreu um erro fatal no JavaScript. Gostaria de enviar um relatório de " "erros?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Alterar configurações de relatórios" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Exibir detalhes de relatório" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2517,7 +2522,7 @@ msgstr "" "A exportação está incompleta devido ao baixo limite de tempo de execução nas " "configurações do PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2526,61 +2531,61 @@ msgstr "" "Aviso: um formulário nesta página tem mais de %d campos. Ao enviar, alguns " "campos podem ser ignorados, por causa da configuração max_input_vars do PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Alguns erros foram detectados no servidor!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Por favor, olhe na parte inferior da janela." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorar Tudo" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "De acordo com as definições, elas estão sendo submetidas atualmente, por " "favor, seja paciente." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Executar esta consulta novamente?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Você realmente deseja excluir a busca \"%s\"?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" "Ocorreram alguns erros enquanto informações de debug do SQL eram gerados." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s vezes em %s segundos." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s parâmetro(s) passado(s)" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Mostrar comentários" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Ocultar resultados" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Tempo gasto:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2595,349 +2600,369 @@ msgstr "" "\"Dados Offline de Sites\" pode ajudar. No Safari, este problema é " "normalmente causado pelo \"Navegação Privada\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Copiar tabelas para" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Adicionar prefixo de tabela" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Substituir a tabela com o prefixo" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabelas com prefixo" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hoje" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Janeiro" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Fevereiro" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Março" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Abril" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maio" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Junho" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Julho" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Agosto" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Setembro" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Outubro" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembro" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dez" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Segunda" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Sexta" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "Sufixo de ano: nenhum" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hora" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuto" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Segundo" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Este campo é obrigatório" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Por favor, corrija este cambo" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Por favor, digite um correio eletrônico válido" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Por favor, digite um endereço eletrônico válido" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Por favor, digite uma data válida" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Por favor, digite uma data válida" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Por favor, digite um número válido" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Por favor, digite um número de cartão de crédito válido" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Por favor, digite apenas números" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Por favor, digite o mesmo valor novamente" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Por favor, digite até {0} caractéres" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Por favor, digite pelo menos {0} caracteres" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Por favor digite um valor entre {0} e {1} caracteres compridos" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Por favor, digite um valor entre {0} and {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Por favor, digite um valor menor ou igual a {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Por favor, digite um valor maior ou igual a {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Por favor, digite um data válida ou um tempo" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Por favor, digite um número HEXADECIMAL válido" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Erro" @@ -3004,20 +3029,20 @@ msgid "Charset" msgstr "Conjunto de caracteres" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Colação" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binário" @@ -3212,7 +3237,7 @@ msgid "Czech-Slovak" msgstr "Tcheco-Eslováquio" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "desconhecido" @@ -3262,26 +3287,26 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Mostrando %1$d marcador (tanto privados e compartilhados)" msgstr[1] "Mostrando %1$d marcadores (tanto privados e compartilhados)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Sem marcador(es)" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Caixa de consulta SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Falha ao definir conexão do agrupamento configurado!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3289,24 +3314,24 @@ msgstr "" "O servidor não está respondendo (ou o soquete do servidor local não está " "configurado corretamente)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "O servidor não está respondendo." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Por favor verifique os privilégios do diretório que contém o banco de dados." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalhes…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Parâmetro de conexão ausente!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A conexão para o controle do usuário, como definida nas configurações, " @@ -3402,110 +3427,105 @@ msgstr "Inserir:" msgid "Del:" msgstr "Deletar:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL ao banco de dados %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Enviar query" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Pesquisas favoritas salvas:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Novo marcador" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Criar marcador" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Atualizar marcador" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Excluir marcador" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "todas as palavras" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "a frase exata" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "como expressão regular" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados da pesquisa para \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s resultado em %2$s" msgstr[1] "%1$s resultados em %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Visualizar" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Excluir correspondentes para a tabela %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Procurar no banco de dados" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Procurar:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Palavras são separadas por um caractere de espaço (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Dentro da(s) tabela(s):" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Desmarcar todos" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Dentro do campo:" @@ -3525,30 +3545,30 @@ msgstr "Filtrar linhas" msgid "Search this table" msgstr "Procurar nesta tabela" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Próximo" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Fim" @@ -3557,7 +3577,7 @@ msgstr "Fim" msgid "All" msgstr "Todos" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de linhas:" @@ -3566,8 +3586,8 @@ msgstr "Número de linhas:" msgid "Sort by key" msgstr "Ordenar pela chave" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3589,10 +3609,10 @@ msgstr "Ordenar pela chave" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opções" @@ -3632,29 +3652,29 @@ msgstr "Texto bem conhecido" msgid "Well Known Binary" msgstr "Binário bem conhecido" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Registro eliminado." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Finalizar" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Pode ser aproximado. Veja a [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Seu comando SQL foi executado com sucesso." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3663,73 +3683,73 @@ msgstr "" "Esta view tem pelo menos esse número de linhas. Por favor, consulte a " "%sdocumentação%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostrando registros %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d no total, %2$d na consulta" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d no total" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Consulta levou %01.4f segundos." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Com marcados:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Marcar todos" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copiar para a área de transferência" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link não encontrado!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Nenhuma" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Converter para Katakana" @@ -3737,25 +3757,25 @@ msgstr "Converter para Katakana" msgid "Too many error messages, some are not displayed." msgstr "Muitas mensagens de erro, algumas não exibidas." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Reportar" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Enviar automaticamente o relatório na próxima vez" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Arquivo não era um arquivo carregado." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O arquivo carregado excede o tamanho definido na diretriz " "upload_max_filesize no php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3763,47 +3783,47 @@ msgstr "" "O arquivo enviado excede o tamanho definido na diretriz MAX_FILE_SIZE que " "foi definida no formulário HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "O envio do arquivo foi parcial." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Falhou ao salvar arquivo no disco." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Carregamento do arquivo parado pela extensão." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "O arquivo é um link simbólico" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "O arquivo não pôde ser lido!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Erro ao mover o arquivo carregado, veja [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Não foi possível ler arquivo enviado." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3813,28 +3833,28 @@ msgstr "" "suporte para ele não está implementado ou pode ter sido desabilitado por sua " "configuração." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Atualmente rodando a revisão Git %1$s da branch %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Faltando informações do Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Imprimir view" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Clique na barra para rolar até o topo da página" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "O JavaScript deve estar ativo após este ponto!" @@ -3843,20 +3863,20 @@ msgid "No index defined!" msgstr "Nenhum índice definido!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3866,59 +3886,59 @@ msgstr "Índices" msgid "Action" msgstr "Ação" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Único" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pacote" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Comentário" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "A chave primária foi deletada." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Índice %s foi eliminado." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Eliminar" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3927,19 +3947,19 @@ msgstr "" "A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " "removida." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Número da página:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignorando o código de linguagem não suportado." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Linguagem" @@ -3965,11 +3985,11 @@ msgstr "Servidor" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3988,14 +4008,15 @@ msgid "View" msgstr "Visualizar" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4004,8 +4025,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4013,45 +4034,45 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Procurar" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilégios" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operações" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Monitoramento" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4067,16 +4088,16 @@ msgstr "Gatilhos" msgid "Database seems to be empty!" msgstr "O banco de dados parece estar vazio!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Consulta" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4084,20 +4105,20 @@ msgstr "Rotinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colunas centrais" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Bancos de dados" @@ -4106,53 +4127,53 @@ msgid "User accounts" msgstr "Contas de usuário" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log binário" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicação" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugins" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d linha afetada." msgstr[1] "%1$d linhas afetadas." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d linha excluída." msgstr[1] "%1$d linhas excluídas." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4203,27 +4224,27 @@ msgstr "Tabelas favoritas" msgid "Favorites" msgstr "Favoritos" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Favor inserir um nome para esta pesquisa salva." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Faltam informações para salvar a pesquisa marcada." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Já existe uma entrada com este nome." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Faltam informações para excluir a pesquisa." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Faltam informações para carregar a pesquisa." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Erro ao carregar a pesquisa." @@ -4285,7 +4306,7 @@ msgstr "Exibir tabelas abertas" msgid "Show slave hosts" msgstr "Exibir servidores escravos" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Exibir status do mestre" @@ -4339,71 +4360,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutos" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Não há nenhuma informação detalhada do status disponível para este motor de " "armazenamento." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponível neste servidor MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s está desabilitado neste servidor MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Esse servidor MySQL não suporta o motor de armazenamento %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Status desconhecido de tabela:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "O banco de dados fonte `%s` não foi encontrado!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "O banco de dados alvo `%s` não foi encontrado!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Banco de dados inválido:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Nome de tabela inválido:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Erro ao renomear tabela %1$s para %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A tabela foi renomeada de %1$s para %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Não foi possível salvar as preferências visuais da tabela!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4412,7 +4433,7 @@ msgstr "" "Falha ao limpar as preferências visuais da tabela (veja $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4423,19 +4444,19 @@ msgstr "" "permanecerão depois que você recarregar esta página. Favor cheque se a " "estrutura da tabela foi alterada." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária deve ser \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Não foi possível renomear o índice para PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro ao criar chave externa no %1$s (check data types)" @@ -4767,7 +4788,7 @@ msgid "Date and time" msgstr "Data e Tempo" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "String" @@ -4782,127 +4803,127 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Análise estática:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d 1 erros foram encontrados durante a análise." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Mensagem do MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Demonstrar SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Pular demonstração do SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Explicação da analise em %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Sem código PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Pesquisar" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Criar código PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Atualizar" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Perfil" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar índice" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parâmetro ausente:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Ir para o banco de dados '%s'." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Não existem arquivos para envio!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Limpar" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Usuários" @@ -4916,7 +4937,7 @@ msgstr "por minuto" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "por hora" @@ -4924,12 +4945,12 @@ msgstr "por hora" msgid "per day" msgstr "por dia" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Procurar:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4937,7 +4958,7 @@ msgstr "Procurar:" msgid "Description" msgstr "Descrição" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Usar este valor" @@ -4978,22 +4999,22 @@ msgstr "Sim" msgid "NO" msgstr "Não" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nome" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Tamanho/Valores" @@ -5002,7 +5023,7 @@ msgstr "Tamanho/Valores" msgid "Attribute" msgstr "Atributos" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5019,11 +5040,11 @@ msgstr "Adicionar coluna" msgid "Select a column." msgstr "Selecionar coluna." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Adicionar nova coluna" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5031,7 +5052,7 @@ msgstr "Adicionar nova coluna" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5040,27 +5061,27 @@ msgstr "" "Você habilitou mbstring.func_overload nas configurações do PHP. Essa opção é " "incompatível com o phpMyAdmin e certamente causará a perda de algum dado!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de servidor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5072,20 +5093,20 @@ msgstr "" "em]. O phpMyAdmin está atualmente usando o fuso horário padrão do servidor " "de banco de dados." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Erro: Incompatibilidade de token" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever variáveis GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "Possível exploit" @@ -5685,7 +5706,7 @@ msgid "Compress on the fly" msgstr "Compressão imediata" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Arquivo de configuração" @@ -5793,12 +5814,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Tempo máximo de execução" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Use a declaração %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Salvar como arquivo" @@ -5808,7 +5829,7 @@ msgstr "Conjunto de caracteres do arquivo" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formato" @@ -5933,7 +5954,7 @@ msgid "Save on server" msgstr "Salvar em servidor" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Sobrescrever arquivo(s) existente(s)" @@ -5946,7 +5967,7 @@ msgid "Remember file name template" msgstr "Lembrar modelo de nome de arquivo" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" @@ -5955,7 +5976,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Usar crases nos nomes de tabelas e campos" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" @@ -5987,7 +6008,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Adicionar %s" @@ -6160,7 +6181,7 @@ msgid "Customize the navigation tree." msgstr "Personalizar o painel de navegação." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servidores" @@ -7084,7 +7105,7 @@ msgstr "Domínio HTTP" msgid "Authentication method to use." msgstr "Método de autenticação a ser usado." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipo de autenticação" @@ -7881,7 +7902,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Habilitar aba Desenvolvedor nas configurações" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Verificar a última versão" @@ -7890,10 +7911,10 @@ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Habilitar checagem pela última versão na página principal do phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Verificação de versão" @@ -8047,24 +8068,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "A lista de favoritos está cheia!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "A tabela %s foi esvaziada." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "A view %s foi apagada." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "A tabela %s foi apagada." @@ -8078,12 +8099,12 @@ msgid "Position" msgstr "Posição" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tipo de evento" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID do servidor" @@ -8092,7 +8113,7 @@ msgid "Original position" msgstr "Posição original" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informação" @@ -8106,42 +8127,42 @@ msgstr "Truncar as consultas SQL exibidas" msgid "Show Full Queries" msgstr "Mostrar consultas completas" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nenhum banco de dados" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "O banco de dados %1$s foi criado." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "O banco de dados %1$d foi eliminado com sucesso." msgstr[1] "Os bancos de dados %1$d foram eliminados com sucesso." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Linhas" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Sobrecarga" @@ -8170,33 +8191,33 @@ msgstr "" msgid "Enable statistics" msgstr "Habilitar estatísticas" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view server variables and settings. %s" msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Erro na atribuição da variável" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Nenhuma query SQL foi definida para retornar dados." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Nenhuma coluna numérica presente na tabela para calcular." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Sem dados para mostrar" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "A tabela %1$s foi alterada com sucesso." @@ -8239,7 +8260,7 @@ msgstr "As colunas foram movidas com sucesso." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Erro de consulta" @@ -8257,12 +8278,12 @@ msgstr "Alterar" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Índice" @@ -8283,14 +8304,14 @@ msgstr "Texto completo" msgid "Distinct values" msgstr "Procurar valores distintos" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" "A extensão %s não está presente. Por favor, verifique a configuração do PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nenhuma alteração" @@ -8314,132 +8335,136 @@ msgstr "" "instalação!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Sem senha" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Senha:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Re-digite:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hashing de senha:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportando os bancos de dados do servidor atual" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportando as tabelas do banco de dados \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportando as linhas da tabela \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Tipo de exportação" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Nome do arquivo do modelo:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Nome da Tabela" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Criar" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Nome do arquivo do modelo:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "Taxa de temporários em disco" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Atualizado" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "Selecionar tabela" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Método de exportação" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rápida - mostrar apenas as opções mínimas" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Personalizada - exibir todas as opções possíveis" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Bancos de dados" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabelas:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formato:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opções específicas de formato:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8447,52 +8472,52 @@ msgstr "" "Role para baixo para preencher as opções para o formato selecionado e " "ignorar as opções de outros formatos." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Codificação de conversão:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Registros:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Fazer dump de alguma(s) linha(s)" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Começar na linha:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Fazer dump de todas as linhas" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Saída:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Salvar em servidor no diretório %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Nome do arquivo do modelo:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ se tornará o nome do servidor" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ se tornará o nome do banco de dados" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ se tornará o nome da tabela" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8504,102 +8529,102 @@ msgstr "" "ocorrerá: %3$s. Outros textos serão mantidos como estão. Veja a %4$sFAQ%5$s " "para detalhes." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "use este para futuras exportações" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Conjunto de caracteres do arquivo:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Compressão:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "compactado" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "compactado com gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Ver saida como texto" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Exportar vistas como tabelas" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Exportar cabeçalhos das tabelas" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Renomear as bases de dados/tabelas/colunas exportadas" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Salvar saída em um arquivo" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Pular tabelas maiores que" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Selecionar base de dados" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Selecionar tabela" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nome da nova base de dados" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nome da nova tabela" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Nome da antiga coluna" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Novo nome da coluna" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "Não pôde carregar os plugins de exportação, verifique sua instalação!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s do ramo %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "nenhum ramo" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Revisão do Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "modificado em %1$s por %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "criado em %1$s por %2$s" @@ -9071,13 +9096,13 @@ msgstr "" "Documentação e mais informações sobre PBXT podem ser encontradas na %sPágina " "Inicial da PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espaço insuficiente para salvar o arquivo %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9085,77 +9110,77 @@ msgstr "" "O arquivo %s já existe no servidor, mude o nome do arquivo ou verifique sua " "opção de sobrescrever." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissão para salvar o arquivo %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou um conjunto vazio (ex. zero registros)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[Ocorreu um ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas a seguir foram criadas ou alteradas. Aqui você pode:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Visualizar o conteúdo da estrutura clicando em seu nome." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Alterar qualquer uma destas configurações clicando no link \"Opções\" " "correspondente." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar a estrutura seguindo o link \"Estrutura\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Ir para o bando de dados: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Editar as configurações para %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Ir para a tabela: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Estrutura do %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Ir para a view: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Somente pesquisas de UPDATE e DELETE em tabela-simples podem ser simuladas." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9168,78 +9193,79 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Criar um índice nas colunas %s" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Função" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Por causa da sua largura,
esta coluna pode não ser editável." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binário - não edite" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ou" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "diretório de upload do servidor web:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserção com %s linhas" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "e então" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Exibir consulta insert" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Ir para a página anterior" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Inserir um registro novo" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Editar o próximo registro" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9249,8 +9275,8 @@ msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9261,31 +9287,31 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sucesso!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Somente estrutura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Somente dados" @@ -9296,14 +9322,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Adicionar restrições" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9352,8 +9378,8 @@ msgstr "Procedimentos:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Mostrar" @@ -9400,17 +9426,17 @@ msgid_plural "%s results found" msgstr[0] "%s resultado encontrado" msgstr[1] "%s resultados encontrados" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Limpar o filtro rápido" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Reduzir tudo" @@ -9426,7 +9452,7 @@ msgstr "Nome de classe inválida \"%1$s\", usando padrão de \"nós\"" msgid "Could not load class \"%1$s\"" msgstr "Não foi possível adicionar colunas!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Expandir/Recolher" @@ -9445,7 +9471,7 @@ msgstr "Nova coluna" msgid "Database operations" msgstr "Operações com banco de dados" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Exibir itens ocultos" @@ -9554,11 +9580,11 @@ msgstr "" "Escolha uma coluna que pode ser dividida em mais de uma. (se selecionar " "'nenhuma coluna', você passará para o próxima passo)" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Selecionar uma…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Nenhuma coluna" @@ -9837,8 +9863,8 @@ msgid "Rename database to" msgstr "Renomear banco de dados para" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9884,185 +9910,185 @@ msgstr "(singularmente)" msgid "Move table to (database.table)" msgstr "Mover tabela para (banco de dados.tabela)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Renomear a tabela para" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Comentários da tabela" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opções da tabela" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Mecanismo de armazenamento" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 #, fuzzy #| msgid "Make all columns atomic" msgid "Change all column collations" msgstr "Converter todas as colunas atômicas" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copiar tabela para (banco de dados.tabela)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Manutenção de tabelas" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizar tabela" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Desfragmentar tabela" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "A tabela %s foi limpa." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Limpar a tabela (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Otimizar tabela" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparar tabela" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Remover dados ou tabela" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Esvaziar a tabela (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Remover a tabela (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizar" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Verificar" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Otimizar" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Reconstruir" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Reparar" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Truncar" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Expandir/Recolher" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Manutenção da partição" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partição %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Remover particionamento" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Não pode mover a tabela para ela mesma!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Não pode copiar a tabela para ela mesma!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s movida para %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s movida para %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Esse formato não tem opções" @@ -10091,18 +10117,18 @@ msgstr "Mostrar cor" msgid "Only show keys" msgstr "Mostrar apenas chaves" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Não pode conectar: configurações inválidas." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Bem-vindo ao %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10111,7 +10137,7 @@ msgstr "" "Você provavelmente não criou o arquivo de configuração. Você deve usar o " "%1$sscript de setup%2$s para criar um." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10123,7 +10149,7 @@ msgstr "" "certificar que correspondam com as informações fornecidas pelo administrador " "do servidor MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Tente se conectar novamente" @@ -10150,16 +10176,16 @@ msgstr "Usuário:" msgid "Server Choice:" msgstr "Escolha de servidor:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" "O valor digitado na imagem de verificação está errado, tente novamente!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Por favor, digite o valor correto da imagem de verificação!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Você não tem permissão para fazer logon no servidor MySQL!" @@ -10221,7 +10247,7 @@ msgstr "Opções de dump de dados" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Fazendo dump de dados para tabela" @@ -10230,7 +10256,7 @@ msgstr "Fazendo dump de dados para tabela" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Evento" @@ -10238,8 +10264,8 @@ msgstr "Evento" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definição" @@ -10325,7 +10351,7 @@ msgstr "Colocar os nomes das colunas na primeira linha:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Host:" @@ -10878,7 +10904,7 @@ msgstr "Tabela de conteúdos" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11285,18 +11311,18 @@ msgstr "" "Logar novamente no phpMyAdmin para carregar o arquivo de configuração " "atualizado." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "sem descrição" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -11306,7 +11332,7 @@ msgstr "" "%sCreate%s as tabelas de armazenamento de configuração do phpMyAdmin " "perdidas." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11314,35 +11340,35 @@ msgstr "" "%sCreate%s o armazenamento de configuração do phpMyAdmin no banco de dados " "atual." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" "%sCreate%s as tabelas de armazenamento de configuração do phpMyAdmin " "perdidas." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replicação de master" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Este servidor é configurado como mestre em um processo de replicação." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Mostrar servidores slave conectados" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Adicionar usuário de replicação de escravo" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Configuração mestre" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11363,19 +11389,19 @@ msgstr "" "ou ignorar todos os bancos de dados por padrão e permitir somente certos " "bancos de dados serem replicados. Favor selecionar o modo:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replicar todos bancos de dados; Ignorar:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todos bancos de dados; Replicar:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Favor selecionar os bancos de dados:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11383,7 +11409,7 @@ msgstr "" "Agora, adicione as seguintes linhas ao final da seção [mysqld] em seu my.cnf " "e por favor reinicie o servidor MySQL em seguida." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11393,71 +11419,71 @@ msgstr "" "Em seguida, você deveria ver uma mensagem informando você que este servidor " "está configurado como master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replicação de slave" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Conexão mestre:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Processo SQL escravo não está em execução!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Processo IO escravo não está em execução!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "O servidor está configurado como escravo em um processo de replicação. Você " "deseja:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Ver a tabela de status dos escravos" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Controlar escravo:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Inicialização completa" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Paralisação completa" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Reiniciar escravo" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Somente iniciar o processo SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Somente parar o processo SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Somente iniciar o processo IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Somente parar o processo IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Alterar ou reconfigurar o servidor mestre" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11466,24 +11492,24 @@ msgstr "" "Este servidor não está configurado como escravo em um processo de " "replicação. Deseja configurá-lo para tal?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Administração de erros:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Pular erros pode resultar em mestre e escravo dessincronizados!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Pular erro atual" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Pular próximos %s erros." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11492,11 +11518,11 @@ msgstr "" "Esse servidor não está configurado como mestre em um processo de replicação. " "Deseja configurá-lo assim?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Configuração do escravo" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11505,53 +11531,53 @@ msgstr "" "configuração (my.cfn). Senão, favor adicionar a seguinte linha dentro da " "seção [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Nome de usuário:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nome do usuário" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Senha" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Porta:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Status do master" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Status do(s) slave(s)" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variável" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Servidor" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11559,39 +11585,39 @@ msgstr "" "Apenas os escravos iniciados com a opção --report-host=host_name estão " "visíveis nesta lista." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Qualquer host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Este host" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Qualquer usuário" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Usar campo de texto:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Usar tabela Host" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11599,79 +11625,79 @@ msgstr "" "Quanto a tabela Host é usada, este campo é ignorado e os valores armazenados " "na tabela Host são usados no lugar." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Re-digite" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Gerar senha" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replicação iniciada com sucesso." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Erro ao iniciar replicação." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replicação encerrada com sucesso." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Erro ao parar replicação." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replicação reiniciada com sucesso." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Erro ao reiniciar replicação." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Sucesso." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Erro." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Erro desconhecido" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Não foi possível conectar ao mestre %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Não foi possível fazer a leitura da posição de log mestre. Possível problema " "de permissões no mestre." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Não foi possível alterar o mestre!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Servidor mestre alterado com sucesso para %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11692,7 +11718,7 @@ msgstr "O evento %1$s foi modificado." msgid "Event %1$s has been created." msgstr "O evento %1$s foi criado." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Um ou mais erros ocorreram durante o processamento da sua solicitação:" @@ -11701,75 +11727,75 @@ msgstr "Um ou mais erros ocorreram durante o processamento da sua solicitação: msgid "Edit event" msgstr "Editar evento" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detalhes" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Nome do evento" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Alterar para %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Executar em" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Executar sempre" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Início" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Final" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Guardar após a conclusão" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definidor" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "O definidor deve estar no formato \"username@hostname\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Você deve informar o nome do evento!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Você deve informar um valor de intervalo válido para o evento." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Você deve informar um tempo de execução válido para o evento." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Você deve informar um tipo válido para o evento." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Você deve informar uma definição do evento." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Erro no processamento do request:" @@ -11790,7 +11816,7 @@ msgstr "Status do agendador de eventos" msgid "The backed up query was:" msgstr "A consulta armazenada em backup foi:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Retornos" @@ -11806,97 +11832,97 @@ msgstr "" "armazenamento podem falhar![/strong] Por favor, use a extensão melhorada " "'mysqli' para evitar quaisquer problemas." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Editar rotina" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rotina inválido: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "A rotina %1$s foi criada." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Desculpe, mas falhamos em restaurar a rotina eliminada." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "A rotina %1$s foi modificada." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "A rotina %1$s foi modificada." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Nome das rotinas" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parâmetros" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Direção" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Adicionar parâmetro" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Remover último parâmetro" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Tipo de returno" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Retornar comprimento/valores" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Opções de retorno" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "É determinístico" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tipo de segurança" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Acesso de dados SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Você deve informar o nome da rotina!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direção inválida \"%s\" dada para o parâmetro." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11904,37 +11930,37 @@ msgstr "" "Você deve informar tamanhos/comprimentos para os parâmetros de rotina do " "tipo ENUM, SET, VARCHAR and VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Você deve informar um nome e um tipo para cada parâmetro de rotina." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Você deve informar um tipo de retorno válido para a rotina." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Você deve informar uma definição da rotina." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Resultados da execução da rotina %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 linha afetada pela última instrução dentro do procedimento." msgstr[1] "%d linhas afetadas pela última instrução dentro do procedimento." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Executar rotina" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parâmetros da rotina" @@ -11956,32 +11982,32 @@ msgstr "O gatilho %1$s foi criado." msgid "Edit trigger" msgstr "Editar gatilho" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Nome do gatilho" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Momento de ação do gatilho" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Você deve informar o nome do gatilho!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Você deve informar um tempo válido para o gatilho!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Você deve informar um evento válido para o gatilho!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Você precisa colocar um nome de tabela válido!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Você deve informar uma definição para o gatilho." @@ -12108,91 +12134,91 @@ msgstr "Conjuntos de caracteres e Collations" msgid "Databases statistics" msgstr "Estatísticas do Banco de Dados" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Sem privilégios." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios exceto o GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permitir leitura de dados." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permitir modificar dados." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permitir apagar dados." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permitir criar novos bancos de dados e tabelas." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar bancos de dados e tabelas." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e limpar o cache do servidor." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Permitir visualizar processos de todos os usuários." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Não tem nenhum efeito nessa versão do MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista completa de bancos de dados." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12202,130 +12228,104 @@ msgstr "" "necessário para a maioria das operações administrativas, como definir " "variáveis globais e matar processos de outros usuários." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Necessário para a replicação dos slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Permitir criar novas views." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Permitir definir eventos no agendador de eventos." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Permitir criar e apagar gatilhos." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Permitir criar rotinas armazenadas." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar rotinas armazenadas." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Permitir executar rotinas armazenadas." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Nenhum privilégio" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Grupo de usuários" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Requer conexões criptografadas SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Requer conexões criptografadas SSL." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" "Requer que um método de criptografia específico seja usado para uma conexão." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Requer que um certificado X509 válido emitido por esta AC seja apresentado." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" "Requer que um certificado X509 válido com este assunto seja apresentado." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Limites de recursos" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limitar o número de consultas que podem ser enviadas ao servidor por hora." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12333,128 +12333,121 @@ msgstr "" "Limitar o número de comandos que alteram tabelas ou bancos de dados que o " "usuário pode executar por hora." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rotinas" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Permitir alterar e apagar rotinas armazenadas." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Permitir executar rotinas armazenadas." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilégios específicos de tabela" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: os nomes de privilégios do MySQL são expressos em inglês." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administração" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilégios globais" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilégios específicos de banco de dados" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permitir adicionar usuários e privilégios sem recarregar a tabela de " "privilégios." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autenticação por cookie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autenticação Signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Autenticação por cookie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Informação de login" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12462,271 +12455,257 @@ msgstr "" "Uma conta já existe com o mesmo nome de usuário, mas possivelmente com um " "nome de servidor diferente." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Nome de usuário:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Nome do log" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Não mudar a senha" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autenticação" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hashing de senha:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Você revogou os privilégios para %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Adicionar grupo de usuários" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Banco de dados para usuário" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Criar banco de dados com o mesmo nome e conceder todos os privilégios." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Conceder todos os privilégios no banco de dados '%s'." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuários que têm acesso à '%s'" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Usuário foi adicionado." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Nenhum usuário encontrado." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Qualquer" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "específico de banco de dados" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "coringa" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "específico de tabela" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Editar privilégios:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Editar grupo de usuários" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo da tabela de usuários." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revogar todos privilégios ativos do usuário antigo e depois apagá-lo." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… apagar o antigo da tabela de usuários e depois recarregar os privilégios." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mudar informações de login / Copiar usuário" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Criar um novo usuário com os mesmos privilégios e …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilégios específicos de coluna" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Remover os usuários selecionados" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Grupo de usuários" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Revogar todos os privilégios ativos dos usuários e depois apagar eles." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Eliminar os bancos de dados que possem o mesmo nome dos usuários." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os privilégios para %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilégios para %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Usuário" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Novo usuário" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Editar privilégios:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grupo de usuários" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Nota: Você está tentando editar os privilégios do usuário da sessão atual." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Visão geral dos usuários" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12739,7 +12718,7 @@ msgstr "" "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12758,11 +12737,11 @@ msgstr "" "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Você adicionou um novo usuário." @@ -13081,12 +13060,12 @@ msgstr "Comando" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtros" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Mostrar somente ativo(s)" @@ -13107,12 +13086,12 @@ msgstr "por minuto:" msgid "per second:" msgstr "por segundo:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Comandos" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13136,7 +13115,7 @@ msgstr "Exibir valores não formatados" msgid "Related links:" msgstr "Links relacionados:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13144,11 +13123,11 @@ msgstr "" "O número de conexões que foram abortadas porque o cliente morreu sem fechar " "a conexão de forma apropriada." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "O número de tentativas de conexão sem sucesso ao servidor MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13158,17 +13137,17 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "O número de transações que usaram o cache do log binário temporário." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "O número de tentativas de conexão (com sucesso ou não) ao servidor MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13180,11 +13159,11 @@ msgstr "" "grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " "temporárias serem baseadas na memória ou invés de baseadas no disco." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13192,7 +13171,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13200,7 +13179,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13208,23 +13187,23 @@ msgstr "" "O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " "diferente em que se usa INSERT DELAYED começa seu próprio processo." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "O número de vezes que uma linha foi deletada de uma tabela." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13234,7 +13213,7 @@ msgstr "" "ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " "Handler_discover indica o número de vezes que tabelas foram descobertas." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13244,7 +13223,7 @@ msgstr "" "alto, sugere que o usuário está fazendo muitas varreduras completas do " "índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13253,7 +13232,7 @@ msgstr "" "grande, é uma boa indicação de que suas consultas e tabelas estão " "corretamente indexadas." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13263,7 +13242,7 @@ msgstr "" "incrementado se você estiver consultando uma coluna do índice com uma " "restrição da escala ou se você estiver fazendo uma varredura do índice." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13271,7 +13250,7 @@ msgstr "" "O número de requisições para ler a linha precedente na ordem da chave. Este " "método de leitura é usado principalmente para otimizar ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13284,7 +13263,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13296,37 +13275,37 @@ msgstr "" "sugere que suas tabelas não estão corretamente indexadas ou que suas " "consultas não estão escritas para tomar vantagem dos índices que você têm." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "O número de requisições para atualizar uma linha na tabela." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "O número de requisições para inserir uma linha na tabela." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "O número de páginas que contém dados (sujos ou limpos)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "O número de páginas do buffer pool que foram requisitadas para serem " "niveladas." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "O número de páginas livres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13336,7 +13315,7 @@ msgstr "" "que estão sendo lidas ou escritas atualmente ou que não podem ser niveladas " "ou removidas por alguma outra razão." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13348,11 +13327,11 @@ msgstr "" "Este valor também pode ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13361,7 +13340,7 @@ msgstr "" "quando uma consulta faz a varredura de uma parcela grande de uma tabela mas " "em ordem aleatória." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13369,11 +13348,11 @@ msgstr "" "O número de read-aheads sequenciais InnoDB iniciados. Isto acontece quando o " "InnoDB faz uma varredura sequencial completa da tabela." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "O número de requisições de leitura lógica feitas pelo InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13381,7 +13360,7 @@ msgstr "" "O número de leituras lógicas que o InnoDB não pôde satisfazer com buffer " "pool e teve que fazer uma leitura de página simples." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13396,53 +13375,53 @@ msgstr "" "tamanho do buffer pool for ajustado corretamente, este valor deve ser " "pequeno." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "O número de escritas feitas para o buffer pool do InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() até agora." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "A quantidade de dados lidos até agora, em bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "O número total de leituras de dados." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "O número total de escritas de dados." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "A quantidade de dados escritos até agora, em bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "O número de páginas que foram escritas para operações doublewrite (dupla-" "escrita)." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "O número de operações doublewrite (dupla-escrita) que foi executado." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13450,35 +13429,35 @@ msgstr "" "O número de esperas ocorridas porque o buffer de log era muito pequeno e " "teve que esperar seu nivelamento antes de continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "O número de escritas físicas para o arquivo de log." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "O número de escritas fsyncs feitas no arquivo de log." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "O número de bytes escritos para o arquivo de log." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13487,51 +13466,51 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "O número de linhas trancadas que estão esperando atualmente." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "O tempo médio para recuperar uma linha trancada, em milisegundos." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "O tempo total gasto para recuperar linhas trancadas, em milisegundos." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "O tempo máximo para recuperar uma linha trancada, em milisegundos." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "O número de vezes que uma trava de linha teve que esperar." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13539,7 +13518,7 @@ msgstr "" "O número de blocos chave no key cache que mudaram mas que não foram " "nivelados ainda para disco. Costumava ser chamado de Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13547,7 +13526,7 @@ msgstr "" "O número de blocos não usados no key cache. Você pode usar este valor para " "determinar quanto do key cache está em uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13556,15 +13535,15 @@ msgstr "" "O número de blocos usados no key cache. Este valor é uma marca d'água que " "indica o número máximo de blocos que já estiveram em uso em algum momento." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentagem utilizada do key cache (valor calculado)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "O número de requisições para ler um bloco chave do cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13574,7 +13553,7 @@ msgstr "" "alto, então seu valor do key_buffer_size provavelmente está muito baixo. A " "taxa de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13582,22 +13561,22 @@ msgstr "" "Key cache mal calculado quanto a taxa de leitura física comparada aos " "pedidos de leitura (valor calculado)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "O número de requisições para escrever um bloco chave para o cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "O número de escritas físicas para um bloco chave para o disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentagem de escritas físicas comparada aos pedidos de escrita (valor " "calculado)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13608,7 +13587,7 @@ msgstr "" "consulta para a mesma consulta. O valor padrão 0 significa que nenhuma " "consulta foi compilada ainda." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13616,12 +13595,12 @@ msgstr "" "O número máximo de conexões que estiveram em uso simultaneamente desde a " "inicialização do servidor." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de linhas esperando para serem escritas na fila de INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13629,20 +13608,20 @@ msgstr "" "O número de tabelas que foram abertas. Se este número for grande, o valor do " "cache de tabelas provavelmente está muito pequeno." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "O número de streams que estão abertos (usados principalmente para log)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13652,19 +13631,19 @@ msgstr "" "podem indicar problemas de fragmentação, o que pode ser resolvido com " "execução de um comando FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para o cache de consultas." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13676,7 +13655,7 @@ msgstr "" "cache de consultas. O cache de consultas usa a estratégia LRU (menos usadas " "recentemente) para decidir quais consultas remover do cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13684,19 +13663,19 @@ msgstr "" "O número de consultas sem cache (não cacheável, ou não pode ser cacheável " "devido à configuração em query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos no cache de consultas." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado ainda)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13704,13 +13683,13 @@ msgstr "" "O número de junções que não usam índices. Se este valor não for 0, você deve " "verificar com cuidado os índices de suas tabelas." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de junções que usaram uma pesquisa de escala em uma tabela de " "referência." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13719,7 +13698,7 @@ msgstr "" "linha. (Se isto não for 0, você deve verificar com cuidado os índices de " "suas tabelas.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13727,16 +13706,16 @@ msgstr "" "O número de junções que usaram escalas na primeira tabela. (Isso normalmente " "não é crítico mesmo se for grande.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "O número junções que fez uma varredura completa da primeira tabela." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13744,12 +13723,12 @@ msgstr "" "Número total (desde o início) de vezes que o processo de replicação SQL " "escravo tentou refazer transações." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Isto é ON se este servidor é um escravo que está conectado a um mestre." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13757,12 +13736,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "O número de consultas que levaram mais que long_query_time segundos." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13772,24 +13751,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenações que foram feitas com escalas." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenações que foram feitas por leituras da tabela." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" "O número de vezes que uma tabela trancada foi recuperada imediatamente." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13801,7 +13780,7 @@ msgstr "" "performance, você precisa otimizar suas consultas primeiro e então, ou " "dividir sua(s) tabela(s) ou usar replicação." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13811,11 +13790,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13827,11 +13806,11 @@ msgstr "" "isso não dá um aumento notável de performance se você tiver uma boa " "implementação de processos.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Taxa de acesso a cache de threads (valor calculado)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." @@ -13860,37 +13839,37 @@ msgstr "Guias de Bancos de Dados" msgid "Table level tabs" msgstr "Guias de Tabelas" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Ver usuários" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Adicionar grupo de usuários" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Editar grupo de usuários: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Atribuições do menu de grupos de usuários" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Nome do Grupo:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Guias do Servidor" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Guias do Banco de Dados" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Guias de Tabelas" @@ -13996,7 +13975,7 @@ msgstr "Rodar consulta(s) SQL no banco de dados %s" msgid "Run SQL query/queries on table %s" msgstr "Rodar consulta(s) SQL no banco de dados %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Limpar" @@ -14083,112 +14062,112 @@ msgstr "Desativar agora" msgid "Version" msgstr "Versão" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Criado" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Atualizado" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Excluir versão" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Relatório de monitoramento" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Vizualização da estrutura" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "ativo" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "inativo" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Rastreando instruções" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Excluir dados de rastreamento desta coluna do relatório" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nenhum dado" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s com datas desde %2$s até %3$s pelo usuário %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Despejar SQL (download de arquivo)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Despejar SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Esta opção irá substituir sua tabela e os dados nela contidos." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Execução SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Instrução de manipulação de dados" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Instrução de definição de dados" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Nome de usuário" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantâneo (código SQL) da versão %s" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nenhum wrap (padrão: none)" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Definição de dados de rastreamento removidos com sucesso" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulação de dados de rastreamento removida com sucesso" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14196,61 +14175,61 @@ msgstr "" "Você pode executar o dump criando e usando uma tabela temporária. Favor " "certificar-se de ter os privilégios necessários." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Comente estas duas linhas se você não precisa delas." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instruções SQL exportadas. Por favor, copie a saída ou execute-as." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Relatório de rastreamento para tabela `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Rastreamento para %1$s foi ativado na versão %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Rastreamento para %1$s foi desativado na versão %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versão %1$s de %2$s foi excluída." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versão %1$s foi criada, rastreamento para %2$s está ativado(a)." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabelas não monitoradas" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Monitorar tabela" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabelas rastreadas" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Última versão" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Excluir os dados de monitoramento" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versões" @@ -14258,7 +14237,7 @@ msgstr "Versões" msgid "Manage your settings" msgstr "Gerencie suas configurações" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "A configuração foi salva." @@ -14284,7 +14263,7 @@ msgstr "Erro no arquivo ZIP:" msgid "No files found inside ZIP archive!" msgstr "Nenhum arquivo encontrado dentro do arquivo ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Erro fatal: A navegação somente pode ser acessada via AJAX" @@ -14293,58 +14272,58 @@ msgid "Cannot save settings, submitted form contains errors!" msgstr "" "As configurações não podem salvas, o formulário submetido contém erros!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Tabelas do armazenamento de configurações do phpMyAdmin faltando" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Não foi possível importar a configuração" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "A configuração contém dados incorretos para alguns campos." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Você quer importar o restante das configurações?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Salvo em: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importar do arquivo" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importar do armazenamento do navegador" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "Configurações serão importadas do armazenamento local do seu navegador." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Você não tem configurações salvas!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Esta funcionalidade não é suportada pelo seu navegador web" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Mesclar com configuração atual" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14353,25 +14332,25 @@ msgstr "" "Você pode definir mais configurações modificando config.inc.php, por exemplo " "usando %sscript de configuração%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Salvar como arquivo" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Salvar para o armazenamento do navegador" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Configurações serão salvas no armazenamento local do seu navegador." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Configurações existentes serão sobrescritas!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Você pode reiniciar todas as suas configurações e restaurá-las para valores " @@ -14381,35 +14360,35 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos bancos de dados" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Sem privilégios" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view server status." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view the advisor." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "O processo %s foi finalizado com sucesso." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14417,19 +14396,19 @@ msgstr "" "O phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: server_status_queries.php:42 +#: server_status_queries.php:43 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view query statistics." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: server_status_variables.php:52 +#: server_status_variables.php:53 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view status variables." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Download" @@ -14438,11 +14417,11 @@ msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" "Formset incorreto, verifique o vetor $formsets em setup/frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Não é possível carregar ou salvar a configuração" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14453,7 +14432,7 @@ msgstr "" "[doc@setup_script]documentação[/doc]. Caso contrário, você somente poderá " "baixá-la ou exibi-la." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14462,24 +14441,27 @@ msgstr "" "informações potencialmente sigilosas, como senhas) são transferidos sem " "criptografia!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Se o seu servidor também está configurado para aceitar requisições HTTPS " "siga [a@%s]este link[/a] para usar uma conexão segura." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Conexão insegura" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Configuração salva." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14488,61 +14470,61 @@ msgstr "" "phpMyAdmin. Para usá-las, copie-o para o diretório raiz e remova o diretório " "config." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Configuração salva." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Visão geral" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Exibir mensagens escondidas (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Não existem servidores configurados" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Novo servidor" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Idioma padrão" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "deixar o usuário escolher" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- nenhum -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Servidor padrão" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Fim de linha" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Exibir" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Carregar" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Página inicial do phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Doar" @@ -14578,7 +14560,7 @@ msgstr "Ignorar erros" msgid "Show form" msgstr "Mostrar formulário" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14586,15 +14568,15 @@ msgstr "" "Leitura de versão falhou. Você pode estar offline ou o servidor de " "atualização não responde." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Servidor retornou uma versão inválida de string" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Versão de string não analisável" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14603,7 +14585,7 @@ msgstr "" "Você está usando o Git, execute [kbd]git pull[/kbd] :-)[br]A versão estável " "mais nova é %s, lançada em %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Não existe nenhuma versão estável mais nova" @@ -14616,12 +14598,12 @@ msgstr "Dados incorretos" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "O banco de dados '%s' não existe." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "A tabela %s já existe!" @@ -14634,31 +14616,31 @@ msgstr "Ver o dump (esquema) da tabela" msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Linha: %1$s, Coluna: %2$s, Erro: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No versions selected." msgid "No row selected." msgstr "Não há versões selecionadas." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Rastreamento de %s está ativo." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Controle(s) de versão(ões) excluída(s) com sucesso." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Não há versões selecionadas." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Instruções SQL executadas." @@ -14860,7 +14842,7 @@ msgid "List of available transformations and their options" msgstr "Lista de transformações disponíveis e suas opções" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformação de visualização do navegador" @@ -14882,7 +14864,7 @@ msgstr "" "exemplo '\\\\xyz' ou 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformação de dado" @@ -15324,17 +15306,17 @@ msgid "Size" msgstr "Tamanho" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Criação" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Última atualização" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Última verificação" @@ -15379,6 +15361,12 @@ msgstr "" "Seu navegador tem configuração do phpMyAdmin para este domínio. Gostaria de " "importá-lo para a sessão atual?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Excluir os dados de monitoramento" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Adicionar privilégios no seguinte banco de dados:" @@ -15399,10 +15387,45 @@ msgstr "Adicionar privilégios na seguinte tabela:" msgid "Add privileges on the following table:" msgstr "Adicionar privilégios na seguinte tabela:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Novo usuário" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Nenhum privilégio" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Remover os usuários selecionados" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Revogar todos os privilégios ativos dos usuários e depois apagar eles." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Eliminar os bancos de dados que possem o mesmo nome dos usuários." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilégios específicos de coluna" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Limites de recursos" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" @@ -15435,7 +15458,7 @@ msgstr "Plugin" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "desabilitado" @@ -15594,7 +15617,7 @@ msgstr "Verificador:" msgid "Comment:" msgstr "Cometário:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Arraste para reordenar" @@ -15628,20 +15651,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Restrição de chave estrangeira" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Adicionar restrição" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15649,7 +15672,7 @@ msgstr "" "Uma relação interna é desnecessária quando uma relação de CHAVE ESTRANGEIRA " "correspondente existe." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Marque a coluna para exibir:" @@ -15702,11 +15725,11 @@ msgstr "String original" msgid "Replaced string" msgstr "String substituída" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Substituir" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Critérios de pesquisa adicionais" @@ -15777,7 +15800,7 @@ msgid "at beginning of table" msgstr "No início da tabela" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15813,28 +15836,28 @@ msgstr "Comprimento do registro" msgid "Index length" msgstr "Comprimento do registro" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "particionado" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Remover particionamento" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Tela de edição" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Uso do espaço" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efetivo" @@ -15859,31 +15882,31 @@ msgstr "Melhorar a estrutura da tabela" msgid "Track view" msgstr "Modo de visão" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Estatísticas do registro" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "estático" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinâmico" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "particionado" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Comprimento do registro" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Tamanho do registro" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Próximo auto-índice" @@ -15896,46 +15919,46 @@ msgstr "A coluna %s foi eliminada." msgid "Click to toggle" msgstr "Clique para alternar" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Obter mais temas!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tipos de MIME disponíveis" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Transformações de exibição do navegador disponíveis" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Transformações de entrada disponíveis" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Descrição" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Indo para a próxima etapa…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Você não tem direitos suficientes para estar aqui agora!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "O perfil foi atualizado." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16013,7 +16036,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16038,19 +16061,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Nenhum banco de dados selecionado." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16113,29 +16136,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "O evento %1$s foi criado." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "No início da tabela" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16154,10 +16177,16 @@ msgstr "Há caracteres inesperados na linha %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "at beginning of table" +msgid "Unexpected ordering of clauses." +msgstr "No início da tabela" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16204,7 +16233,7 @@ msgstr "" msgid "strict error" msgstr "Reunir erros" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17534,6 +17563,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está com valor 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autenticação por cookie" + #~ msgid "Try to connect without password." #~ msgstr "Tenta conectar sem senha." diff --git a/po/ro.po b/po/ro.po index bc922023b2..669d22eb82 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-10-10 18:25+0000\n" "Last-Translator: Bogdan Ciobaca \n" "Language-Team: Romanian Are you sure you " "want to continue?" @@ -2009,51 +2014,51 @@ msgstr "" "Această acţiune poate modifica definiţia anumitor coloane.
Sunteţi sigur " "că doriţi să continuaţi?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Continuă" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Adaugă cheie primară" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Cheia primară a fost adăugată." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Continuați cu pasul următor…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Primul pas de normalizare este complet pentru tabela '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Sfârşitul pasului" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Al doilea pas de normalizare (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Gata" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Confirmați dependenţele parţiale" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Dependenţe parţiale selectate sunt după cum urmează:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2061,19 +2066,19 @@ 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." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Nici o dependenţă parţială selectată!" -#: js/messages.php:452 +#: js/messages.php:453 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" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Ascunde lista dependenţelor parţiale" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2081,186 +2086,186 @@ msgstr "" "Fiți răbdător! Poate dura câteva secunde în funcţie de dimensiunea datelor " "şi numărul coloanelor tabelului." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Pas" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Vor fi efectuate următoarele acţiuni:" -#: js/messages.php:461 +#: js/messages.php:462 #, fuzzy, php-format #| msgid "DROP columns %1s from the table %2s" msgid "DROP columns %s from the table %s" msgstr "Șterge coloanele %1s din tabelul %2s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Creaţi tabelul următor" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Al treilea pas de normalizare (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Confirmați dependenţele tranzitive" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Dependenţe selectate sunt după cum urmează:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nici o dependenţă selectată!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvează" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Ascunde criteriile de căutare" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Afișează criteriile de căutare" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Intervalul de căutare" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Maximul coloanei:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Minimul coloanei:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Valorea minimă:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Valorea maximă:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Ascunde criteriile de căutare și înlocuire" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Afișează criteriile de căutare și înlocuire" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Fiecare punct reprezintă un rând de date." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Ducând mouse-ul deasupra unui punct, i se va afișa eticheta." -#: js/messages.php:492 +#: js/messages.php:493 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." -#: js/messages.php:494 +#: js/messages.php:495 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ă." -#: js/messages.php:496 +#: js/messages.php:497 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." -#: js/messages.php:498 +#: js/messages.php:499 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." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Alege două coloane" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Alege două coloane diferite" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Mărime pointer date" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Copiază" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punct" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linii terminate de" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrie" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy msgid "Inner ring" msgstr "Inel interior" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Inelul exterior:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Doriți să copiați cheia de criptare?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Cheie de criptare" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy msgid "" "Indicates that you have made changes to this page; you will be prompted for " @@ -2269,24 +2274,24 @@ msgstr "" "Indică că aţi făcut schimbări acestei pagini; o să vi se solicite " "confirmarea înainte de a anula schimbările" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Selectează coloana pentru afișare" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2294,80 +2299,80 @@ msgstr "" "Nu ați salvat schimbarile în așezare. Ele vor fi pierdute dacă nu le " "salvați. Doriți să continuați?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Numele paginii" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salvează pagina" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Salvează pagina" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina de deschidere" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Șterge pagina" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "*Untitled" msgid "Untitled" msgstr "*Fără titlu" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Selectează o pagină pentru a continua" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Doriţi să salvaţi modificările aduse paginii curente?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Pagina a fost ștearsă cu succes" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exportați schema relațională" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adăugați o opțiune pentru coloana \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d obiect(e) creat(e)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Trimite" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Apăsați escape pentru a anula editarea." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2375,15 +2380,15 @@ 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?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Deplasați pentru a reordona." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Click pentru a sorta rezultatele după această coloană." -#: js/messages.php:581 +#: js/messages.php:582 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2397,27 +2402,27 @@ msgstr "" "pentru a activa ASC/DESC.
-Control+Click pentru a îndepărta coloana " "din instrucțiunea ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Click pentru a selecta/deselecta." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Dublu click pentru a copia denumirea coloanei." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Apăsați pe săgeata verticală
pentru a alterna vizibilitatea coloanei." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Arată tot" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2426,13 +2431,13 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: js/messages.php:596 +#: js/messages.php:597 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." -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy msgid "" "Do you really want to see all of the rows? For a big table this could crash " @@ -2441,112 +2446,112 @@ msgstr "" "Sigur doriţi să vedeţi toate rândurile? Pentru un tabel mare aceasta poate " "provoca crash-ul browser-ului." -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Textul original" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "anulează" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Întrerupt" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Succes" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Starea importului" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Dați drumul la fişiere aici" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Selectaţi mai întâi baza de date" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Listare" -#: js/messages.php:620 +#: js/messages.php:621 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." -#: js/messages.php:625 +#: js/messages.php:626 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." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Mergi la adresa link-ului:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Copie denumirea coloanei." -#: js/messages.php:634 +#: js/messages.php:635 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." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generează" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mai mult" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Arată panou" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Ascunde panou" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Link-ul cu panoul principal" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Deconectarea de la panoul principal" -#: js/messages.php:653 +#: js/messages.php:654 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." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2556,56 +2561,56 @@ msgstr "" "procesul de actualizare. Noua versiune %s a fost publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", ultima versiune stabilă:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "la zi" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Creare view" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Portul serverului" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Trimite raport de eroare" -#: js/messages.php:670 +#: js/messages.php:671 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?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Modificați setările rapoartelor" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Afișează detaliile raportului" -#: js/messages.php:676 +#: js/messages.php:677 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!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2615,65 +2620,65 @@ msgstr "" "trimiterea datelor, unele câmpuri pot fi ignorate datorită configurației " "max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Anumite erori au fost detectate pe server!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Vă rugăm să vă uitați la partea de jos a acestei ferestre." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignoră tot" -#: js/messages.php:702 +#: js/messages.php:703 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." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Executați această interogare din nou?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Sigur doriți să ştergeţi acest marcaj?" -#: js/messages.php:716 +#: js/messages.php:717 #, fuzzy msgid "Some error occurred while getting SQL debug info." msgstr "A avut loc o eroare la obţinerea informaţiilor SQL de debug." -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "Comanda SQL" -#: js/messages.php:719 +#: js/messages.php:720 #, fuzzy, php-format msgid "%s argument(s) passed" msgstr "%s argument(e) trimise" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentarii tabel" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Ascunde rezultatele căutării" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2682,386 +2687,406 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiază baza de date" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Înlocuiește prefixul tabelei" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Înlocuiește prefixul tabelei" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiază tabelul cu prefix" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Următoarea" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Astăzi" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Ianuarie" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Februarie" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Martie" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Aprilie" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mai" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Iunie" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Iulie" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "August" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Septembrie" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Octombrie" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Noiembrie" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Duminică" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Luni" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Marți" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Miercuri" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Joi" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Vineri" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sâmbătă" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Du" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sâ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Săpt" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-lună-an" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "Nici unul(a)" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Oră" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minut" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Secundă" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Acest câmp este necesar" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Utilizare câmp text" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Introduceţi un număr valid!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduceţi un număr valid!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Introduceţi un număr valid!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Vă rugăm să introduceţi o lungime validă!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Vă rugăm să nu introduceţi mai mult de {0} caractere" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:929 +#: js/messages.php:937 #, 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ă" -#: js/messages.php:934 +#: js/messages.php:942 #, 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ă" -#: js/messages.php:939 +#: js/messages.php:947 #, 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ă!" -#: js/messages.php:944 +#: js/messages.php:952 #, 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ă" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduceţi un număr valid!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Eroare" @@ -3125,20 +3150,20 @@ msgid "Charset" msgstr "Set de caractere" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Interclasare" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binar" @@ -3335,7 +3360,7 @@ msgid "Czech-Slovak" msgstr "Cehoslovac" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "necunoscut" @@ -3390,7 +3415,7 @@ msgstr "" msgid "Font size" msgstr "Dimensiune font" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3398,21 +3423,21 @@ 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)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Fără semne de carte" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Consolă pentru interogare SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Fișierul de configurare nu poate fi citit!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3420,27 +3445,27 @@ msgstr "" "Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat " "corect)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Serverul nu răspunde." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" "Vă rugăm să verificați drepturile de acces ale directorului ce conține baza " "de date." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detalii…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Parametru lipsă:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3536,57 +3561,57 @@ msgstr "Inserează:" msgid "Del:" msgstr "Șterge:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Comandă SQL pe baza de date %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Trimite comanda" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Căutarea salvată:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Semn de carte nou" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Creare semn de carte" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Actualizare semn de carte" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Ștergeți semnul de carte" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "cel puțin unul dintre cuvinte" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "toate cuvintele" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "fraza exactă" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "ca o expresie" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Caută rezultate pentru \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3594,7 +3619,7 @@ msgstr[0] "Total: %s rezultat" msgstr[1] "Total: %s rezultat(e)" msgstr[2] "Total: %s rezultat(e)" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3603,48 +3628,43 @@ 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" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Navigare" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Ștergeți potrivirile pentru tabelul %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Caută în baza de date" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Cuvinte sau valori de căutat (metacaracter: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Găsește:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Cuvinte despărțite de un spațiu (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "În interiorul tabelelor:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Deselectează tot" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "In interiorul coloanei::" @@ -3664,30 +3684,30 @@ msgstr "Filtrare înregistrări" msgid "Search this table" msgstr "Caută în tabelă" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Început" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Următoarea" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Sfârșit" @@ -3696,7 +3716,7 @@ msgstr "Sfârșit" msgid "All" msgstr "Toate" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Număr de rânduri:" @@ -3705,8 +3725,8 @@ msgstr "Număr de rânduri:" msgid "Sort by key" msgstr "Sortare după cheie" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3728,10 +3748,10 @@ msgstr "Sortare după cheie" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opțiuni" @@ -3773,29 +3793,29 @@ msgstr "Text Bine Cunoscut" msgid "Well Known Binary" msgstr "Binar Bine Cunoscut" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Înregistrarea a fost ștearsă." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Oprește" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Comanda SQL a fost executată cu succes." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3803,69 +3823,69 @@ msgid "" msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Afișează înregistrările %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d în total, %2$d în interogare" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "total de %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Interogarea a durat %01.4f secunde." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Cele bifate:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Marchează toate" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Copiază în clipboard" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Arată diagramă" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Vizualizarea datelor GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Link-ul nu a fost găsit!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -3873,7 +3893,7 @@ msgid "None" msgstr "Nici unul(a)" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3881,23 +3901,23 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Prea multe mesaje de eroare, unele nu sunt afișate." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Raport" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Trimite automat raportul data viitoare" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Fișierul nu a fost un fișier încărcat." -#: libraries/File.php:263 +#: libraries/File.php:284 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." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3905,50 +3925,50 @@ msgstr "" "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " "formularul HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Fișierul a fost încărcat numai parțial." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Lipsește un dosar temporar." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Eșec la scrierea fișierului pe disc." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Încărcarea fișierului a fost împiedicată de extensie." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Fişierul este o legătură simbolică" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Fișierul nu poate fi citit!" -#: libraries/File.php:480 +#: libraries/File.php:490 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]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Eroare la mutarea fișierului încărcat." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Nu se poate citi fișierul încărcat (și mutat)." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3958,28 +3978,28 @@ msgstr "" "suportul pentru aceasta nu este implementat, fie este dezactivat de " "configurația dumneavoastră." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, 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." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Informațiile despe Git lipsesc!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Vizualizare imprimare" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Faceţi click pe bară pentru a defila la partea de sus a paginii" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Trebuie să aveți activat Javascript!" @@ -3988,20 +4008,20 @@ msgid "No index defined!" msgstr "Index nu este definit!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indexuri" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4011,78 +4031,78 @@ msgstr "Indexuri" msgid "Action" msgstr "Acțiune" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nume cheie" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unic" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Cardinalitate" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Comentariu" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Cheia primară a fost aruncată." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indexul %s a fost aruncat." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Aruncă" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, 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." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Numărul paginii:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Limbă" @@ -4108,11 +4128,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4131,14 +4151,15 @@ msgid "View" msgstr "Vizualizare" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4147,8 +4168,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4156,45 +4177,45 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Caută" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Inserare" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Drepturi de acces" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operații" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Urmărire" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4210,16 +4231,16 @@ msgstr "Declanșatori" msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4227,20 +4248,20 @@ msgstr "Rutine" msgid "Events" msgstr "Evenimente" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Coloane centrale" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Baze de date" @@ -4251,39 +4272,39 @@ msgid "User accounts" msgstr "Utilizatori" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Jurnal binar" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicare" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabile" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motoare" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Extensii" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4291,7 +4312,7 @@ msgstr[0] "%1$d rânduri afectate." msgstr[1] "%1$d rând afectat." msgstr[2] "%1$d rânduri afectate." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4299,7 +4320,7 @@ msgstr[0] "%1$d rânduri șterse." msgstr[1] "%1$d rând șters." msgstr[2] "%1$d rânduri șterse." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4348,29 +4369,29 @@ msgstr "Tabele favorite" msgid "Favorites" msgstr "Favorite" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 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." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Lipsesc informații pentru a putea salva această căutare." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "O înregistrare cu acest nume deja există." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Lipsesc informații pentru a putea șterge căutarea." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Lipsesc informații pentru a putea încărca căutarea." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Eroare în timpul încărcării căutării." @@ -4432,7 +4453,7 @@ msgstr "Afișează tabele deschise" msgid "Show slave hosts" msgstr "Afișează gazde sclavi" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Afișați status master" @@ -4488,71 +4509,71 @@ msgstr[0] "%d minut" msgstr[1] "%d minute" msgstr[2] "%d minute" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Nu există informații detaliate de stare disponibile pentru motorul de " "stocare." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, 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." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s este disponibil pentru acest server MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s a fost dezactivat pentru acest server MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Acest server MySQL nu susține motorul de stocare %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Stare tabel necunoscută:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Baza de date `%s` nu a fost găsită!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Baza de date țintă `%s` nu a fost găsită!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Bază de date invalidă:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Denumire de tabel invalidă:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Eroare la redenumirea tabelului %1$s în %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelul %1$s a fost redenumit în %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Nu am putut salva tabela cu preferinţele UI!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4561,7 +4582,7 @@ msgstr "" "Curățarea eşuată a preferințelor de interfață (vezi $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4572,19 +4593,19 @@ msgstr "" "vor fi salvate după reîncărcarea paginii. Vă rugăm verificați dacă structura " "tabelei s-a schimbat." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Numele cheii primare trebuie să fie \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Nu puteți redenumi indexul în PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nu sînt definite părți din index!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, fuzzy, 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)" @@ -4894,7 +4915,7 @@ msgid "Date and time" msgstr "Dată şi oră" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Şir de caractere" @@ -4909,70 +4930,70 @@ msgstr "Spaţial" msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Analiză statică:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Au fost găsite %d erori în timpul analizei." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "fără cod PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Trimite comanda" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Creează cod PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Creare profil" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4980,63 +5001,63 @@ msgid "Edit inline" msgstr "Modifică index" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Dum" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parametru lipsă:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Sari la baza de date \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selectați de pe serverul web un director %s: pentru încărcări:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Directorul stabilit pentru încărcare nu poate fi găsit." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Nu sunt fișiere pentru încărcare!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Golește" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Execută" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Utilizatori" @@ -5050,7 +5071,7 @@ msgstr "pe minut" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "pe oră" @@ -5058,12 +5079,12 @@ msgstr "pe oră" msgid "per day" msgstr "pe zi" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Căutare:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5071,7 +5092,7 @@ msgstr "Căutare:" msgid "Description" msgstr "Descriere" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Folosește această valoare" @@ -5108,22 +5129,22 @@ msgstr "DA" msgid "NO" msgstr "NU" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nume" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Lungime/Setare" @@ -5134,7 +5155,7 @@ msgstr "Lungime/Setare" msgid "Attribute" msgstr "Proprietăți" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 #, fuzzy msgid "A_I" msgstr "I_A" @@ -5152,11 +5173,11 @@ msgstr "Adaugă coloană" msgid "Select a column." msgstr "Selectaţi o coloană." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Adăugați o coloană nouă" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5164,7 +5185,7 @@ msgstr "Adăugați o coloană nouă" msgid "Attributes" msgstr "Proprietăți" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5173,28 +5194,28 @@ 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!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Index de server invalid: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5202,20 +5223,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Eroare: Tokenii nu se potrivesc" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "S-a încercat suprascrierea valorilor globale" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "potenţială vulnerabilitate" @@ -5804,7 +5825,7 @@ msgid "Compress on the fly" msgstr "Comprimați pe loc" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Fișier de configurare" @@ -5929,13 +5950,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Timpul maxim de execuție" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Comenzi" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Salvează ca fișier" @@ -5945,7 +5966,7 @@ msgstr "Setul de caractere al fișierului" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6074,7 +6095,7 @@ msgid "Save on server" msgstr "Salvează pe server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Suprascrie fișier(e) existent(e)" @@ -6089,7 +6110,7 @@ msgid "Remember file name template" msgstr "Șablon reține nume fișier" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" @@ -6098,7 +6119,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" @@ -6130,7 +6151,7 @@ msgstr "Tabele de stocare a configurării phpMyAdmin absente" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Adăugare %s" @@ -6311,7 +6332,7 @@ msgid "Customize the navigation tree." msgstr "Personalizați cadrul de navigare" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servere" @@ -7399,7 +7420,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Metoda de autentificare de utilizat" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipul autentificării" @@ -8336,7 +8357,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Activați tab-ul Developer în setări" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Verificați pentru ultima versiune" @@ -8347,10 +8368,10 @@ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Activați verificarea pentru ultima versiune pe pagina principală phpMyAdmin" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Verificarea versiunii" @@ -8507,25 +8528,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Text Open Document" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Lista favoritelor este plină!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabelul %s a fost golit." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Vizualizarea %s a fost eliminată" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8540,12 +8561,12 @@ msgid "Position" msgstr "Poziție" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tip eveniment" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID server" @@ -8554,7 +8575,7 @@ msgid "Original position" msgstr "Pozitie originală" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informație" @@ -8568,16 +8589,16 @@ msgstr "Truncare comenzi afișate" msgid "Show Full Queries" msgstr "Afișare comandă întreagă" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nu sînt baze de date" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8586,26 +8607,26 @@ 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." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rânduri" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Total" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Asupra" @@ -8634,33 +8655,33 @@ msgstr "" msgid "Enable statistics" msgstr "Activează statisticile" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Variabile și configurări de server" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Nu sînt date de afișat" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabelul %1$s a fost alterat cu succes." @@ -8716,7 +8737,7 @@ msgstr "Utilizatorii selectați au fost eliminați." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8736,12 +8757,12 @@ msgstr "Schimbă" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8764,13 +8785,13 @@ msgstr "Tot textul" msgid "Distinct values" msgstr "Răsfoiește valori distincte" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, 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." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nici o schimbare" @@ -8794,142 +8815,146 @@ msgstr "" "instalarea!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nu există parolă" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Parolă:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Re-tastează" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Criptare Parola" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Se exportă bazele de date de pe server-ul curent" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Se exportă tabelele din baza de date \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Se exportă rândurile din tabela \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Tip de exportare" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Șablon nume fișier" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Denumire tabel" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Creează" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Șablon nume fișier" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s tabele" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Actualizat" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "Selectaţi un tabel" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Metodă de export" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rapid - afișează doar opțiunile minimale" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Custom - afișează toate opțiunile posibile" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Baze de date" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tabele" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Format" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Opțiuni de transformare" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8937,55 +8962,55 @@ msgstr "" "Faceți scroll în jos pentru a completa opțiunile pentru formatul selectat și " "ignorați opțiunile pentru alte formate." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy msgid "Encoding Conversion:" msgstr "Versiunea clientului MySQL" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rânduri:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Șterge câteva rânduri" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Rândul de la care se începe:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Șterge toate rândurile" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Rezultat:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Salveaza pe server în directorul %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Șablon nume fișier" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ va deveni numele server-ului" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ va deveni numele bazei de date" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ va deveni numele tabelei" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -9001,124 +9026,124 @@ msgstr "" "avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ" "%5$s pentru detalii." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "folosiți pentru viitoare exportări" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Setul de caractere al fișierului:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Compresie" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "„arhivat”" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "cu „gzip”" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Trimite" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Exportă vizualizările ca tabele" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "orizontal (colontitlu rotativ)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Salvează rezultatul într-un fișier" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Selectează tabele" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Selectează tabele" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "nume bază de date" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Tabelă nouă" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Denumirile coloanelor" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Denumirile coloanelor" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 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!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Creare relație" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Creare relație" @@ -9578,13 +9603,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spațiu insuficient pentru salvarea fișierului %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9592,76 +9617,76 @@ msgstr "" "Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați " "opțiunea de suprascriere." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, 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." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Numai structura" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Modul de export" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9673,85 +9698,86 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Creează un index pe %s coloană" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Ascunde" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funcție" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, 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" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Sau" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "director de încărcare al serverului Web" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editare/Inserare" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Repornește inserția cu %s rânduri" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "și apoi" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Editează rândul următor" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9761,8 +9787,8 @@ 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" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9773,31 +9799,31 @@ msgstr "" msgid "Value" msgstr "Valoare" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rând inserat: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Numai structura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Structura și date" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Numai date" @@ -9808,14 +9834,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Adaugă constrângeri" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9876,8 +9902,8 @@ msgstr "Proceduri" msgid "Views:" msgstr "Vizualizare" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Arată" @@ -9924,19 +9950,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Salvează ca fișier" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9952,7 +9978,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Nu s-au putut adăuga coloanele!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9977,7 +10003,7 @@ msgstr "Nou" msgid "Database operations" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -10098,13 +10124,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Alege două coloane" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10358,8 +10384,8 @@ msgid "Rename database to" msgstr "Redenumire bază de date în" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10407,187 +10433,187 @@ msgstr "(individual)" msgid "Move table to (database.table)" msgstr "Mută tabelul la (bază_de_date.tabel)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Redenumire tabel la" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Comentarii tabel" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opțiuni tabel" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Motor de stocare" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Copiază tabelul la (bază_de_date.tabel)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Schimbă la tabela copiată" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Administrare tabel" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analizare tabel" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Verificare tabel" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Verificare tabel" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentare tabel" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabelul %s a fost curățat." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Curățarea tabelului (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizare tabel" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparare tabel" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy msgid "Delete data or table" msgstr "Șterge datele urmărite din acest tabel" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nu sînt baze de date" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizează" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Verifică" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimizează" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Reconstruiește" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Repară" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Restrânge" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Întreținerea partiției" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partiția %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Elimină partiționarea" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Nu se poate muta tabelul în el însuși!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Nu se poate copia tabelul în el însuși!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabelul %s a fost mutat la %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabelul %s a fost copiat la %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelul %s a fost mutat la %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelul %s a fost copiat la %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Denumirea tabelului e goală!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10618,18 +10644,18 @@ msgstr "Arată culoarea" msgid "Only show keys" msgstr "Vezi numai cheile" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Conexiune esuata: setari invalide." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Bine ați venit la %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10639,7 +10665,7 @@ msgstr "" "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " "astfel de fișier." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10651,7 +10677,7 @@ msgstr "" "fișierul de configurare și asigurați-vă că ele corespund informațiilor " "furnizate de administratorul serverului MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10678,15 +10704,15 @@ msgstr "Nume utilizator:" msgid "Server Choice:" msgstr "Alegerea serverului" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10764,7 +10790,7 @@ msgstr "Opțiuni de afișare a bazelor de date" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" @@ -10773,7 +10799,7 @@ msgstr "Salvarea datelor din tabel" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Eveniment" @@ -10781,8 +10807,8 @@ msgstr "Eveniment" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definiție" @@ -10884,7 +10910,7 @@ msgstr "Pune numele coloanelor în primul rând" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11456,7 +11482,7 @@ msgstr "Sumar" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -11893,18 +11919,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Nu există descriere" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11912,41 +11938,41 @@ msgid "" "configuration storage there." msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Acest server este configurat ca master într-un proces de replicare." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Afișați sclavi conectați" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Configurare master" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11967,20 +11993,20 @@ msgstr "" "date), fie a ignora toate bazele de date implicit și a permite doar " "anumitora să fie duplicate. Va rugăm sa selectați modul:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Selectați baza de date" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11988,7 +12014,7 @@ 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." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11998,101 +12024,101 @@ msgstr "" "ar trebui să vedeți un mesaj care vă informează că acest server este " "configurat ca master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy msgid "Master connection:" msgstr "Comprimă conexiunea" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Thread-ul SQL slave nu rulează!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Thread-ul IO slave nu rulează!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 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ă:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Tot textul" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 #, fuzzy msgid "Full stop" msgstr "Tot textul" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Numai structura" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Numai structura" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Schimbați sau reconfigurați server-ul master" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -12101,11 +12127,11 @@ msgstr "" "Acest server nu este configurat ca master într-un proces de replicare. " "Doriți să îl configurați?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -12114,97 +12140,97 @@ msgstr "" "configurare(my.cnf). Dacă nu, vă rugăm să adăugați următoarea linie în " "secțiunea [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Nume utilizator" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Nume utilizator" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Parola" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Port" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Stare master" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Stare sclav" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabil" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Gazda" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Această gazdă" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Oricare utilizator" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Utilizare câmp text" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12212,88 +12238,88 @@ msgstr "" "Când tabela Host este folosită, acest câmp este ignorat și valorile din " "tabela Host sunt folosite în schimb." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Re-tastează" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Generează parolă" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy msgid "Replication started successfully." msgstr "Replicare" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy msgid "Replication resetting successfully." msgstr "Replicare" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Eroare" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Eroare necunoscută" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Nu s-a putut realiza conexiunea la master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 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." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Nu s-a putut schimba master-ul" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "Server master schimbat cu succes în %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12314,7 +12340,7 @@ msgstr "Evenimentul %1$s a fost modificat." msgid "Event %1$s has been created." msgstr "Evenimentul %1$s a fost creat." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -12328,53 +12354,53 @@ msgstr "" msgid "Edit event" msgstr "Editează evenimentul" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detalii" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Tip eveniment" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Schimbați în %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Execută la" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Execută fiecare" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Începutul" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Sfârșitul" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Inserări complete" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definitor" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 #, fuzzy #| msgid "The definer must be in the \"username@hostname\" format" msgid "The definer must be in the \"username@hostname\" format!" @@ -12382,31 +12408,31 @@ msgstr "" "Datele introduse aici trebuie sa fie în format-ul \"nume-de-" "utilizator@numele-gazdei\" (username@hostname)" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide an event name" msgid "You must provide an event name!" msgstr "Trebuie să introduceți un nume de eveniment" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Trebuie să introduceți o valoare internă validă pentru eveniment." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Trebuie să introduceți un timp valid de execuție pentru eveniment." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Trebuie să introduceți un tip valid pentru eveniment." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Trebuie să introduceți o definiție pentru eveniment." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -12429,7 +12455,7 @@ msgstr "Statutul programatorului de evenimente" msgid "The backed up query was:" msgstr "Interogarea de rezervă era:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Întoarce" @@ -12445,111 +12471,111 @@ msgstr "" "eșua![/strong] Vă rugăm să folosiți extensia îmbunătățită 'mysqli' pentru a " "evita orice problemă." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Regim de redactare" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Index de server nevalid: „%s”" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Ne pare rău, am eșuat încercând să recuperăm rutina ștearsă." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Tabelul %1$s a fost modificat." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Tabelul %1$s a fost modificat." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametrii" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Legături directe" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Adăugați parametru" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Ștergeți ultimul parametru" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Tipul întors" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lungime/Setare" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opțiuni tabel" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Este determinist" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tip de securitate" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Acces date SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "Trebuie să introduceți un nume de rutină" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direcție invalidă \"%s\" dată pentru parametru." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -12557,25 +12583,25 @@ msgstr "" "Trebuie să oferiți lungime/valori pentru parametrii de tipul ENUM, SET, " "VARCHAR și VARBINARY ai rutinei." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 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." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Rutina trebuie să întoarcă un tip valid." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Trebuie să introduceți o definiție a rutinei." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Rezultatele execuției rutinei %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12585,13 +12611,13 @@ 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" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Executați rutina" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parametrii rutinei" @@ -12617,44 +12643,44 @@ msgstr "Tabelul %1$s a fost creat." msgid "Edit trigger" msgstr "Adaugă un server nou" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Declanșatori" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Timp" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a trigger name!" msgstr "Trebuie să introduceți un nume de rutină" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, 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." -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, 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." -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Denumire de tabel nevalidă" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12793,95 +12819,95 @@ msgstr "Set de caractere și gestiunea acestora" msgid "Databases statistics" msgstr "Statisticile bazelor de date" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Fără drepturi." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Permite citirea datelor." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Permite schimbarea datelor." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Permite stergere de date." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12891,138 +12917,108 @@ msgstr "" "pentru majoritatea operațiunilor administrative, cum ar fi setarea " "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, 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" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Permite crearea și eliminarea declanșatorilor" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nici unul(a)" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Conexiuni persistente" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Conexiuni persistente" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Limitare de resurse" - -#: libraries/server_privileges.lib.php:880 -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." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 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ă." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13030,417 +13026,392 @@ msgstr "" "Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " "baze de date executabile de utilizator într-o oră." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 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ă." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Permite alterarea și aruncarea rutinelor stocate." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Permite executarea rutinelor stocate." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml: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ă" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administrare" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilegii globale" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " "de drepturi." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentificare Cookie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autentificare Signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Autentificare Cookie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Informații de autentificare" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Utilizare câmp text" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Nume utilizator" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Denumire jurnal" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentificare" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Criptare Parola" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Drepturile tale au fost revocate pentru %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Adaugă utilizator" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Bază de date pentru utilizatorul" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Creează o bază de date cu același nume și acordă toate privilegiile." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Verifică privilegiile pentru baza de date \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizatorul are acces la \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vizualizarea %s a fost eliminată" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Permite" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Oricare" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "Metacaracter" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Revocare" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redactează serverul" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… menține cel vechi." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… șterge cel vechi din tabelul de utilizatori." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "…revocă toate privilegiile active de la utilizatorul vechi și șterge-l după " "aceea." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, 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…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Drepturi specifice coloanei" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Eliminarea utilizatorilor selectați" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " -"acestora." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Aruncă baza de date care are același nume ca utilizatorul." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Drepturi de acces" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Utilizator" -#: libraries/server_privileges.lib.php:4620 -#, fuzzy -#| msgid "New" -msgctxt "Create new user" -msgid "New" -msgstr "Nou" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Utilizatori" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Descriere utilizator" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13453,7 +13424,7 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13472,11 +13443,11 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." @@ -13781,13 +13752,13 @@ msgstr "Comanda" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Fișiere" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13816,12 +13787,12 @@ msgstr "pe minut" msgid "per second:" msgstr "pe secundă" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Comenzi" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13853,34 +13824,34 @@ msgstr "Afișează tabele deschise" msgid "Related links:" msgstr "Legături" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13888,11 +13859,11 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13900,68 +13871,68 @@ msgstr "" "Numărul de tabele temporare create automat în memorie de căter server în " "timpul execuției de interogări." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13969,7 +13940,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13977,42 +13948,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 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." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Numărul de pagini conținînd date (curate sau murdare)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14020,33 +13991,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14055,248 +14026,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Numărul total de citiri de date." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Numărul total de scrieri de date." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Cantitatea totală de date scrisă până acum, în bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 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." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 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." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rânduri citite din tabelele InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rânduri actualizate în tabelele InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formatul fișierului importat" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14304,99 +14275,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Numărul de rânduri sortate." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14404,18 +14375,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14423,13 +14394,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Monitorizarea nu este activată" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14466,49 +14437,49 @@ msgstr "Bază de date pentru utilizatorul" msgid "Table level tabs" msgstr "Denumire tabel" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Vizualizare" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Adaugă utilizator" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Fără drepturi." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Denumirile coloanelor" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versiune server" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Bază de date pentru utilizatorul" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14635,7 +14606,7 @@ msgstr "Execută interogare SQL asupra bazei de date %s" msgid "Run SQL query/queries on table %s" msgstr "Execută interogare SQL asupra bazei de date %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Goliți" @@ -14726,102 +14697,102 @@ msgstr "Dezactivează acum" msgid "Version" msgstr "Persană" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Creat" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Actualizat" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Creează versiune" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Raport de monitorizare" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Instantaneu al structurii" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "activ" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "inactiv" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy msgid "Delete tracking data row from report" msgstr "Șterge datele urmărite din acest tabel" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nu sînt date" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Execuție SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportă ca %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Dată" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Nume utilizator:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14829,77 +14800,77 @@ msgctxt "None for default" msgid "None" msgstr "Nici unul/una" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitorizarea este activată" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitorizarea este activată" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Creare relație" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabele fără monitorizare" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Monitorizează tabel" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabele monitorizate" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Ultima versiune" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Se șterg datele monitorizare" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versiuni" @@ -14909,7 +14880,7 @@ msgstr "Versiuni" msgid "Manage your settings" msgstr "Facilități generale" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14937,7 +14908,7 @@ msgstr "Eroare în arhiva ZIP:" msgid "No files found inside ZIP archive!" msgstr "Niciun fișier nu a fost găsit în arhiva ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14947,83 +14918,83 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Nu se pot salva setările, formularul trimis conține erori" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nu s-a putut importa configurația" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Configurația conține date incorecte pentru anumite câmpuri." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Doriți să importați setările rămase?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Salvat pe: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importați din fișier" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importați din depozitul browser-ului" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" "Setările vor fi importate din depozitul local al browser-ului dumneavoastră." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Nu aveți setări salvate!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Această facilitate nu este suportată de browser-ul dumneavoastră web" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Salvează ca fișier" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -15031,31 +15002,31 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nu există drepturi de acces" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -15063,15 +15034,15 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Descarcă" @@ -15079,105 +15050,104 @@ msgstr "Descarcă" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 #, fuzzy msgid "Insecure connection" msgstr "Comprimă conexiunea" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Modificările au fost salvate" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Modificările au fost salvate" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 #, fuzzy msgid "New server" msgstr "Server Web" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Afișează" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Local" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "Documentație phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 #, fuzzy msgid "Donate" msgstr "Date" @@ -15215,29 +15185,29 @@ msgstr "" msgid "Show form" msgstr "Arată culoarea" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "A primit de la server un număr de versiune invalid" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 #, fuzzy msgid "Unparsable version string" msgstr "Şirul de caractere al versiunii nu este descifrabil." -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Nu este disponibilă nici o versiune stabilă nouă" @@ -15250,12 +15220,12 @@ msgstr "Date greșite" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Baza de date „%s” nu există." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabelul %s există deja!" @@ -15268,36 +15238,36 @@ msgstr "Vizualizarea schemei tabelului" msgid "Invalid table name" msgstr "Denumire de tabel nevalidă" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Nici un rând selectat" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "Monitorizarea este activată" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Nici un rând selectat" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15527,7 +15497,7 @@ msgid "List of available transformations and their options" msgstr "Transformări disponibile" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15553,7 +15523,7 @@ msgstr "" "\\xyz' sau 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16060,17 +16030,17 @@ msgid "Size" msgstr "Dimensiune" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Creare" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Ultima actualizare" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Ultima verficare" @@ -16105,6 +16075,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Se șterg datele monitorizare" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16127,10 +16103,53 @@ msgstr "Adaugă drepturi la următorul tabel" msgid "Add privileges on the following table:" msgstr "Adaugă drepturi la următorul tabel" +#: templates/privileges/add_user_fieldset.phtml:2 +#, fuzzy +#| msgid "New" +msgctxt "Create new user" +msgid "New" +msgstr "Nou" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nici unul(a)" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Eliminarea utilizatorilor selectați" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " +"acestora." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Aruncă baza de date care are același nume ca utilizatorul." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Limitare de resurse" + +#: templates/privileges/resource_limits.phtml:5 +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." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" @@ -16165,7 +16184,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16343,7 +16362,7 @@ msgstr "Utilizator:" msgid "Comment:" msgstr "Comentariu:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16381,22 +16400,22 @@ msgstr "" msgid "Foreign key constraint" msgstr "Constrîngere de cheie străină" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Adaugă constrângeri" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relații interne" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relație internă" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16404,7 +16423,7 @@ msgstr "" "Nu este necesară o relație internă atunci cînd există o cheie externă " "corespondentă." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16462,11 +16481,11 @@ msgstr "Textul original" msgid "Replaced string" msgstr "Text înlocuit" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Înlocuire" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Criterii de căutare suplimentare" @@ -16546,7 +16565,7 @@ msgid "at beginning of table" msgstr "La începutul tabelului" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16582,30 +16601,30 @@ msgstr "Lungime linie" msgid "Index length" msgstr "Lungime linie" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "partiționat" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Elimină partiționarea" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Vizualizare imprimare" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Utilizare spațiu" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efectiv" @@ -16634,33 +16653,33 @@ msgstr "Propune structura de tabele" msgid "Track view" msgstr "Vedere de monitorizare" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Statisticile rândului" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamic" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partiționat" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Lungime linie" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Mărime rând" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16674,50 +16693,50 @@ msgstr "Tabelul %s a fost aruncat" msgid "Click to toggle" msgstr "Faceţi click pentru a comuta" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Temă" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Obține mai multe teme!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tipuri MIME disponibile" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Transformări disponibile" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Transformări disponibile" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Descriere" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Continuați cu pasul următor…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profilul a fost actualizat." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16795,7 +16814,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16820,19 +16839,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Nici o bază de date selectată." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16895,29 +16914,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Evenimentul %1$s a fost creat." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Șablon nume tabel" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "La începutul tabelului" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16936,10 +16955,16 @@ msgstr "Caractere neaşteptate pe linia %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "La începutul tabelului" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16986,7 +17011,7 @@ msgstr "" msgid "strict error" msgstr "Strânge erorile" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18255,6 +18280,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert este setat cu 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autentificare Cookie" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/ru.po b/po/ru.po index b4d6608401..8f44455e2e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:29+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Russian " -"\n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -28,31 +28,31 @@ msgstr "" "Файл %s не найден. Вся дополнительная информация находится на сайте www." "phpmyadmin.net." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Центральный список столбцов для текущей базы данных пуст." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Кликните для сортировки." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Отображение строк %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Комментарий к базе данных" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Комментарии к таблице:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -64,13 +64,13 @@ msgstr "Комментарии к таблице:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -81,9 +81,9 @@ msgstr "Комментарии к таблице:" msgid "Column" msgstr "Столбец" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -94,12 +94,12 @@ msgstr "Столбец" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -111,9 +111,9 @@ msgstr "Столбец" msgid "Type" msgstr "Тип" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -124,15 +124,15 @@ msgstr "Тип" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -143,14 +143,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "По умолчанию" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -160,7 +160,7 @@ msgstr "По умолчанию" msgid "Links to" msgstr "Ссылки на" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -174,19 +174,19 @@ msgstr "Ссылки на" msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Первичный" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -194,13 +194,13 @@ msgstr "Первичный" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -208,17 +208,17 @@ msgstr "Первичный" msgid "No" msgstr "Нет" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -227,13 +227,13 @@ msgstr "Нет" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -245,15 +245,15 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Отобразить дамп (схему) базы данных" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -262,8 +262,8 @@ msgid "Tables" msgstr "Таблицы" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -271,10 +271,10 @@ msgstr "Таблицы" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -287,27 +287,27 @@ msgstr "Структура" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Данные" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Выбрать все" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "База данных %1$s переименована в %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "База данных %1$s скопирована в %2$s." @@ -318,37 +318,37 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "Хранилище конфигурации phpMyAdmin неактивно. %sУзнайте причину%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Необходимо выбрать хотя бы один столбец для отображения!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Переключиться на %sвизуальный составитель запросов%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "В доступе отказано!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Данные слежения успешно удалены." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "Версия %1$s для выбранных таблиц создана, отслеживание включено." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Ни одна таблица не выбрана." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Журнал базы данных" @@ -386,131 +386,131 @@ msgstr "Ошибочный тип!" msgid "Bad parameters!" msgstr "Ошибочные параметры!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Значение для столбца \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Используйте в качестве основного слоя OpenStreetMaps" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Геометрия %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Точка:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Добавить точку" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Отрезок %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Внешний контур:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Внутренний контур %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Добавить отрезок" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Добавить внутренний контур" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Многоугольник %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Добавить многоугольник" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Добавить геометрию" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Вперёд" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Вывод" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -518,19 +518,19 @@ msgstr "" "Из столбца \"Функция\" выберите \"GeomFromText\" и вставьте строку ниже в " "поле \"Значение\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Удалось" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Ошибка" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Неполные параметры" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -539,15 +539,15 @@ msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Закладка удалена." -#: import.php:489 +#: import.php:486 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 " @@ -557,16 +557,16 @@ msgstr "" "импортируемого файла превышает максимально допустимый, заданный в настройках " "PHP. Смотрите [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Не удалось загрузить модули импорта. Пожалуйста, проверьте установку!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Закладка %s создана." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -574,7 +574,7 @@ msgstr[0] "Импорт успешно завершён, выполнен %d з msgstr[1] "Импорт успешно завершён, выполнено %d запроса." msgstr[2] "Импорт успешно завершён, выполнено %d запросов." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -583,7 +583,7 @@ msgstr "" "Достигнут временной лимит выполнения скрипта. Для завершения импорта, " "пожалуйста %sповторно отправьте тот же файл%s и импорт будет возобновлен." -#: import.php:632 +#: import.php:629 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." @@ -592,7 +592,7 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php скриптов." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) отключена." @@ -600,17 +600,17 @@ msgstr "Команда \"DROP DATABASE\" (удалить базу данных) msgid "Could not load the progress of the import." msgstr "Не удалось загрузить прогресс (ход) импорта." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Назад" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Демо-сервер phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -621,107 +621,107 @@ msgstr "" "пожалуйста, не изменяйте пользователей root, debian-sys-maint и pma. " "Дополнительная информация доступна на %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Основные настройки" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Изменить пароль" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Сопоставление кодировки соединения" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Настройки внешнего вида" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Дополнительные настройки" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Сервер баз данных" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Сервер:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Тип сервера:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Версия сервера:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Версия протокола:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Пользователь:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Кодировка сервера:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Веб-сервер" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Версия клиента базы данных:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP расширение:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Версия PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Информация о версии:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Документация" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Официальная страница phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Пожертвовать" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Получить помощь" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Список изменений" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Лицензия" -#: index.php:443 +#: index.php:444 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 " @@ -731,7 +731,7 @@ msgstr "" "mbstring phpMyAdmin не в состоянии производить корректное разбиение строк, " "что может привести к непредсказуемым результатам." -#: index.php:458 +#: index.php:459 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." @@ -740,7 +740,7 @@ msgstr "" "этим, некоторые возможности, включая отправление ошибок и проверка версий, " "отключены." -#: index.php:473 +#: index.php:474 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 " @@ -753,7 +753,7 @@ msgstr "" "этой причине сессия входа может закончиться быстрее установленной в " "phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -761,17 +761,17 @@ msgstr "" "Значение длительности хранения cookie меньше, чем определено в phpMyAdmin. " "По этой причине сессия входа завершится быстрее установленной в phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "В конфигурационном файле необходимо задать парольную фразу (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "Секретная парольная фраза в конфигурации (blowfish_secret) слишком короткая." -#: index.php:528 +#: index.php:529 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 " @@ -784,7 +784,7 @@ msgstr "" "может быть скомпрометирована через свободный доступ к загрузке " "конфигурационного файла." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -793,14 +793,14 @@ msgstr "" "Хранилище конфигурации phpMyAdmin не полностью настроено, некоторые " "расширенные функции были отключены. %sУзнайте причину%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Или перейдите на вкладку 'Операции' любой базы данных, чтобы настроить " "хранилище в ней." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -809,7 +809,7 @@ msgstr "" "Версия клиентской библиотеки MySQL %s отличается от версии установленного " "MySQL-сервера %s. Это может привести к некорректной работе." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -977,7 +977,7 @@ msgid "Save & close" msgstr "Сохранить и Закрыть" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Сбросить" @@ -1009,7 +1009,7 @@ msgstr "Добавить индекс" msgid "Edit index" msgstr "Редактировать индекс" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Добавить %s столбец(ы) к индексу" @@ -1034,10 +1034,10 @@ msgstr "Пожалуйста, выберите столбец(ы) для инд msgid "You have to add at least one column." msgstr "Необходимо добавить хотя бы одно поле." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Предпросмотр SQL" @@ -1049,7 +1049,7 @@ msgstr "Имитировать запрос" msgid "Matched rows:" msgstr "Затронуто строк:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL запрос:" @@ -1066,13 +1066,13 @@ msgstr "Пустое имя хоста!" msgid "The user name is empty!" msgstr "Пустое имя пользователя!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Пустой пароль!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" @@ -1080,8 +1080,8 @@ msgstr "Некорректное подтверждение пароля!" msgid "Removing Selected Users" msgstr "Удаление выбранных пользователей" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Закрыть" @@ -1103,19 +1103,19 @@ msgstr "Шаблон удален." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Другое" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1221,40 +1221,40 @@ msgid "Processes" msgstr "Процессы" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КиБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "ГиБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "ПиБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "ЭБ" @@ -1272,7 +1272,7 @@ msgstr "Вопросы" msgid "Traffic" msgstr "Трафик" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Настройки" @@ -1286,16 +1286,16 @@ msgid "Please add at least one variable to the series!" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Ниодного" @@ -1493,20 +1493,20 @@ msgstr "Анализ…" msgid "Explain output" msgstr "Анализ результатов" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Состояние" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Время" @@ -1593,10 +1593,10 @@ msgstr "" "изначальную конфигурацию…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Импорт" @@ -1669,7 +1669,7 @@ msgstr "Параметры не найдены!" msgid "Cancel" msgstr "Отменить" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Настройки, касающиеся страницы" @@ -1709,8 +1709,8 @@ msgid "Error text: %s" msgstr "Текст ошибки: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Ни одна база данных не выбрана." @@ -1748,7 +1748,7 @@ msgstr "Копирование базы данных" msgid "Changing charset" msgstr "Смена кодировки" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Включить проверку внешних ключей" @@ -1776,72 +1776,77 @@ msgstr "Просмотр" msgid "Deleting" msgstr "Удаление" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Удалить соответствия для таблицы %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Определение хранимой функции должно содержать выражение RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Экспорт" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Редактор ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Значения для столбца %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Значения для новых столбцов" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Вставьте каждое значение в отдельное поле." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Добавить %d значение(й)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Замечание: если файл содержит множество таблиц, они будут объединены в одну." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Скрыть поле запроса" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Отобразить поле запроса" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1849,53 +1854,53 @@ msgstr "Отобразить поле запроса" msgid "Edit" msgstr "Изменить" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Удалить" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Нет автосохраненных запросов" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Переменная %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Выбрать" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Селектор столбца" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Искать в списке" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1905,15 +1910,15 @@ msgstr "" "столбцов для базы данных %s имеет столбцы, которые не присутствуют в текущей " "таблице." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Больше информации" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Вы уверены?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1921,51 +1926,51 @@ msgstr "" "Это действие может изменить некоторые определения столбцов.
Вы уверены, " "что хотите продолжить?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Продолжить" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Добавить первичный ключ" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Добавлен первичный ключ." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Переход к следующему шагу…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Первый этап нормализации таблицы '%s' завершён." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Конец шага" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Второй этап нормализации (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Готово" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Подтвердите частичные зависимости" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Выбранные частичные зависимости показаны ниже:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1973,20 +1978,20 @@ msgstr "" "Примечание: a, b -> d, f подразумевает, что значения столбцов a и b при " "объединении вместе могут определить значения столбца d и столбца f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Не выбраны зависимости!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажите мне возможные частичные зависимости на основе данных в таблице" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Скрыть список частичных зависимостей" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1994,180 +1999,180 @@ msgstr "" "Подождите, пожалуйста! Это может занять несколько секунд, в зависимости от " "объёма данных и количества столбцов таблицы." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Шаг" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Выполнены следующие действия:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP столбцов %s в таблице %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Создать следующую таблицу" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Третий этап нормализации (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Подтвердите транзитивные зависимости" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Выбранные зависимости показаны ниже:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Не выбраны зависимости!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сохранить" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Скрыть параметры поиска" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Поиск в диапазоне" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Максимум в столбце:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Минимум в столбце:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Минимальное значение:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Максимальное значение:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Скрыть параметры поиска и замены" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Отобразить параметры поиска и замены" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Каждая точка представляет строку данных." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Удержание курсора над точкой отобразит ее название." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Для увеличения, выберите часть диаграммы мышкой." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Кликните ссылку сброса увеличения для возвращения к исходному состоянию." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Кликните точку данных для просмотра или редактирования строки данных." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Можно изменить размер участка перетащив его вдоль нижнего правого угла." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Выберите два столбца" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Выберите два различных столбца" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Содержание точки данных" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Копировать" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Точка" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Линия" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Многоугольник" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Внутренний контур" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Внешний контур" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Вы хотите скопировать ключ шифрования?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Ключ шифрования" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2175,24 +2180,24 @@ msgstr "" "Показывает, что были произведены изменения на странице. Для отмены изменений " "потребуется подтверждение" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Выберите поле основного индекса (PRIMARY) или уникального индекса!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2200,76 +2205,76 @@ msgstr "" "Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. " "Продолжить?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Название страницы" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Сохранить страницу" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Сохранить страницу как" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Открыть страницу" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Удалить страницу" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Без названия" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Выберите следующую страницу" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Введите правильное имя страницы" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Вы хотите записать изменения на текущую страницу?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Страница успешно удалена" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Экспорт схемы связей" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Добавить параметр для столбца \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "создано %d объект(ов)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Выполнить" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Для отмены редактирования нажмите Esc." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2277,15 +2282,15 @@ msgstr "" "Вы отредактировали некоторые данные, но изменения не были сохранены. Вы " "уверены, что хотите покинуть данную страницу без сохранения данных?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Перетяните для изменения порядка сортировки." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Кликните для сортировки результатов по данному столбцу." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2295,26 +2300,26 @@ msgstr "" "переключения ASC/DESC.
- Удерживая Ctrl или Alt (для Mac: удерживая " "Shift и Option), кликните для удаления столбца из класса ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Кликните для установки/снятия отметки." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Кликните дважды для копирования имени столбца." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Кликните выпадающую стрелку
для переключения видимости столбца." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Показать все" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2323,13 +2328,13 @@ msgstr "" "могут не работать функции связанные с редактированием сетки, выставления " "галочки, ссылки редактирования, копирования и удаления." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Пожалуйста, введите допустимую шестнадцатеричную строку. Допустимыми знаками " "являются 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2337,104 +2342,104 @@ msgstr "" "Вы действительно хотите отобразить все строки? При большом количестве данных " "возможно отключение браузера." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Исходный размер" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "Отмена" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прервано" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Успех" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Импортировать состояние" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Перетащите файлы сюда" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Выберите базу данных" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печать" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Большинство значений можно отредактировать
дважды кликнув прямо на них." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "Возможно редактировать большинство значений
кликнув прямо на них." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Перейти к ссылке:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Скопировать имя столбца." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Для копирования имени столбца в буфер обмена, сделайте щелчок правой кнопкой " "мышки." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Ещё" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Раскрыть панель" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Скрыть панель" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Отображать скрытые пункты дерева навигации." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Связать с главной панелью" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Отсоединить от основной панели" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запрошенная страница не найдена в истории, возможно, истекло время ее " "хранения." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2444,49 +2449,49 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "актуально" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Создать представление" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Отправить отчёт об ошибках" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Отправить отчёт об ошибке" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Произошла фатальная ошибка JavaScript. Вы хотите отправить отчёт об ошибке?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Изменить настройки отчёта" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Показать детали отчёта" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Ваш экспорт незавершён из-за ограничений времени выполнения на уровне PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2496,60 +2501,60 @@ msgstr "" "поля могут быть проигнорированы согласно значения переменной max_input_vars " "в PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "На сервере обнаружены некоторые ошибки!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Пожалуйста, посмотрите вниз текущего окна." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Игнорировать всё" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "В соответствии с вашими настройками они заносятся в данное время, подождите, " "пожалуйста." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Выполнить запрос ещё раз?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Вы действительно хотите удалить эту закладку?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "В процессе получения информации по отладке SQL произошла ошибка." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s запрос(ов) выполнено %s раз(а) за %s секунд(у/ы)." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s аргумент(ов/а) передано" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Отобразить аргументы" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Скрыть аргументы" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Занято времени:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2564,350 +2569,370 @@ msgstr "" "содержимое и данные пользователя\" может ее решить. В Safari, данную " "проблему обычно вызывает установка \"Режим частного доступа\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Скопировать таблицы в" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Добавить префикс таблицы" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy msgid "Replace table with prefix" msgstr "Заменить префикс таблицы" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копировать таблицу с префиксом" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Предыдущий" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Сегодня" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Январь" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Февраль" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Март" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Апрель" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Май" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Июнь" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Июль" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Август" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Сентябрь" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Октябрь" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Ноябрь" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Дек" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Пятница" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Нед." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "календарь-месяц-год" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Час" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Минута" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Секунда" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Это обязательное поле" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Пожалуйста, исправьте это поле" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Введите правильный email" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Пожалуйста, введите правильный URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Введите правильную дату" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Введите правильную дату ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Пожалуйста, введите правильное числовое значение" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Пожалуйста, введите правильный номер кредитной карты" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Пожалуйста, введите только цифровые символы" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Введите то же значение еще раз" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Пожалуйста, введите не более {0} символ(ов/а)" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Пожалуйста, введите не минее {0} символ(ов/а)" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Пожалуйста, введите значение длиной между {0} и {1} символами(ом)" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Пожалуйста, введите значение между {0} и {1} символами(ом)" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Пожалуйста, введите значение меньшее или равное {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Пожалуйста, введите значение, большее или равное {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Введите правильную дату или время" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Пожалуйста, введите правильное значение HEX" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Ошибка" @@ -2972,20 +2997,20 @@ msgid "Charset" msgstr "Кодировка" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Сравнение" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Двоичный" @@ -3180,7 +3205,7 @@ msgid "Czech-Slovak" msgstr "Чехословацкий" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "неизвестно" @@ -3231,7 +3256,7 @@ msgstr "" msgid "Font size" msgstr "Размер шрифта" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3239,44 +3264,44 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Нет закладок" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Консоль SQL запроса" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy msgid "Failed to set configured collation connection!" msgstr "Ошибка при чтении конфигурационного файла!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Сервер не отвечает." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Детали…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy msgid "Missing connection parameters!" msgstr "Отсутствующий параметр:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ошибка при указании соединения для controluser в конфигурации." @@ -3370,57 +3395,57 @@ msgstr "Вставить:" msgid "Del:" msgstr "Удалить:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запрос к базе данных %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Выполнить запрос" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Закладка поиска:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Новая закладка" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Создать закладку" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Обновить закладку" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Удалить закладку" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "любое из слов" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "все слова" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "точное соответствие" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "регулярное выражение" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результаты поиска по \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3428,7 +3453,7 @@ msgstr[0] "Итого: %s соответствие" msgstr[1] "Итого: %s соответствия" msgstr[2] "Итого: %s соответствий" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -3436,46 +3461,41 @@ msgstr[0] "%1$s соответствие в таблице %2$s msgstr[1] "%1$s соответствия в таблице %2$s" msgstr[2] "%1$s соответствий в таблице %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Обзор" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Удалить соответствия для таблицы %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Поиск в базе данных" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова или значения для поиска (групповой символ: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Искать:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Слова разделяются пробелом (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "В таблицах:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Снять выделение" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "В поле:" @@ -3495,30 +3515,30 @@ msgstr "Фильтровать строки" msgid "Search this table" msgstr "Поиск в таблице" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Предыдущая" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Следующая" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Конец" @@ -3527,7 +3547,7 @@ msgstr "Конец" msgid "All" msgstr "Все" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Количество строк:" @@ -3536,8 +3556,8 @@ msgstr "Количество строк:" msgid "Sort by key" msgstr "Сортировать по индексу" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3559,10 +3579,10 @@ msgstr "Сортировать по индексу" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Параметры" @@ -3603,29 +3623,29 @@ msgstr "Текст (WKT)" msgid "Well Known Binary" msgstr "Бинарный (WKB)" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Строка была удалена." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Завершить" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Может быть приблизительно. Смотрите [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "SQL-запрос успешно выполнен." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3634,73 +3654,73 @@ msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Отображение строк %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d всего, %2$d в запросе" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d всего" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Запрос занял %01.4f сек." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "С отмеченными:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Отметить все" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "В буфер обмена" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Отобразить график" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Визуализация GIS данных" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Связь не найдена!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Нет" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Конвертировать в Кану" @@ -3710,25 +3730,25 @@ msgstr "" "Слишком большое количество сообщений об ошибках, некоторые из которых не " "отображаются." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Отчёт" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Автоматически отправлять отчёт в следующий раз" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Файл не был загружен." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Размер загружаемого файла превышает значение директивы upload_max_filesize " "установленное в конфигурационном файле PHP (php.ini)." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3736,49 +3756,49 @@ msgstr "" "Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " "определенной в HTML форме." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Загруженный файл был загружен только частично." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Не найден каталог для хранения временных файлов." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Ошибка при попытке записи файла на диск." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Загрузка файла остановлена из-за расширения." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Ошибка при чтении файла!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Ошибка при перемещении загруженного файла, смотрите [doc@faq1-11]FAQ 1.11[/" "doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Ошибка при перемещении загруженного файла." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Невозможно прочесть загруженный файл." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3787,28 +3807,28 @@ msgstr "" "Загружаемый файл сжат методом (%s), который не поддерживается. Поддержка " "данного метода ещё нереализована либо отключена при настройке." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Запущена Git ревизия %1$s из ветки %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Отсутствует Git информация!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Открыть phpMyAdmin в новом окне" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Версия для печати" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Кликните на строку, чтобы перейти вверх страницы" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Для полноценной работы необходимо включить JavaScript!" @@ -3817,20 +3837,20 @@ msgid "No index defined!" msgstr "Индекс не определен!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Индексы" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3840,78 +3860,78 @@ msgstr "Индексы" msgid "Action" msgstr "Действие" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Имя индекса" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Упакован" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Уникальных элементов" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Комментарий" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Первичный ключ был удален." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Индекс %s был удален." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Удалить" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Номер страницы:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Язык" @@ -3936,11 +3956,11 @@ msgstr "Сервер" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3959,14 +3979,15 @@ msgid "View" msgstr "Представление" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3975,8 +3996,8 @@ msgid "Table" msgstr "Таблица" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3984,45 +4005,45 @@ msgstr "Таблица" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Поиск" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Вставить" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегии" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Слежение" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4038,16 +4059,16 @@ msgstr "Триггеры" msgid "Database seems to be empty!" msgstr "Пустая база данных!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Процедуры" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4055,20 +4076,20 @@ msgstr "Процедуры" msgid "Events" msgstr "События" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Центральные столбцы" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Базы данных" @@ -4077,39 +4098,39 @@ msgid "User accounts" msgstr "Учетные записи пользователей" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Переменные" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Кодировки" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Типы таблиц" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Расширения" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4117,7 +4138,7 @@ msgstr[0] "Затронута %1$d строка." msgstr[1] "Затронуто %1$d строки." msgstr[2] "Затронуто %1$d строк." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4125,7 +4146,7 @@ msgstr[0] "Удалена %1$d строка." msgstr[1] "Удалено %1$d строки." msgstr[2] "Удалено %1$d строк." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4174,27 +4195,27 @@ msgstr "Избранные таблицы" msgid "Favorites" msgstr "Избранное" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Для сохранения закладки поиска, пожалуйста, введите имя." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Отсутствует информация для записи закладки поиска." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Запись с таким именем уже существует." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Отсутствует информация для удаления поиска." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Отсутствует информация для загрузки поиска." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Ошибка при загрузке поиска." @@ -4256,7 +4277,7 @@ msgstr "Список открытых таблиц" msgid "Show slave hosts" msgstr "Информация о подчиненных серверах" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Показать состояние головного сервера" @@ -4312,70 +4333,70 @@ msgstr[0] "%d минута" msgstr[1] "%d минуты" msgstr[2] "%d минут" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Дополнительная информация о состоянии данного типа таблиц - отсутствует." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Данный MySQL-сервер поддерживает таблицы типа %s." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Тип таблиц %s был отключен на данном MySQL сервере." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Неизвестный статус таблицы:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "База данных `%s`, являющаяся источником, не найдена!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "База данных `%s`, являющаяся целевой, не найдена!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Некорректная база данных:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Некорректное имя таблицы:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Не удалось переименовать таблицу %1$s в %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s была переименована в %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Не удалось сохранить настройки пользовательского интерфейса!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4384,7 +4405,7 @@ msgstr "" "Ошибка при очистке таблицы содержащей настройки пользовательского интерфейса " "(смотрите переменную $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4395,19 +4416,19 @@ msgstr "" "перезагрузки страницы, изменения интерфейса будут отменены. Пожалуйста, " "проверьте изменена ли структура таблицы." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Имя первичного индекса должно быть \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Невозможно переименовать индекс в PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Части индекса не определены!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Ошибка создания внешнего ключа на %1$s (проверьте типы данных)" @@ -4733,7 +4754,7 @@ msgid "Date and time" msgstr "Дата и время" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Символьные" @@ -4748,126 +4769,126 @@ msgstr "Пространственные" msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Статический анализ:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Найдено %d ошибок при анализе." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Анализ SQL запроса" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Убрать анализ SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Результат анализа %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Убрать PHP-код" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Отправить запрос" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Создать PHP-код" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Обновить" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Профилирование" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Построчное редактирование" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Вс" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Отсутствующий параметр:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Перейти к базе данных \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Работа параметра \"%s\" подвержена ошибке, описание смотрите на %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Установленный каталог загрузки не доступен." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Файлы для загрузки отсутствуют!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Очистить" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Выполнить" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Пользователи" @@ -4881,7 +4902,7 @@ msgstr "в минуту" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "в час" @@ -4889,12 +4910,12 @@ msgstr "в час" msgid "per day" msgstr "на день" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Поиск:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4902,7 +4923,7 @@ msgstr "Поиск:" msgid "Description" msgstr "Описание" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Использовать это значение" @@ -4942,22 +4963,22 @@ msgstr "ДА" msgid "NO" msgstr "НЕТ" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Имя" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Длина/Значения" @@ -4966,7 +4987,7 @@ msgstr "Длина/Значения" msgid "Attribute" msgstr "Атрибут" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4983,11 +5004,11 @@ msgstr "Добавить столбец" msgid "Select a column." msgstr "Выберите столбец." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Добавить столбец" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4995,7 +5016,7 @@ msgstr "Добавить столбец" msgid "Attributes" msgstr "Атрибуты" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5005,29 +5026,29 @@ msgstr "" "func_overload. Для предотвращения возможной потери данных данный параметр " "должен быть выключен!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Неверный индекс сервера: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Сервер %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5039,20 +5060,20 @@ msgstr "" "phpMyAdmin в настоящий момент использует тайм зону, настроенную на сервере " "по-умолчанию." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Ошибка: несоответствие токена" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "попытка перезаписи GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "возможная уязвимость" @@ -5653,7 +5674,7 @@ msgid "Compress on the fly" msgstr "Сжатие на лету" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Конфигурационный файл" @@ -5762,12 +5783,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимальное время выполнения" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Использовать выражение %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Сохранить как файл" @@ -5777,7 +5798,7 @@ msgstr "Кодировка файла" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Формат" @@ -5902,7 +5923,7 @@ msgid "Save on server" msgstr "Сохранить на сервере" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Перезаписать существующий(е) файл(ы)" @@ -5915,7 +5936,7 @@ msgid "Remember file name template" msgstr "Запомнить шаблон имени файла" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" @@ -5924,7 +5945,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Заключить названия таблиц и полей в косые кавычки" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" @@ -5955,7 +5976,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Добавить %s" @@ -6127,7 +6148,7 @@ msgid "Customize the navigation tree." msgstr "Модифицировать дерево навигации." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Сервера" @@ -7027,7 +7048,7 @@ msgstr "Область HTTP" msgid "Authentication method to use." msgstr "Используемый метод идентификации." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Тип идентификации" @@ -7766,7 +7787,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Включение вкладки разработчика в настройках" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Проверить обновление" @@ -7776,10 +7797,10 @@ msgstr "" "Включает возможность проверки последней версии phpMyAdmin на главной " "странице." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Проверка версии" @@ -7926,24 +7947,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Текст OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Список избранного полностью заполнен!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Таблица %s была очищена." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Представление %s было удалено." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Таблица %s была удалена." @@ -7957,12 +7978,12 @@ msgid "Position" msgstr "Позиция" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Тип события" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID сервера" @@ -7971,7 +7992,7 @@ msgid "Original position" msgstr "Исходная позиция" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Информация" @@ -7985,16 +8006,16 @@ msgstr "Сокращенное отображение запросов" msgid "Show Full Queries" msgstr "Развернутое отображение запросов" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Базы данных отсутствуют" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "База данных %1$s создана." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -8002,26 +8023,26 @@ msgstr[0] "%1$d база данных была успешно удалена." msgstr[1] "%1$d базы данных были успешно удалены." msgstr[2] "%1$d баз данных было успешно удалено." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Строки" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Всего" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Фрагментировано" @@ -8048,33 +8069,33 @@ msgstr "" msgid "Enable statistics" msgstr "Включить статистику" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Недостаточно прав для просмотра настроек и значений переменных сервера. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Не удалось установить переменную" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Не был задан SQL запрос для выборки данных." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "В таблице отсутствуют числовые столбцы для построения графика." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Данные не найдены" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Таблица %1$s была успешно изменена." @@ -8118,7 +8139,7 @@ msgstr "Поля были успешно перемещены." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Ошибка запроса" @@ -8135,12 +8156,12 @@ msgstr "Изменить" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Индекс" @@ -8161,13 +8182,13 @@ msgstr "Полнотекстовый" msgid "Distinct values" msgstr "Уникальные значения" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Расширение %s не найдено. Пожалуйста, проверьте ваши настройки PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нет изменений" @@ -8191,31 +8212,35 @@ msgstr "" "phpMyAdmin, пожалуйста!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Пароль:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Подтверждение:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Хеширование пароля:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8225,83 +8250,83 @@ msgstr "" "'незащищённого соединения, которое шифрует пароль с помощью RSA'; при " "подключении к серверу." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Экспорт баз данных с текущего сервера" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Экспорт таблиц из базы данных \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Экспорт строк из таблицы \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Экспорт шаблонов:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Новый шаблон:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Имя шаблона" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Создать" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Имеющиеся шаблоны:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Шаблон:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Обновление" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Выберите шаблон" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Метод экспорта:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Быстрый - отображать минимум настроек" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Обычный - отображать все возможные настройки" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Базы данных:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Таблицы:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Формат:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Параметры формата:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8309,52 +8334,52 @@ msgstr "" "Заполните параметры для выбранного формата и игнорируйте параметры остальных " "форматов." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Изменение кодировки:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Строки:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Выгрузить часть строк" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Начать со строки:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Выгрузить все строки" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Вывод:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Сохранить на сервере в каталоге %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Шаблон имени файла:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ будет замещено именем сервера" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ будет замещено именем базы данных" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ будет замещено именем таблицы" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8366,100 +8391,100 @@ msgstr "" "следующие подстановки: %3$s. Остальной текст останется без изменений. " "Подробности смотрите в %4$sFAQ%5$s." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "использовать для будущего экспорта" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Кодировка файла:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Компрессия:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Отобразить вывод как текст" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Экспортировать базы данных в виде отдельных файлов" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Экспортировать таблицы в виде отдельных файлов" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Переименовать экспортируемые базы данных/таблицы/столбцы" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Сохранить вывод в файл" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Пропускать таблицы большие, чем" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Выберите базу данных" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Выберите таблицу" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Имя новой базы данных" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Имя новой таблицы" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Предыдущее имя столбца" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Имя нового столбца" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Отсутствуют модули экспорта. Проверьте содержимое установленной копии " "phpMyAdmin!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s из %2$s ветки" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "нет ветки" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git ревизия:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "отправлено %1$s, %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "создано %1$s, %2$s" @@ -8917,13 +8942,13 @@ msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Для сохранения файла %s недостаточно дискового пространства." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8931,75 +8956,75 @@ msgstr "" "Файл %s уже существует на сервере, измените имя или включите параметр " "перезаписи." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Не достаточно прав для сохранения файла %s на веб-сервере." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[Произошел откат.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Просмотреть детали структуры, нажав на её имя." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Изменить любую настройку, нажав на соответствующую ссылку \"Параметры\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Отредактировать структуру, перейдя по ссылке \"Структура\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Перейти к базе данных: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Отредактировать настройки для %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Перейти к таблице: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Перейти к представлению (VIEW): %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Можно эмулировать только запросы UPDATE и DELETE с одной таблицей." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9012,86 +9037,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Создать индекс для  %s столбца/ов" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Скрыть" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функция" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Из-за большой длины
изменение поля невозможно." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Или" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "Из каталога загрузки:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редактировать/Вставить" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "и затем" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9102,31 +9128,31 @@ msgstr "" msgid "Value" msgstr "Значение" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Успех!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Только структура" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Структура и данные" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Только данные" @@ -9135,14 +9161,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Добавить AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Добавить ограничения" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Настроить привилегии" @@ -9187,8 +9213,8 @@ msgstr "Процедуры:" msgid "Views:" msgstr "Представления:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Показать" @@ -9231,17 +9257,17 @@ msgstr[0] "найден %s результат" msgstr[1] "найдено %s результата" msgstr[2] "найдено %s результатов" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Очистить быстрый фильтр" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Свернуть все" @@ -9256,7 +9282,7 @@ msgstr "Неверное имя класса \"%1$s\", использовано msgid "Could not load class \"%1$s\"" msgstr "Не удалось загрузить класс \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Развернуть/Свернуть" @@ -9275,7 +9301,7 @@ msgstr "Новое" msgid "Database operations" msgstr "Операции с базой данных" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Показать скрытые пункты" @@ -9380,11 +9406,11 @@ msgstr "" "Выберите столбец, который может быть разбит на более чем один (или выберите " "'нет такого столбца' для перехода к следующему шагу)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Выберите что-нибудь…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Нет такого столбца" @@ -9656,8 +9682,8 @@ msgid "Rename database to" msgstr "Переименовать базу данных в" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9703,179 +9729,179 @@ msgstr "(столбец)" msgid "Move table to (database.table)" msgstr "Переместить таблицу в (таблицу базы данных .)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Переименовать таблицу в" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Комментарии к таблице" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Параметры таблицы" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Тип таблиц" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 #, fuzzy msgid "Change all column collations" msgstr "Сделать все столбцы atomic" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Скопировать таблицу в (таблицу базы данных.)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Переключиться на скопированную таблицу" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Обслуживание таблицы" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Анализ таблицы" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Проверить таблицу" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy msgid "Checksum table" msgstr "Проверить таблицу" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Дефрагментировать таблицу" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Обновлен кеш таблицы %s." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Обновить кеш таблицы (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Восстановить таблицу" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Удалить данные или таблицу" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Очистить таблицу (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Удалить таблицу (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Анализ" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Проверка" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Оптимизация" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Перестройка" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Исправление" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Очистить" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Объединить" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Обслуживание разделов" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Раздел %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Удалить разбиение" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Проверить целостность данных:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Не возможно переместить таблицу саму в себя!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Невозможно скопировать таблицу саму в себя!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Таблица %s была перемещена в %s. Привилегии обновлены." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Таблица %s была скопирована в %s. Привилегии обновлены." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблица %s была перемещена в %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s была скопирована в %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Не задано имя таблицы!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Для этого формата нет настраиваемых параметров" @@ -9903,18 +9929,18 @@ msgstr "Отображать в цвете" msgid "Only show keys" msgstr "Показывать только ключи" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Соединение невозможно! Неверные настройки." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Добро пожаловать в %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9923,7 +9949,7 @@ msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9935,7 +9961,7 @@ msgstr "" "php и удостоверьтесь, что они соответствуют данным полученным от " "администратора сервера MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Повторить попытку соединения" @@ -9960,15 +9986,15 @@ msgstr "Пользователь:" msgid "Server Choice:" msgstr "Выбор сервера:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Ошибка при введении captcha, попробуйте ещё раз!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Пожалуйста, введите правильное значение captcha!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "У вас нет прав для подключения к серверу MySQL!" @@ -10029,7 +10055,7 @@ msgstr "Параметры сохранения данных" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп данных таблицы" @@ -10038,7 +10064,7 @@ msgstr "Дамп данных таблицы" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Событие" @@ -10046,8 +10072,8 @@ msgstr "Событие" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Определение" @@ -10133,7 +10159,7 @@ msgstr "Поместить названия полей в первой стро #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Хост:" @@ -10666,7 +10692,7 @@ msgstr "Содержание" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Дополнительно" @@ -11049,18 +11075,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдите в phpMyAdmin, чтобы загрузить обновленный конфигурационный файл." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "нет описания" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11069,39 +11095,39 @@ msgstr "" "%sСоздать%s базу данных с именем 'phpmyadmin' и настроить там хранение " "конфигурации phpMyAdmin." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sСоздать%s хранилище конфигурации phpMyAdmin в текущей базе данных." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sСоздать%s отсутствующие таблицы хранения конфигурации phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Репликация головного сервера" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Показать соединённые подчиненные сервера" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Настройка головного сервера" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11115,19 +11141,19 @@ msgstr "" "выбрать игнорирование всех баз данных по умолчанию и разрешение для " "репликации только определенных. Пожалуйста, выберите желаемый режим:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Репликация всех баз данных; игнорировать:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Игнорировать все базы данных; репликация:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Пожалуйста, выберите базы данных:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11135,7 +11161,7 @@ msgstr "" "Теперь добавьте данные строки в конец раздела [mysqld] конфигурационного " "файла my.cnf, после чего перезапустите сервер MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11145,71 +11171,71 @@ msgstr "" "чего вы должны увидеть сообщение указывающее, что данный сервер настроен как головной." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Репликация подчинённого сервера" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Главное соединение:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Подчиненный SQL поток не запущен!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Подчиненный поток ввода-вывода не запущен!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Сервер настроен в качестве подчиненного для процесса репликации. Произвести " "действие:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Смотрите таблицу состояния подчинённого сервера" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Контролировать подчинённый сервер:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Полный запуск" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Полная остановка" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Сбросить подчиненный сервер" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Запустить только SQL поток" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Остановить только SQL поток" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Запустить только поток ввода-вывода" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Остановить только поток ввода-вывода" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Изменить, или перенастроить головной сервер" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11218,26 +11244,26 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Управление ошибками:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Игнорирование ошибок может привести к рассинхронизации головного и " "подчинённого сервера!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Игнорировать текущую ошибку" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Игнорировать следующие %s ошибки." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11246,11 +11272,11 @@ msgstr "" "Данный сервер не настроен в качестве головного для процесса репликации. " "Хотите произвести настройку?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Настройка подчиненного сервера" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11258,53 +11284,53 @@ msgstr "" "Убедитесь, что в конфигурационном файле (my.cnf) имеется уникальное значение " "server-id. При необходимости, добавьте следующую строку в раздел [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Имя пользователя:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Имя пользователя" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Пароль" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Порт:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Статус Master" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Статус Slave" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Переменная" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Хост" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11312,39 +11338,39 @@ msgstr "" "Только подчиненные сервера запущенные с ключом --report-host=host_name " "видимы в данном списке." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Любой хост" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Локальный" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Этот хост" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Любой пользователь" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Использовать текстовое поле:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11352,77 +11378,77 @@ msgstr "" "При использовании таблицы хостов, данное поле игнорируется и значения " "берутся из прописанных при конфигурации." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Подтверждение" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Создать пароль:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Репликация началась успешно." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Ошибка при начале репликации." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Репликация остановлена успешно." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Ошибка при остановке репликации." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Репликация сброшена успешно." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Ошибка при сбросе репликации." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Успех." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Ошибка." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Неизвестная ошибка" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Невозможно соединиться с головным сервером %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Невозможно прочесть позицию журнала у головного сервера. Вероятно проблема в " "настройке привилегий головного сервера." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Невозможно изменить главный сервер!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Главный сервер успешно изменён на %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11443,7 +11469,7 @@ msgstr "Было изменено событие %1$s." msgid "Event %1$s has been created." msgstr "Было создано событие %1$s." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "При обработке вашего запроса были обнаружены ошибки:" @@ -11452,75 +11478,75 @@ msgstr "При обработке вашего запроса были обна msgid "Edit event" msgstr "Редактировать событие" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Детали" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Название события" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Изменить на %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Выполнить в" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Выполнять каждые" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Начало" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Конец" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Сохранить при окончании" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Определитель" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Определитель должен быть в формате \"username@hostname\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Необходимо задать имя события!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Необходимо задать корректный интервал значений для события." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Необходимо задать корректное время выполнения события." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Необходимо задать корректный тип события." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Вы должны задать определение события." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Ошибка при обработке запроса:" @@ -11541,7 +11567,7 @@ msgstr "Статус планировщика событий" msgid "The backed up query was:" msgstr "Сохраненный запрос был:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Возвращает" @@ -11557,96 +11583,96 @@ msgstr "" "процедур может привести к ошибке![/strong] Пожалуйста, для избежания " "проблем, используйте улучшенное 'mysqli' расширение." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Изменить процедуру" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ошибочный тип процедуры: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Была создана процедура %1$s." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Невозможно восстановить удаленную процедуру." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Была изменена процедура %1$s. Привилегии обновлены." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Была изменена процедура %1$s." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Имя процедуры" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Параметры" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Направление" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Добавить параметр" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Удалить последний параметр" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Вернуть длину/значения" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Вернуть параметры" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Определяющий" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Тип безопасности" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Доступ к SQL данным" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Необходимо задать имя процедуры!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "\"%s\" является ошибочным параметром." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11654,24 +11680,24 @@ msgstr "" "Вы должны задать длину/значения для параметров процедуры, имеющих тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Вы должны задать имя и тип для каждого параметра процедуры." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Необходимо задать корректный возвращаемый тип для процедуры." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Вы должны задать определение процедуры." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Результаты выполнения процедуры %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -11679,13 +11705,13 @@ msgstr[0] "Последним выражением в процедуре был msgstr[1] "Последним выражением в процедуре были затронуты %d строки." msgstr[2] "Последним выражением в процедуре было затронуто %d строк." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Выполнить процедуру" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Параметры процедуры" @@ -11707,32 +11733,32 @@ msgstr "Триггер %1$s был создан." msgid "Edit trigger" msgstr "Редактировать триггер" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Название триггера" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Время" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Необходимо задать имя триггера!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Необходимо задать корректное время выполнения триггера!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Необходимо задать корректное событие для триггера!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Необходимо задать корректное имя таблицы!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Вы должны задать определение триггера." @@ -11857,90 +11883,90 @@ msgstr "Кодировки и сравнения" msgid "Databases statistics" msgstr "Статистика баз данных" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Нет привилегий." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Разрешает выборку данных." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Разрешает изменение данных." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Разрешает удаление данных." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Разрешает просмотр процессов всех пользователей." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11951,130 +11977,103 @@ msgstr "" "установка глобальных переменных или завершение процессов других " "пользователей)." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Разрешает запрашивать местонахождение головного и подчиненных серверов." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Разрешает настройку отложенных событий." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Разрешает создание и удаление триггеров." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Разрешает создание, удаление и переименование учетных записей пользователей." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Нет" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Группа пользователей" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy msgid "Does not require SSL-encrypted connections." msgstr "Требует SSL-шифрованного соединения." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Требует SSL-шифрованного соединения." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ограничение на использование ресурсов" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Максимальное количество запросов, которые пользователь может отправить в " "течение часа." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12082,121 +12081,115 @@ msgstr "" "Максимальное количество команд изменяющих какую-либо таблицу или базу " "данных, которые пользователь может выполнить в течение часа." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Максимальное количество новых подключений, которые пользователь может " "установить в течение часа." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Процедура" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Разрешает изменение и удаление этой процедуры." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Разрешает выполнение этой процедуры." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегии уровня таблицы" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примечание: типы привилегий MySQL отображаются по-английски." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Администрирование" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глобальные привилегии" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Глобальные" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Разрешает добавление пользователей и привилегий без перезагрузки таблиц " "привилегий." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy msgid "Native MySQL authentication" msgstr "Авторизация с помощью cookie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy msgid "SHA256 password authentication" msgstr "Авторизация с помощью Signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -msgid "Native MySQL Authentication" -msgstr "Авторизация с помощью cookie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Информация учётной записи" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12204,227 +12197,215 @@ msgstr "" "Учётная запись с данным именем пользователя, но, возможно, иным именем хоста " "уже существует." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Имя хоста:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Имя хоста" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Не менять пароль" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Модуль аутентификации" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Метод хеширования пароля:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменён." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы отменили привилегии для %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Добавить учетную запись пользователя" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "База данных для учетных записей пользователей" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Создать базу данных с таким же именем и предоставить на неё все привилегии." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Предоставить все привилегии на то, что подпадает под шаблон (имя пользователя" "\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Предоставить все привилегии на базу данных \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Пользователи с правами доступа к \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Пользователь был добавлен." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Недостаточно прав для просмотра пользователей." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Пользователь не найден." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Любой" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "глобальный" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "уровень базы данных" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "уровень таблицы" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Редактировать привилегии" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Отменить" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Редактировать группу пользователей" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… сохранить предыдущего." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… удалить предыдущего из таблиц пользователей." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отменить все активные привилегии предыдущего и затем удалить его." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… удалить предыдущего из таблиц пользователей и перезагрузить привилегии." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" "Изменить регистрационные данные / Копировать учетную запись пользователя" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Создать новую учетную запись пользователя с такими же привилегиями и …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Привилегии процедур" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Удалить выбранные учетные записи пользователей" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Группа пользователей" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Отменить все активные привилегии пользователей и затем удалить их." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи, подлежащие удалению!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы обновили привилегии для %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Привилегии для %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Пользователь" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Новый" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Редактирование привилегий:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Учетная запись пользователя" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12432,18 +12413,18 @@ msgstr "" "Примечание: Вы пытаетесь изменить привилегии пользователя, под именем " "которого вы в настоящее время вошли в систему." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Обзор учетных записей пользователей" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12456,7 +12437,7 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В этом случае необходимо %sперезагрузить привилегии%s." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12470,11 +12451,11 @@ msgstr "" "вручную. В этом случае требуется перезагрузка привилегий, но привилегия " "RELOAD Вам не предоставлена." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Выбранный пользователь не найден в таблице привилегий." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Вы добавили нового пользователя." @@ -12779,12 +12760,12 @@ msgstr "Команда" msgid "Progress" msgstr "Прогресс" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Фильтры" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Выводить только активные" @@ -12805,12 +12786,12 @@ msgstr "за минуту:" msgid "per second:" msgstr "в секунду:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Параметры" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12834,7 +12815,7 @@ msgstr "Выводить неформатированные значения" msgid "Related links:" msgstr "Связанные ссылки:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12842,11 +12823,11 @@ msgstr "" "Количество прерванных соединений в связи с потерей связи и неверно закрытым " "соединением клиента." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения с сервером MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12856,16 +12837,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кэш бинарного журнала." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) с сервером MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12877,11 +12858,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL сервером (mysqld)." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12889,7 +12870,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12897,7 +12878,7 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12905,25 +12886,25 @@ msgstr "" "Количество потоков запросов INSERT DELAYED. Каждой таблице, для которой " "использован INSERT DELAYED, предоставляется свой поток." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк, записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строки из таблицы." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12933,7 +12914,7 @@ msgstr "" "определённым именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12944,7 +12925,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12953,7 +12934,7 @@ msgstr "" "переменной говорит о том, что запросы и таблицы проиндексированы надлежащим " "образом." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12963,7 +12944,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12971,7 +12952,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки в порядке расположения " "индексов. Обычно используется для оптимизации: ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12984,7 +12965,7 @@ msgstr "" "требующих полного сканирования таблиц, или имеются объединения, " "неиспользующие индексы надлежащим образом." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12996,37 +12977,37 @@ msgstr "" "это означает, что таблицы проиндексированы ненадлежащим образом или запросы " "не используют преимущества индексов." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строки в таблице." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строки в таблицу." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Количество страниц, содержащих данные (\"грязные\" или \"чистые\")." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Текущее количество \"грязных\" страниц." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, для которых был осуществлен процесс " "очистки (FLUSH)." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13036,7 +13017,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи либо они не могут быть " "очищены или удалены по иной причине." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13048,11 +13029,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13060,7 +13041,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13069,11 +13050,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Количество логических операций чтения, выполненных InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13081,7 +13062,7 @@ msgstr "" "Количество логических операций чтения, которые InnoDB не смог выполнить из " "буферного пула и использовал постраничное чтение." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13095,87 +13076,87 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен правильно, то значение " "будет небольшим." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество операций записи, выполненных в буферный пул InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync() на данный момент." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Объём прочитанных на данный момент данных, в байтах." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Объём записанных на данный момент данных, в байтах." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество страниц, записанных при использовании операций двойной записи." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Количество выполненных операций двойной записи." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Количество ожиданий очистки журнального буфера вследствие малого его размера." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Количество физических операций записи в файл журнала." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Количество операций записи в файл журнала с помощью fsync()." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Количество незавершенных fsyncs в файл журнала." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Количество незавершенных операций записи в файл журнала." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Объём данных в байтах, записанных в файл журнала." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13184,51 +13165,51 @@ msgstr "" "значения приводятся в страницах, но зная размер страницы, можно перевести " "эти значения в байты." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строки, в миллисекундах." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время ожидания блокировок строк, в миллисекундах." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строки, в миллисекундах." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество удаленных из таблиц InnoDB строк." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество добавленных в таблицы InnoDB строк." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Количество прочитанных из таблиц InnoDB строк." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Количество обновленных в таблицах InnoDB строк." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13236,7 +13217,7 @@ msgstr "" "Количество блоков в кэше индекса, которые изменены, но ещё не записаны на " "диск. Данный параметр также известен как Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13244,7 +13225,7 @@ msgstr "" "Количество неиспользуемых блоков в кэше индекса. Данный параметр позволяет " "определить насколько полно используется кэш индекса." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13253,15 +13234,15 @@ msgstr "" "Количество используемых блоков в кэше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Процент использования кэша ключей (подсчитанное значение)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кэша индексов." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13272,7 +13253,7 @@ msgstr "" "Коэффициент неудачных обращений к кэшу может быть рассчитан как: Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13280,22 +13261,22 @@ msgstr "" "Неудачные обращения к кэшу ключей - отношение физических операций чтения к " "запросам на чтение (подсчитанное значение)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кэш индекса." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Процентное соотношение физических операций записи к запросам на запись " "(подсчитанное значение)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13306,7 +13287,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение означает, что запрос ещё не был " "скомпилирован." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13314,11 +13295,11 @@ msgstr "" "Максимальное количество использованных одновременно соединений с момента " "запуска сервера." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество ожидающих вставки строк в запросах INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13326,20 +13307,20 @@ msgstr "" "Количество открытых таблиц. При большом значении переменной рекомендуется " "увеличить размер кэша таблиц." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (в основном применяется для протоколирования)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13348,19 +13329,19 @@ msgstr "" "Количество свободных блоков памяти в кэше запроса. Большое значение может " "указывать на фрагментацию и решается выполнением запроса FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Объём свободной памяти для кэша запросов." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Количество \"попаданий\" в кэше запросов." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Количество добавленных в кэш запросов." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13373,7 +13354,7 @@ msgstr "" "время страницы заменяются новыми) при принятии решения об удалении запроса " "из кэша." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13381,19 +13362,19 @@ msgstr "" "Количество некэшированных запросов (некэшируемых или с установленным " "query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Количество зарегистрированных в кэше запросов." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Количество блоков памяти в кэше запросов." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13401,13 +13382,13 @@ msgstr "" "Количество запросов-объединений без использования индексов. Если значение не " "равно 0, рекомендуется проверить индексы таблиц." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений с использованием поиска по диапазону в " "таблице, на которую делается ссылка." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13416,7 +13397,7 @@ msgstr "" "индекса после каждой строки. (Если значение не равно 0, рекомендуется " "проверить индексы таблиц.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13424,17 +13405,17 @@ msgstr "" "Количество запросов-объединений с использованием диапазонов в первой " "таблице. (Некритичное значение, даже если оно является большим.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Количество запросов-объединений с полным сканированием первой таблицы." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество открытых подчинённым SQL потоком в настоящий момент временных " "таблиц." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13442,13 +13423,13 @@ msgstr "" "Количество повторов транзакций репликации подчинённым потоком с момента " "запуска." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер - подчинённый, подключенный к " "главному." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13456,12 +13437,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более, чем " "slow_launch_time секунд." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13470,26 +13451,26 @@ msgstr "" "Количество выполненных алгоритмом сортировки проходов. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Количество операций сортировки с использованием диапазонов." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки с использованием полного сканирования таблицы." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13501,7 +13482,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13511,11 +13492,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13527,11 +13508,11 @@ msgstr "" "thread_cache_size. (Это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Соотношение обращений в кеш потока (подсчитанное значение)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." @@ -13560,37 +13541,37 @@ msgstr "Вкладки уровня базы данных" msgid "Table level tabs" msgstr "Вкладки уровня таблицы" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Просмотреть пользователей" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Добавить группу пользователей" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Редактировать группу пользователей: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Назначения меню группы пользователей" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Имя группы:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Вкладки уровня сервера" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Вкладки уровня базы данных" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Вкладки уровня таблицы" @@ -13690,7 +13671,7 @@ msgstr "Выполнить SQL-запрос(ы) к базе данных %s" msgid "Run SQL query/queries on table %s" msgstr "Выполнить SQL-запрос(ы) к таблице %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Очистить" @@ -13775,112 +13756,112 @@ msgstr "Выключить" msgid "Version" msgstr "Версия" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Создано" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Обновлёно" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Удалить версию" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Отчёт слежения" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Снимок структуры" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "включено" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "выключено" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Отслеживаемые выражения" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Удалить строку данных слежения за таблицей" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Нет данных" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Вывести %1$s с датой от %2$s до %3$s пользователя %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Выгрузка SQL (файл)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Выгрузка SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Выполнение SQL запроса" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Экспортировать как %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Выражение изменяющее данные" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Выражение определяющее структуру" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Дата" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Пользователь" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Нет" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Данные слежения успешно удалены" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Данные слежения успешно удалены" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13889,61 +13870,61 @@ msgstr "" "временную базу данных. Убедитесь, что у вас есть для этого достаточные " "привилегии." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Закомментируйте эти две строки, если они вам не нужны." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Отчёт слежения для таблицы `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Слежение за %1$s было включено на версии %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Слежение за %1$s было выключено на версии %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Версия %1$s из %2$s удалена." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Версия %1$s создана, отслеживание %2$s включено." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Отслеживать таблицу" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Отслеживаемые таблицы" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Последняя версия" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Удаление данных слежени" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Версии" @@ -13951,7 +13932,7 @@ msgstr "Версии" msgid "Manage your settings" msgstr "Пользовательские настройки" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Настройки успешно сохранены." @@ -13977,7 +13958,7 @@ msgstr "Ошибка в ZIP-архиве:" msgid "No files found inside ZIP archive!" msgstr "Файлов внутри ZIP-архива не найдено!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Неисправимая ошибка: Панель навигации может быть доступна только с помощью " @@ -13987,56 +13968,56 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Невозможно сохранить настройки, отправленная форма содержит ошибки!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy msgid "phpMyAdmin configuration snippet" msgstr "Отсутствие таблиц хранения конфигурации phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Не получилось импортировать настройки" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "В некоторых полях, настройки содержать некорректные данные." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Вы хотите импортировать оставшиеся настройки?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Сохранено: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Импорт из файла" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Импорт из хранилища браузера" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Настройки будут импортированы из локального хранилища вашего браузера." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "У вас нет сохраненных настроек!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Данная функция не поддерживается вашим браузером" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Объединение с текущими настройками" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14045,24 +14026,24 @@ msgstr "" "Вы можете установить дополнительные настройки отредактировав config.inc.php, " "к примеру, используя %sСкрипт настройки%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy msgid "Save as PHP file" msgstr "Сохранить как файл" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Сохранить в хранилище браузера" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Настройки будут сохранены в локальное хранилище вашего браузера." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Текущие настройки будут перезаписаны!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Вы можете сбросить все пользовательские настройки и восстановить их в " @@ -14072,31 +14053,31 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Нет привилегий" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Недостаточно прав для просмотра состояния сервера." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Недостаточно прав для просмотра советчика." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесс %s был успешно завершен." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14104,15 +14085,15 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Недостаточно прав для просмотра статистики запроса." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Недостаточно прав для просмотра переменных состояния." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Скачать" @@ -14122,11 +14103,11 @@ msgstr "" "Некорректно задан набор форм, проверьте массив $formsets в файле setup/" "frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Невозможно загрузить или сохранить настройки" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14137,7 +14118,7 @@ msgstr "" "[doc@setup_script]документации[/doc]. В противном случае вы сможете только " "скачать, или просмотреть его." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14146,24 +14127,27 @@ msgstr "" "потенциально критическую информацию, вроде паролей) передаются в " "незашифрованном виде!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Если ваш сервер настроен также и на приём HTTPS запросов, перейдите по [a@" "%s]данной ссылке[/a] для использования безопасного соединения." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Небезопасное соединение" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Конфигурация сохранена." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14172,59 +14156,59 @@ msgstr "" "phpMyAdmin, скопируйте его в корневой каталог и удалите после этого " "директорию config." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Конфигурация не сохранена!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Обзор" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Показать скрытые сообщения (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Отсутствуют настроенные сервера" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Новый сервер" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Язык по умолчанию" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "Предоставить выбор пользователю" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- не выбран -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Сервер по умолчанию" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Конец строки" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Показать" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Загрузить" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Домашняя страница phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Пожертвование" @@ -14262,7 +14246,7 @@ msgstr "Игнорировать ошибки" msgid "Show form" msgstr "Показать форму" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14270,15 +14254,15 @@ msgstr "" "Не удалось получить текущую версию. Возможно вы не соединены с сетью, или " "сервер обновления не отвечает." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "От сервера получена некорректная строка версии" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Строка версии не поддаётся разбору" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14287,7 +14271,7 @@ msgstr "" "Вы используете Git версию, запустите [kbd]git pull[/kbd] :-)[br]Последняя " "стабильная версия %s, выпущена %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Обновление стабильной версии недоступно" @@ -14300,12 +14284,12 @@ msgstr "Ошибочные данные" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "База данных '%s' не существует." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s уже существует!" @@ -14318,29 +14302,29 @@ msgstr "Отобразить дамп (схему) таблицы" msgid "Invalid table name" msgstr "Неправильное имя таблицы" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Строка: %1$s, Столбец: %2$s, Ошибка: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Строка не выбрана." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Слежение за %s включено." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Отслеживаемые версии были успешно удалены." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Версии не выбраны." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Выполненные SQL запросы." @@ -14519,7 +14503,7 @@ msgid "List of available transformations and their options" msgstr "Доступные преобразования" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Преобразование отображения браузера" @@ -14541,7 +14525,7 @@ msgstr "" "например: '\\\\xyz' или 'a\\'b'." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Преобразование входных" @@ -14977,17 +14961,17 @@ msgid "Size" msgstr "Размер" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Создание" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Последнее обновление" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Последняя проверка" @@ -15029,6 +15013,12 @@ msgstr "" "Ваш браузер содержит настройки phpMyAdmin для данного домена. Хотите " "импортировать их для текущей сессии?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Удаление данных слежени" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Добавить привилегии для следующих(ей) баз(ы) данных:" @@ -15047,10 +15037,44 @@ msgstr "Добавить привилегии на следующую проце msgid "Add privileges on the following table:" msgstr "Добавить привилегии на следующую таблицу:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Новый" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Нет" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Удалить выбранные учетные записи пользователей" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Отменить все активные привилегии пользователей и затем удалить их." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ограничение на использование ресурсов" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" @@ -15081,7 +15105,7 @@ msgstr "Расширение" msgid "Author" msgstr "Автор" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "отключено" @@ -15235,7 +15259,7 @@ msgstr "Парсер:" msgid "Comment:" msgstr "Комментарий:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Перетяните для изменения порядка сортировки" @@ -15269,20 +15293,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ограничение внешнего ключа" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Добавить ограничение" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Внутренние связи" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Внутренняя связь" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15290,7 +15314,7 @@ msgstr "" "Внутренняя связь не обязательна, если существует соответствующая связь с " "помощью внешнего ключа (FOREIGN KEY)." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Выбор отображаемого столбца:" @@ -15343,11 +15367,11 @@ msgstr "Исходная строка" msgid "Replaced string" msgstr "Строка замены" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Замена" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Добавочный критерий поиска" @@ -15418,7 +15442,7 @@ msgid "at beginning of table" msgstr "в начале таблицы" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Разделы" @@ -15442,24 +15466,24 @@ msgstr "Длина данных" msgid "Index length" msgstr "Длина индекса" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Создать разбиение" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Редактировать разбиение" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Редактировать представление" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Используемое пространство" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Эффективность" @@ -15484,31 +15508,31 @@ msgstr "Улучшить структуру таблицы" msgid "Track view" msgstr "Отслеживать представление" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Статистика строки" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "статический" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "динамический" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "разделён" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Длина строки" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Размер строки" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Следующий автоматический индекс" @@ -15521,45 +15545,45 @@ msgstr "Поле %s было удалено." msgid "Click to toggle" msgstr "Кликните для переключения" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Тема" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Другие темы!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Доступные MIME-типы" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Доступные преобразования отображения браузера" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Доступные преобразования входных" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Описание" -#: url.php:38 +#: url.php:39 #, fuzzy msgid "Taking you to the target site." msgstr "Переход к следующему шагу…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Для доступа к данной странице у вас недостаточно прав!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профиль был обновлен." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15633,7 +15657,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15655,17 +15679,17 @@ msgid "Unrecognized data type." msgstr "Нераспознанный тип данных." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Ожидался псевдоним." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Псевдоним был найден ранее." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Неожиданная точка." @@ -15718,24 +15742,24 @@ msgstr "Ожидался пробел перед разделителем." msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Ожидалась закрывающая кавычка %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Ожидалось имя переменной." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Неожиданное начало выражения." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15752,10 +15776,16 @@ msgstr "Неожиданный токен." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Неизвестное ключевое слово." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Неожиданное начало выражения." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Ожидалось имя сущности." @@ -15796,7 +15826,7 @@ msgstr "" msgid "strict error" msgstr "Собирать ошибки" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17113,6 +17143,10 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#, fuzzy +#~ msgid "Native MySQL Authentication" +#~ msgstr "Авторизация с помощью cookie" + #~ msgid "Try to connect without password." #~ msgstr "Пытаться установить соединение без пароля." diff --git a/po/si.po b/po/si.po index 8c5d74425d..4e25dd6d02 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-03-24 04:14+0000\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "දායක වන්න" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "ප්‍රාථමික මූලය එක් කරන්න" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s ට ප්‍රාථමික මූලයක් එක් කරන ලදි" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "අවධානය පිළිබඳ වාර්තාව" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -1990,270 +1995,270 @@ msgstr "" msgid "End of step" msgstr "පේළියේ අවසානය" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "තෝරන්න" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "පහත විමසුම් ක්‍රියාත්මක කරන ලදි:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න:" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "සුරකින්න" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "සෙවුම් නිර්ණායක සඟවන්න" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "වගුව තුල සෙවීම" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "තීර නම්: " -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "තීර නම්: " -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "උපරිම වගු" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "උපරිම වගු" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "සෙවුම් නිර්ණායක සඟවන්න" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "එක් ලක්ෂ්‍යයකින් දත්ත පේළියක් නියෝජනය කෙරේ." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "ලක්ෂ්‍යයක් මතින් ගමන් කරන විට එහි ලේබලය පෙන්නුම් කරයි." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "තුළු සූමකරණය සඳහා ප්‍රස්ථාරයේ කොටසක් මූසිකය ආධාරයෙන් තෝරන්න." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "පෙර තත්ත්වයට පැමිණීම සඳහා සූමකරණය ප්‍රතිසකසන බොත්තම ක්ලික් කරන්න." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "පේළියක දත්ත පරීකෂා කිරීමට හා සමහරක් දත්ත වෙනස් කිරීමට ලක්ෂ්‍යයක් මත ක්ලික් කරන්න." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "ප්‍රස්තාරයෙහි විශාලත්වය පහළ දකුණු කොණෙන් ඇදීමෙන් වෙනස් කල හැක." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "තීර දෙකක් තෝරන්න" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "එකිනෙකට වෙනස් තීර දෙකක් තෝරන්න" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "ලක්ෂයට අදාල දත්ත" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "පිටපත් කරන්න" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "ලක්ෂ්‍යය" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "රේඛාව" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "බහු අස්‍රය" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "ජ්‍යාමිතිය" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ඇතුලත කවය" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "පිටත කවය:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "සම්බන්දිත මූලය තෝරන්න" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "අන්‍ය මූලය තෝරන්න" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2261,136 +2266,136 @@ msgstr "" "සැලැස්මේ සිදුකල වෙනස්කම් සුරැකීම සිදුකර නැත. සුරැකීම සිදු නොකළහොත් ඒවා අහිමි වනු ඇත. ඉදිරියට " "යන්න?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "පිටුවේ නම" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "පිටුව තෝරන්න" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "පිටුව තෝරන්න" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "නිදහස් පිටු" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "පිටුව තෝරන්න" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "ඒකකය" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "සංස්කරණය සඳහා පිටුවක් තෝරාගන්න" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සුරකින ලදි" # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "වස්තූන් %d ක් නිමැවිණි." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "ඉදිරිපත් කරන්න" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "සංස්කරණය අවලංගු කිරීමට escape ඔබන්න" -#: js/messages.php:575 +#: js/messages.php:576 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 "ඔබ සංස්කරණය කල දත්ත සුරැකී නැත. දත්ත සුරැකීමෙන් තොරව මෙම පිටුවෙන් ඉවත් වීමට අවශ්‍යද?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "අනුපිලිවෙල නැවත සකස් කිරීමට අදින්න." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "සලකුණු කිරීමට/ ඉවත් කිරීමට ක්ලික් කරන්න." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "තීර නාමය පිටපත් කිරීම සඳහා ද්වි ක්ලික් කරන්න." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "තීර පෙන්වීමට/සැඟවීමට
ඊතලය ක්ලික් කරන්න." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2398,129 +2403,129 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "මුල් පිහිටුම" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "අවලංගු කරන්න" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "ආනයන පෙරනිමි" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "වගු තෝරන්න" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "මුද්‍රණය කරන්න" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ද්විත්ව-ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link." msgid "Go to link:" msgstr "සබැඳීම වෙත යන්න." -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "තීර නම් පිටපත් කරන්න." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "පසුරු පුවරුව වෙත පිටපත් කිරීම සඳහා තීර නාමය දකුණු ක්ලික් කරන්න." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "තවත්" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "පැනලය පෙන්වන්න" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "පැනලය සඟවන්න" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "යාත්‍රණ පැනලයේ ලාංඡනය පෙන්වන්න" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "ඔබ ඉල්ලු පිටුව ඉතිහාසයේ හමු නොවිණි, එය කල් ඉකුත් වී ඇතිවා විය හැකිය." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2530,124 +2535,124 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "යාවත්කාලීන" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "සිටුවම් වෙනස් කිරීම" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "විවෘත වගු පෙන්වන්න" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "නොසලකන්න" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "ක්‍රියාත්මක කරන ලද විමසුම්" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "වගු විස්තර" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2656,385 +2661,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "වගු නාම මූලයක් එක් කරන්න:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය කරන්න" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "පෙර" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "අද දින" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "මාර්තු" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "මැයි" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "ජුනි" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "ජූලි" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "සති" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "දින දර්ශන-මාස-වසර" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "කිසිවක් නැත" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "පැය" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "තත්පර" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "දෝෂය" @@ -3095,20 +3120,20 @@ msgid "Charset" msgstr "අක්ෂර කට්ටලය" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "පරිතුලනය" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "ද්වීමය" @@ -3303,7 +3328,7 @@ msgid "Czech-Slovak" msgstr "චෙකොස්ලෝවැකියානු-ස්ලෝවැකියානු" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "නොදන්නා" @@ -3353,56 +3378,56 @@ msgstr "මෙහි සාමාන්‍ය අරුත වාක්‍ය msgid "Font size" msgstr "ෆොන්ටයෙහි ප්‍රමාණය" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Table Search" msgid "No bookmarks" msgstr "වගුව තුල සෙවීම" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL විමසුම් කවුළුව" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "වින්‍යාස ගොනුව කියවීමට අසමත් විය!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "තොරතුරු…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "නොමැති පරාමිතිය:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය." @@ -3496,122 +3521,117 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "%s දත්තගබඩාව මත SQL විමසුම:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "සෙවීම" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Table Search" msgid "New bookmark" msgstr "වගුව තුල සෙවීම" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Table Search" msgid "Create bookmark" msgstr "වගුව තුල සෙවීම" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Table Search" msgid "Delete bookmark" msgstr "වගුව තුල සෙවීම" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "අවම වශයෙන් එක් වචනයක්වත්" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "සියලු වචන" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "හරියටම වාක්‍යාංශය" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "regular expression ලෙස" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s සඳහා සෙවීම් ප්‍රතිළුල:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "එකතුව: %s ගැලපුමයි" msgstr[1] "එකතුව: ගැලපුම් %s යි" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s තුල ගැලපීම් %1$s කි" msgstr[1] "%2$s තුල ගැලපීම් %1$s කි" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "පිරික්සන්න" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "සෙවීම සඳහා වචන(ය) හෝ අගය(න්) (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "සොයන්න:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "වචන වෙන් කෙරෙන්නේ හිස් තැනකිනි(\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "වගු තුල:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "තීරය තුල:" @@ -3635,30 +3655,30 @@ msgstr "පෙරහන්" msgid "Search this table" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "ඇරඹුම" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "පෙර" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "මීලඟ" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "අවසන" @@ -3667,7 +3687,7 @@ msgstr "අවසන" msgid "All" msgstr "සියලු" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "පේළි ගණන:" @@ -3676,8 +3696,8 @@ msgstr "පේළි ගණන:" msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3699,10 +3719,10 @@ msgstr "යතුර අනුව තෝරන්න" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "විකල්ප" @@ -3744,29 +3764,29 @@ msgstr "Well Known Text" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "පේළිය ඉවත් කරන ලදි." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "නවතා දමන්න" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "සමහර විට ආසන්න වශයෙන්. [doc@faq3-11]FAQ 3.11[/doc] බලන්න." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3774,75 +3794,75 @@ msgid "" msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s - %2s පේළි පෙන්වමින්" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "මුළු එකතුව %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "තෝරාගත්:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "සබැඳිය හමු නොවිණි!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "නැත" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Kana වෙත පරිවර්තනය කරන්න" @@ -3850,106 +3870,106 @@ msgstr "Kana වෙත පරිවර්තනය කරන්න" msgid "Too many error messages, some are not displayed." msgstr "දෝෂ පණිවුඩ ප්‍රමාණය ඉක්මවා ගොස් ඇත, ඇතැමෙක් ප්‍රදර්ශනය නොකෙරේ." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "ආනයනය" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatically create versions" msgid "Automatically send report next time" msgstr "ස්වයංක්‍රියව අනුවාද සාදන්න" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "ගොනුව උඩුගත කරන ලද්දක් නොවේ." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "උඩුගත කෙරුනු ගොනුව HTML පෝරමයෙහි සඳහන් MAX_FILE_SIZE අගය ඉක්මවයි." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [doc@faq1-11]FAQ 1.11[/doc] බලන්න." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "උඩුගත කරන ලද ගොනුව චලනයේදී දෝෂයක් මතු විය." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "උඩුගත කරන ලද ගොනුව කියවීමට නොහැක." -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "අනුවාදය පිළිබඳ තොරතුරු" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "පිටුව මුලට යාමට මෙය මත ක්ලික් කරන්න" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "මෙම ස්ථානයයෙන් පසු JavaScript සක්‍රිය කර තිබීම අවශ්‍යය!" @@ -3958,20 +3978,20 @@ msgid "No index defined!" msgstr "සුචියක් අර්ථදක්වා නැත!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "සූචියන්" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3981,78 +4001,78 @@ msgstr "සූචියන්" msgid "Action" msgstr "ක්‍රියාව" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "යතුරු නම" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "අහුරන ලද" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "අනේකත්වය" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "ටීකාව" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "ප්‍රාථමික මූලය හලන ලදි." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "%s සූචිය හලන ලදි." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "හලන්න" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "පිටු අංකය:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "භාෂාව" @@ -4076,11 +4096,11 @@ msgstr "සේවාදායකය" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4099,14 +4119,15 @@ msgid "View" msgstr "දසුන" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4115,8 +4136,8 @@ msgid "Table" msgstr "වගුව" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4124,45 +4145,45 @@ msgstr "වගුව" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "සෙවීම" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "වරප්‍රසාද" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "අවධානය" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4178,16 +4199,16 @@ msgstr "ප්‍රේරක" msgid "Database seems to be empty!" msgstr "දත්තගබඩාව හිස්ය!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "විමසුම" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "නෛත්‍යක" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4195,20 +4216,20 @@ msgstr "නෛත්‍යක" msgid "Events" msgstr "සිද්ධි" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "සැලසුම්කරණය" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "මධ්‍යම තීර" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "දත්තගබඩා" @@ -4217,53 +4238,53 @@ msgid "User accounts" msgstr "භාවිත ගිණුම්" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "ද්වීමය ලොගය" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "අනුරූකරණය" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "යන්ත්‍රයන්" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "පේණු" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "පේළියකට බලපෑවේය." msgstr[1] "පේළි %1$dකට බලපෑවේය." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි." msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4317,31 +4338,31 @@ msgstr "ප්‍රියතම වගු" msgid "Favorites" msgstr "ප්‍රියතම" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "Missing information to save the bookmarked search." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4406,7 +4427,7 @@ msgstr "විවෘත වගු පෙන්වන්න" msgid "Show slave hosts" msgstr "අනුගාමි දායකයන් පෙන්වන්න" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "ප්‍රධාන සේවාදායකයෙහි තත්වය පෙන්වන්න" @@ -4460,72 +4481,72 @@ msgid_plural "%d minutes" msgstr[0] "මිනිත්තු %dක්" msgstr[1] "මිනිත්තු %dක්" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "ගබඩා යන්ත්‍රයෙහි තත්වය පිලිබඳ වැඩිදුර තොරතුරු නැත." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s මෙම සේවාදායකයේ පෙරනිමි ගබඩා යන්ත්‍රයයි." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "මෙම MySQL සේවාදායකයේ %s ඇත." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "මෙම MySQL සේවාදායකයේ %s අක්‍රීය කර ඇත." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "මෙම MySQL සේවාදායකයේ %s ගබඩා යන්ත්‍රය භාවිත කල නොහැක." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr "වගු තත්වය සඳහා නොහඳුනන අගයක්: " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "`%s` මූලාශ්‍ර දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "`%s` ඉලක්කගත දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "වලංගු නොවන දත්තගබඩාව:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "වලංගු නොවන වගු නම:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s වගුව %2$s ලෙසට නම වෙනස් කරන ලදි." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4534,7 +4555,7 @@ msgstr "" "අතුරුමුහුණත සඳහා තේරීම් අඩංගු ගොනුව පවිත්‍ර කිරීම අසමත් විය ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s බලන්න)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4544,19 +4565,19 @@ msgstr "" "අතුරුමුහුණත් විචල්‍යය \"%s\" සුරැකිය නොහැක. මෙම පිටුව ප්‍රතිපූර්ණයෙන් පසු සිදුකල වෙනස්කම් අහිමි වනු " "ඇත. අදාල වගුවේ සැකිල්ල වෙනස් වී ඇත්දැයි පරීක්ෂාකර බලන්න." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s මත අන්‍ය මූලය සෑදීමේදී දෝෂ ඇතිවිය (දත්ත වර්ග පරීක්ෂා කරන්න)" @@ -4867,7 +4888,7 @@ msgid "Date and time" msgstr "දිනය සහ වේලාව" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "පෙළ" @@ -4882,72 +4903,72 @@ msgstr "අවකාශීය" msgid "Max: %s%s" msgstr "උපරිම: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "ස්ථිතික දත්ත" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL පවසන ලදි: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL ය පහදන්න" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP කේත නොමැතිව" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "විමසුම ඉදිරිපත් කරන්න" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP කේත සාදන්න" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4955,63 +4976,63 @@ msgid "Edit inline" msgstr "සුචිය සංස්කරණය කරන්න" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "ඉරිදා" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y දින %I:%M %p ට" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "නොමැති පරාමිතිය:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" දත්තගබඩාව වෙත යන්න." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝෂයක් ඇත, %s බලන්න" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "උඩුගත කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "හිස් කරන්න" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "ක්‍රියාත්මක කරන්න" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "භාවිතා කරන්නන්" @@ -5025,7 +5046,7 @@ msgstr "මිනිත්තුවකට" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "පැයකට" @@ -5033,12 +5054,12 @@ msgstr "පැයකට" msgid "per day" msgstr "දිනකට" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "සෙවීම:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5046,7 +5067,7 @@ msgstr "සෙවීම:" msgid "Description" msgstr "විස්තරය" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "මෙම අගය භාවිතා කරන්න" @@ -5087,22 +5108,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "නම" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "දිග/අගයන්" @@ -5113,7 +5134,7 @@ msgstr "දිග/අගයන්" msgid "Attribute" msgstr "ගුණාංග" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5134,13 +5155,13 @@ msgstr "තීරයක් එක් කරන්න" msgid "Select a column." msgstr "තීර දෙකක් තෝරන්න" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "තීරයක් එක් කරන්න" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5148,7 +5169,7 @@ msgstr "තීරයක් එක් කරන්න" msgid "Attributes" msgstr "ගුණාංග" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5157,27 +5178,27 @@ msgstr "" "ඔබගේ PHP වින්‍යාසයන් හි mbstring.func_overload සක්‍රීය කර ඇත. මෙම විකල්පය phpMyAdmin " "සමඟ නොගැළපෙන අතර යම් දත්ත විනාශ වීමට හේතු විය හැකිය!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "අවලංගු සේවාදායක සුචිය: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්‍යාසයන් පරීකෂා කර බැලිය යුතුය." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "%d වන සේවාදායකය" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "වින්‍යසයන්හි වලංගු නැති සත්‍යාපන ක්‍රමයක් සිටුවා ඇත:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5185,20 +5206,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "දෝෂය: ටෝකන නොගැලපීම" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" @@ -5774,7 +5795,7 @@ msgid "Compress on the fly" msgstr "එවෙලේම හකුළුවන්න" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "වින්‍යාස ගොනුව" @@ -5885,13 +5906,13 @@ msgstr "" msgid "Maximum execution time" msgstr "උපරිම ක්‍රියාත්මක කාලය" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s ප්‍රකාශය එක්කරන්න" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" @@ -5901,7 +5922,7 @@ msgstr "ගොනුවේ අක්ෂර කට්ටලය" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "ආකෘතිය" @@ -6026,7 +6047,7 @@ msgid "Save on server" msgstr "සේවාදායකයේ සුරකින්න" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "වත්මන් ගොනු(ව) උඩින් ලියන්න" @@ -6041,7 +6062,7 @@ msgid "Remember file name template" msgstr "ගොනු නාම ටෙම්ප්ලේටය මතක තබා ගන්න" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" @@ -6050,7 +6071,7 @@ msgid "Enclose table and column names with backquotes" msgstr "වගු සහ තීර නම් පසු-උදෘත මගින් අවුරන්න" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL ගැලපුම් ප්‍රකාරය" @@ -6084,7 +6105,7 @@ msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වග #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" @@ -6260,7 +6281,7 @@ msgid "Customize the navigation tree." msgstr "යාත්‍රණ පැනලය රිසි සේ සකසන්න" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "සේවාදායකයන්" @@ -7212,7 +7233,7 @@ msgstr "" msgid "Authentication method to use." msgstr "භාවිතා කල යුතු සත්‍යාපන ක්‍රමය" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "සත්‍යාපන වර්ගය" @@ -8090,7 +8111,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "සිටුවම් හි ක්‍රමලේඛනය කරන්නන් සදහා වූ ටැබය සක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා කරන්න" @@ -8100,10 +8121,10 @@ msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා msgid "Enables check for latest version on main phpMyAdmin page." msgstr "phpMyAdmin ප්‍රධාන පිටුවේ නවතම අනුවාදය සඳහා පරීක්ෂාව සක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "අනුවාද පරීක්ෂාව" @@ -8254,24 +8275,24 @@ msgstr "මයික්‍රොසොෆ්ට් වර්ඩ් 2000" msgid "OpenDocument Text" msgstr "OpenDocument පෙළ" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s වගුව හිස් කරන ලදි." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "%s දසුන හලන ලදි." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "%s වගුව හලන ලදි." @@ -8285,12 +8306,12 @@ msgid "Position" msgstr "පිහිටුම" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "සිද්ධි වර්ගය" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "සේවාදායකයේ හැඳුනුම් අංකය" @@ -8299,7 +8320,7 @@ msgid "Original position" msgstr "මුල් පිහිටුම" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "තොරතුරු" @@ -8313,42 +8334,42 @@ msgstr "" msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "දත්තගබඩා නොමැත" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s දත්තගබඩාව සාදන ලදි." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "දත්තගබඩා %1$d ක් සාර්ථකව හලන ලදි." msgstr[1] "දත්තගබඩා %1$d ක් සාර්ථකව හලන ලදි." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "පේළි" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "මුළු එකතුව" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "පිරිවැය" @@ -8377,33 +8398,33 @@ msgstr "" msgid "Enable statistics" msgstr "සංඛ්‍යා ලේඛන සක්‍රිය කරන්න" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "සේවාදායකයේ විචල්‍යයන් සහ සිටුවම්" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "විචල්‍යය සිටුවීම අසමත් විය" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "පෙන්වීම සඳහා දත්ත නොමැත" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි." @@ -8456,7 +8477,7 @@ msgstr "තීර සාර්ථකව ගෙන යන ලදි." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "විමසුම් දෝෂය" @@ -8474,12 +8495,12 @@ msgstr "වෙනස් කරන්න" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "සූචිය" @@ -8500,13 +8521,13 @@ msgstr "සම්පූර්ණ පාඨය" msgid "Distinct values" msgstr "එකිනෙකට වෙනස් අගයන්" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s දිගුව සොයාගත නොහැක. කරුණාකර ඔබගේ PHP වින්‍යාසයන් පරීක්ෂා කර බලන්න." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -8528,176 +8549,180 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "මුරපදයක් නැත" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "මුරපදය:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "නැවත ටයිප් කරන්න:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "මුරපදය hash කිරීම:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "වත්මන් සේවාදායකයෙන් දත්තගබඩා අපනයනය කිරීම" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "\"%s\" දත්තගබඩාවෙන් වගු අපනයනය කිරීම" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "\"%s\" වගුවෙන් පේළි අපනයනය කිරීම" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "අපනයන ආකෘති:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "නව ආකෘතිය:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "වගුවේ නම" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "සාදන්න" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "පවත්නා ආකෘති:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "ආකෘතිය:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "යාවත්කාලීන කරන්න" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "වගු තෝරන්න" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "අපනයන ක්‍රමය" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "කඩිනම් - අවම තෝරා ගැනීම් පමණක් පෙන්වන්න" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "අභිමත - සියලුම තෝරා ගැනීම් පෙන්වන්න" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "දත්තගබඩා" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "වගු" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "ආකෘතිය:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "ආකෘති-විශේෂී තෝරා ගැනීම්:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" "තෝරාගත් ආකෘතිය සඳහා විකල්ප භාවිතා කිරීමට පහලට යන්න. අනෙකුත් ආකෘති සඳහා විකල්ප නොසලකන්න." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "කේතීකරණ පරිවර්තනය:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "පේළි:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "සමහර පේළි(ය) පමණක් ප්‍රතිදානය කරන්න" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "ආරම්භක පේළිය:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "සියළුම පේළි ප්‍රතිදානය කරන්න" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "ප්‍රතිදානය:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "සේවාදායකයේ %s ඩිරෙක්ටරියේ සුරකින්න" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "ගොනු නාම අච්චුව:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ සේවාදායකයේ නාමයෙන් ප්‍රතිස්ථාපනය කෙරෙනු ඇත" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ දත්තගබඩාවේ නාමයෙන් ප්‍රතිස්ථාපනය කෙරෙනු ඇත" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්‍රතිස්ථාපනය කෙරෙනු ඇත" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "alue is interpreted using %1$sstrftime%2$s, so you can use time matting " @@ -8712,114 +8737,114 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "මතු අපනයන සඳහා භාවිතා කරන්න" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "ගොනුවේ අක්ෂර කට්ටලය:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "හැකිළීම:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip කරන ලද" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzipp කරන ලද" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "ප්‍රතිදානය පෙළ ලෙස දර්ශනය කරන්න" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "\"%s\" වගුවෙන් පේළි අපනයනය කිරීම" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "වගු ශීර්ෂක අපනයනය කරන්න" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "ප්‍රතිදානය ගොනුවකට සුරකින්න" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "වගු තෝරන්න" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "වගු තෝරන්න" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "දත්තගබඩාවේ නම" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "නව පිටු නාමය: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name." msgid "Old column name" msgstr "තීර නම් පිටපත් කරන්න." -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name." msgid "New column name" msgstr "තීර නම් පිටපත් කරන්න." -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "අපනයන පේණු පූරණය කල නොහැකි විය, ඔබගේ ස්ථාපනය පරීක්ෂා කර බලන්න!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%2$s ශාඛාවේ %1$s සංස්කරණය" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "ශාඛාවක් නොමැත" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git සංස්කරණය:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%1$s %2$s විසින් එක් කරන ලද" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%1$s %2$s විසින් රචිත" @@ -9234,13 +9259,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s ගොනුව සුරැකීමට ප්‍රමාණවත් ඉඩ අවකාශ නොමැත." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9248,38 +9273,38 @@ msgstr "" "%s ගොනුව මේ වන විටත් සේවාදායකයෙහි පවතී, ගොනු නාමය වෙනස් කරන්න නැතහොත් උඩින් ලිවීමේ හැකියාව " "සලකා බලන්න." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "වෙබ් සේවාදායකයට %s ගොනුව සුරැකීමට අවසර නොමැත." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකින ලදි." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "සැකිල්ලක අන්තර්ගතය එහි නම මත ක්ලික් කිරීමෙන් බලන්න" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9287,42 +9312,42 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "%s දත්තගබඩාව වෙත යන්න" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "%s සඳහා සිටුවම් සංස්කරණය කරන්න" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "%s වගුව වෙත යන්න" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s හි සැකිල්ල" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "%s දසුන වෙත යන්න" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9333,86 +9358,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "පේළි %s මත සුචියක් සාදන්න" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "සඟවන්න" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "ශ්‍රිතය" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "මෙහි දිග නිසා,
මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "හෝ" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "සංස්කරණය/ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "අනතුරුව" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "මීලඟ පේළිය සංස්කරණය කරන්න" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9423,31 +9449,31 @@ msgstr "" msgid "Value" msgstr "අගය" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "සැකිල්ල පමණයි" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "දත්ත පමණයි" @@ -9458,14 +9484,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Adjust Privileges" @@ -9522,8 +9548,8 @@ msgstr "ක්‍රියාපටිපාටි" msgid "Views:" msgstr "දසුන්" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "පෙන්වන්න" @@ -9570,19 +9596,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Clear Fast Filter" msgid "Clear fast filter" msgstr "පෙරහන ප්‍රත්‍යාරම්භ කරන්න" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9598,7 +9624,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "වින්‍යාස සුරැකීම අසමත් විය" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9619,7 +9645,7 @@ msgstr "නව තීරයක්" msgid "Database operations" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9725,13 +9751,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "තීර දෙකක් තෝරන්න" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Move column" msgid "No such column" @@ -9986,8 +10012,8 @@ msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10032,185 +10058,185 @@ msgstr "(singly)" msgid "Move table to (database.table)" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට ගෙන යන්න" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "වගු විස්තර" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "වගු විකල්ප" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "පිටපත් කල වගුව වෙත මාරු වන්න" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "වගු නඩත්තුව" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "වගුව පරීක්ෂා කරන්න" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "වගුව ප්‍රශස්තගත කරන්න" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "වගුව හෝ දත්ත ඉවත් කරන්න" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "වගුව හිස් කරන්න (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "වගුව ඉවත් කරන්න (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "විශ්ලේෂණය" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "පරීක්ෂාව" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "ප්‍රශස්තනය" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "නැවත සෑදීම" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "ප්‍රතිසංස්කරණය" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "වසන්න" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "කොටස් නඩත්තුව" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "%s කොටස" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "කොටස් කිරීම ඉවත් කරන්න" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "එම වගුවටම පිටපත් කල නොහැක!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "වගුවෙහි නම හිස්ව ඇත!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත" @@ -10237,18 +10263,18 @@ msgstr "වර්ණය පෙන්වන්න" msgid "Only show keys" msgstr "මූල පමණක් පෙන්වන්න" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s වෙත ආයුබෝවන්" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10257,7 +10283,7 @@ msgstr "" "ඔබ වින්‍යාස ගොනුවක් නොසෑදුවා විය යුතුය. වින්‍යාස ගොනුවක් සෑදීමට %1$sපිහිටුවීමේ විධානාවලිය%2$s " "භාවිතා කිරීම අවශ්‍ය විය හැකිය." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10268,7 +10294,7 @@ msgstr "" "ප්‍රතික්ෂේප කරන ලදී. ඔබ ඔබගේ වින්‍යාස ගොනුවේ, දායකය, භාවිත නාමය සහ මුරපදය සඳහා අගයන් " "MySQL සේවාදායකයේ පරිපාලකයා විසින් ලබා දුන් දත්ත සමග ගැලපේ දැයි පරීක්ෂා කල යුතුය." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10293,15 +10319,15 @@ msgstr "භාවිත නාමය:" msgid "Server Choice:" msgstr "සේවාදායකයේ තේරීම:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10364,7 +10390,7 @@ msgstr "දත්ත නික්ෂේපන විකල්ප" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" @@ -10373,7 +10399,7 @@ msgstr "වගු සඳහා නික්ෂේප දත්ත" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "සිද්ධිය" @@ -10381,8 +10407,8 @@ msgstr "සිද්ධිය" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "අර්ථ දැක්වීම" @@ -10468,7 +10494,7 @@ msgstr "තීර නම් පළමු පේළියේ යොදන්න:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "දායකයා:" @@ -11030,7 +11056,7 @@ msgstr "පටුන" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "අතිරේක" @@ -11417,18 +11443,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "යාවත්කාලීන කරන ලද වින්‍යාස ගොනුව පූරණය සඳහා phpMyAdmin වෙත නැවත වරක් ඇතුල් වන්න." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "විස්තරයක් නොමැත" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11436,41 +11462,41 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "ප්‍රධාන අනුරූකරණය" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක ප්‍රධාන සේවාදායකය ලෙස සකසා ඇත." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "සම්බන්ධිත salves පෙන්වන්න" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "අනුගාමි අනුරූකරණ භාවිතා කරන්නෙක් එක් කරන්න" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "ප්‍රධාන සේවාදායකය සඳහා වින්‍යාස" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11479,19 +11505,19 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "සියලුම දත්තගබඩා අනුරූකරන්න; අතහරින්න:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "සියලු දත්තගබඩා නොසලකා හරින්න, අනුරූ කරන්න:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "කරුණාකර දත්තගබඩා තෝරන්න:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11499,7 +11525,7 @@ msgstr "" "දැන් පහත දැක්වෙන පේළි ඔබගේ my.cnf හි [mysqld] කොටසේ අවසානයට එක්කර අනතුරුව සේවාදායකය " "නැවත පණගන්වන්න." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11508,71 +11534,71 @@ msgstr "" "සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව 'යන්න' බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම සේවාදායකය " "ප්‍රධාන සේවාදායකය ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනය වනු ඇත." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "අනුගාමි අනුරූකරණය" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "අනාරක්ෂිත සම්බන්ධතාවය" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "අනුගාමි SQL ත්‍රෙඩය අක්‍රීයයි!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "අනුගාමි IO ත්‍රෙඩය අක්‍රීයයි!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "සේවාදායකය අනුරූ ක්‍රියාවලියක අනුගාමි සේවාදායකය ලෙස සකසා ඇත. ඔබ කැමතිද:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "අනුගාමි සේවාදායකයේ තත්ත්ව වගුව බලන්න" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "පරිපාලක අනුගාමි:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "පූර්ණ ඇරඹුම" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "පූර්ණ නැවතුම" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "අනුගාමි සේවාදායකය ප්‍රත්‍යාරම්භ කරන්න" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "SQL ත්‍රෙඩය පමණක් අරඹන්න" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "SQL ත්‍රෙඩය පමණක් නවත්තන්න" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "IO ත්‍රෙඩය පමණක් අරඹන්න" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "IO ත්‍රෙඩය පමණක් නවත්තන්න" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "ප්‍රධාන සේවාදායකය වෙනස් කරන්න හෝ නැවත වින්‍යාස කරන්න" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11581,25 +11607,25 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක අනුගාමි සේවාදායකය ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "දෝෂ කළමනාකරණය:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "දෝෂ අතහැර යාම සමමුහුර්ත නොවූ ප්‍රධාන හා අනුගාමි සේවාදායකයන් ඇති කරවිය හැක!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "වත්මන් දෝෂය මගහරින්න" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "වත්මන් දෝෂය මගහරින්න" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11608,11 +11634,11 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක ප්‍රධාන සේවාදායකය ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "අනුගාමි සේවාදායකය සඳහා වින්‍යාසයන්" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11620,181 +11646,181 @@ msgstr "" "ඔබගේ වින්‍යාස ගොනුවේ (my.cnf) අනන්‍ය සේවාදායක-හැඳුනුමක් ඇති බවට තහවුරු කරගන්න. එසේ නොමැති " "නම් පහත පේළිය [mysqld] කොටසට ඇතුලත් කරන්න:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "භාවිත නාමය:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "භාවිත නාමය" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "මුරපදය" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "පෝර්ට්:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "ප්‍රධාන සේවාදායකයේ තත්වය" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "අනුගාමි සේවාදායකයේ තත්වය" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "විචල්‍යය" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "දායකයා" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" "--report-host=host_name විකල්පය සමඟ ඇරඹි අනුගාමි සේවාදායක පමණක් මෙම ලැයිස්තුවේ පෙන්වයි." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "ස්වදේශී" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "මෙම දායකයා" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" "දායක වගුව භාවිතා කෙරෙයි නම් මෙම ක්ෂේත්‍රය නොසැලකෙන අතර දායක වගුවේ ඇති අගයන් භාවිතා කෙරේ." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "මුරපදය උත්පාදනය කරන්න" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "අනුරූ කරණයේ තත්වය" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "ප්‍රධාන අනුරූකරණය" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "ප්‍රස්තාරය සාර්ථකව අඳින ලදි." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "ප්‍රධාන අනුරූකරණය" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "අනුරූ කරණයේ තත්වය" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "ප්‍රධාන අනුරූකරණය" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "දෝෂය." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "හඳුනා නොගත් දෝෂය" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "ප්‍රධාන %s වෙත සම්බන්ධ විය නොහැක." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "ප්‍රධාන සේවාදායකය වෙනස් කල නොහැක!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "ප්‍රධාන සේවාදායකය %s වෙත සාර්ථකව වෙනස් කරන ලදි." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11815,7 +11841,7 @@ msgstr "%1$s සිද්ධිය වෙනස් කරන ලදි." msgid "Event %1$s has been created." msgstr "%1$s සිද්ධිය සාදන ලදි." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "ඔබගේ ඉල්ලීම පිරිසකසන අතරතුර දෝෂ එකක් හෝ වැඩි ගණනක් ඇති විය:" @@ -11824,75 +11850,75 @@ msgstr "ඔබගේ ඉල්ලීම පිරිසකසන අතරතු msgid "Edit event" msgstr "සිද්ධිය සංස්කරණය කරන්න" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "තොරතුරු" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "සිද්ධියේ නම" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "%s ලෙස වෙනස් කරන්න" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "ක්‍රියාත්මක කල යුත්තේ" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "ක්‍රියාත්මක කරන්න සෑම" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "අරඹන්න" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "නවතන්න" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "සමාප්තියේදී සුරකින්න" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "අර්ථ දක්වන්නා" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "අර්ථ දක්වන්නා \"භාවිත නාමය@සේවාදායක නාමය\" ආකෘතියේ විය යුතුය!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "ඔබ සිද්ධිය සඳහා නමක් ලබාදිය යුතුයි!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "ඔබ සිද්ධිය සඳහා වලංගු කාල පරතරයක් ලබාදිය යුතුයි." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "ඔබ සිද්ධිය සඳහා වලංගු ක්‍රියාත්මක කිරීමේ වෙලාවක් ලබාදිය යුතුයි." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "ඔබ සිද්ධිය සඳහා වලංගු වර්ගයක් ලබාදිය යුතුයි." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "ඔබ සිද්ධි අර්ථ දැක්වීමක් ලබාදිය යුතුයි." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය:" @@ -11913,7 +11939,7 @@ msgstr "සිද්ධි නියමකාරනියේ තත්වය" msgid "The backed up query was:" msgstr "රක්ෂිත විමසුම වූයේ:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "ප්‍රතිදානය" @@ -11925,97 +11951,97 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "නෛත්‍යකය සංස්කරණ කරන්න" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "වලංගු නැති නෛත්‍යක වර්ගය: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "%1$s නෛත්‍යකය සාදන ලදි." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "හලන ලද නෛත්‍යකය ප්‍රතිස්ථාපනය කිරීම අසමත් විය." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "%1$s නෛත්‍යකය වෙනස් කරන ලදී." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "%1$s නෛත්‍යකය වෙනස් කරන ලදී." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "නෛත්‍යකයේ නම" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "පරාමිතියන්" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "දිශාව" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "පරාමිතය එක් කරන්න" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "අවසන් පරාමිතය ඉවත් කරන්න" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "ප්‍රතිදාන වර්ගය" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "ප්‍රතිදානයේ දිග/අගයන්" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "ප්‍රතිදාන විකල්ප" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "නිර්ණයනය කල හැකිද යන වග" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "ආරක්ෂණ වර්ගය" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL දත්ත පරිශීලනය" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "ඔබ නෛත්යකය සඳහා නමක් ලබාදිය යුතුයි!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "පරාමිතිය සඳහා සපයන ලද \"%s\", දිශාව සඳහා වැරදි අගයකි." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -12023,24 +12049,24 @@ msgstr "" "ENUM, SET, VARCHAR සහ VARBINARY වර්ගවල නෛත්‍යක පරාමිති සඳහා ඔබ ප්‍රමාණය/අගයන් ලබා දිය " "යුතුය." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "සෑම නෛත්‍යක පරාමිතියක් සඳහාම ඔබ නමක් සහ වර්ගයක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "නෛත්‍යකය සඳහා ඔබ වලංගු ප්‍රතිදාන වර්ගයක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "ඔබ නෛත්‍යක අර්ථදක්වීමක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "%s නෛත්‍යකයේ ප්‍රතිදානය" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -12049,13 +12075,13 @@ msgid_plural "%d rows affected by the last statement inside the procedure." msgstr[0] "කාර්ය පටිපාටියේ අවසන් ප්‍රකාශය ක්‍රියාත්මක කිරීමෙන් පේළි %d කට බලපෑවේ ය" msgstr[1] "කාර්ය පටිපාටියේ අවසන් ප්‍රකාශය ක්‍රියාත්මක කිරීමෙන් පේළි %d කට බලපෑවේ ය" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "නෛත්‍යකය ක්‍රියාත්මක කරන්න" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "නෛත්‍යක පරාමිති" @@ -12077,32 +12103,32 @@ msgstr "%1$s ප්‍රේරකය සාදන ලදි." msgid "Edit trigger" msgstr "ප්‍රේරකය සංස්කරණය කරන්න" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "ප්‍රේරකයේ නම" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "වේලාව" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "ඔබ ප්‍රේරකය සඳහා නමක් ලබාදිය යුතුයි!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "ඔබ ප්‍රේරකය සඳහා වලංගු වේලාවක් ලබාදිය යුතුයි!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "ඔබ ප්‍රේරකය සඳහා වලංගු සිද්ධියක් ලබාදිය යුතුයි!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "ඔබ වලංගු වගු නාමයක් ලබාදිය යුතුයි!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "ඔබ ප්‍රේරක අර්ථදක්වීමක් ලබා දිය යුතුය." @@ -12229,590 +12255,545 @@ msgstr "අක්ෂර කට්ටල සහ පරිතුලන" msgid "Databases statistics" msgstr "දත්තගබඩා සංඛ්‍යා ලේඛන" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "ප්‍රේරක සැදීමට හා ඉවත් කිරීමට අවසර ලබා දෙයි." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "කිසිවක් නැත" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "භාවිතා කරන්නන් කණ්ඩායම" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "කල්පවතිනා සබඳතා" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "කල්පවතිනා සබඳතා" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "සම්පත් සීමා" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "නෛත්‍යක" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows creating and dropping triggers." msgid "Allows altering and dropping this routine." msgstr "ප්‍රේරක සැදීමට හා ඉවත් කිරීමට අවසර ලබා දෙයි." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "වගු-විශේෂී වරප්‍රසාද" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "පරිපාලනය" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "ගෝලීය" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie සත්‍යාපනය" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon සත්‍යාපනය" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Cookie සත්‍යාපනය" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "දාරක නාමය:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "දාරක නාමය" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "සත්‍යාපනය" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "මුරපදය hash කිරීම:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අහෝසි කර ඇත." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "භාවිත ගිණුමක් එක් කරන්න" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "භාවිත ගිණුම සඳහා දත්තගබඩාව" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "එම නමින්ම දත්තගබඩාවක් සාදා එයට සියලු වරප්‍රසාද ප්‍රදානය කරන්න." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න (භාවිත නාමය\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "භාවිතා කරන්නන් හමු නොවිණි." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "ඕනෑම" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "ගෝලීය" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "අව්‍යවස්ථිත කාඩ්පත" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "වගු විශේෂිත" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "අහෝසි කරන්න" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "භාවිතා කරන්නන් කණ්ඩායම සංස්කරණය කරන්න" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… පැරණි එක තබා ගන්න." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිත ගිණුම පිටපත් කරන්න" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිත ගිණුමක් එක් කරන්න …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "තෝරාගත් භාවිත ගිණුම් ඉවත් කරන්න" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "භාවිතා කරන්නන් කණ්ඩායම" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අලුත් කර ඇත." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s සඳහා වරප්‍රසාද" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "භාවිතා කරන්නා" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "නව භාවිතා කරන්නෙක්" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "වරප්‍රසාද සංස්කරණය කරන්න:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "භාවිත ගිණුම" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "භාවිත ගිණුම් පිළිබඳ දළ විශ්ලේෂණය" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12824,7 +12805,7 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12842,11 +12823,11 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." @@ -13161,12 +13142,12 @@ msgstr "විධානය" msgid "Progress" msgstr "ප්‍රගතිය" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "පෙරහන්" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "සක්‍රීය ඒවා පමණක් පෙන්වන්න" @@ -13187,12 +13168,12 @@ msgstr "මිනිත්තුවකට:" msgid "per second:" msgstr "තප්පරයකට:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "ප්‍රකාශය" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13216,33 +13197,33 @@ msgstr "ආකෘතික අගයන් පෙන්වන්න" msgid "Related links:" msgstr "අදාල සබැඳි:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13250,78 +13231,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13329,7 +13310,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13337,42 +13318,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "අභ්‍යන්තරව සිදු කෙරුණු ROLLBACK ප්‍රකාශ ගණන." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්‍ර හෝ පවිත්‍ර)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "දැනට අපවිත්‍රව ඇති පිටු ගණන." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13380,33 +13361,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13415,243 +13396,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "මුළු දත්ත කියැවුම් ගණන." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "මුළු දත්ත ලියැවුම් ගණන." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "මේ දක්වා ලියැවුණු දත්ත ප්‍රමාණය, බයිට වලින්." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "ද්විත්ව-ලිවීම් මෙහෙයුම් සඳහා ලියැවුණු පිටු ගණන." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "සිදු කෙරුණු ද්විත්ව-ලිවීම් මෙහෙයුම් ගණන." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු වූ වාර ගණන." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "සාදන ලද පිටු ගණන." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්‍යන්‍ය කාලය, මිලිතත්පර වලින්." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "යතුරු කෑෂයේ භාවිතා කරන ලද ප්‍රතිශතය (ගණනය කරන ලද අගයකි)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13659,99 +13640,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13759,18 +13740,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13778,13 +13759,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "අවධානය අක්‍රීයයි." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13819,47 +13800,47 @@ msgstr "දත්තගබඩා සේවාදායකය" msgid "Table level tabs" msgstr "වගු විස්තර" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "දසුන්" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "භාවිතා කරන්නන් කණ්ඩායමක් එක් කරන්න" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "'%s' භාවිතා කරන්නන් කණ්ඩායම සංස්කරණය කරන්න" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "වරප්‍රසාද නොමැත." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "තීර නම්: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "සේවාදායකයේ අනුවාදය" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "දත්තගබඩා සේවාදායකය" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13976,7 +13957,7 @@ msgstr "SQL විමසුමක් සිදු කරන්න/%s දත් msgid "Run SQL query/queries on table %s" msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "මකන්න" @@ -14062,178 +14043,178 @@ msgstr "අක්‍රීය කරන්න" msgid "Version" msgstr "අනුවාදය" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "සාදන ලදි" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "අනුවාදය සාදන්න" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "අවධානය පිළිබඳ වාර්තාව" # සැණරුව = snapshot. Source: Glossary of Information Technology terms - ICTA -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "සැකිල්ලේ සැණරුව" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "සක්‍රිය" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "අක්‍රිය" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "අවධානය පිළිබඳ දත්ත පේළිය වාර්තාවෙන් ඉවත් කරන්න" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "දත්ත නොමැත" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%1$s පෙන්වන්න, %2$s දින සිට %3$s දින දක්වා %4$s %5$s භාවිතා කරන්නා විසින්" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්‍රතිස්ථාපනය කෙරෙනු ඇත." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL ක්‍රියාත්මක කිරීම" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "අපනයන කරන්න %s ලෙස" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "දත්ත අර්ථ දැක්වීම" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "දිනය" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "භාවිත නාමය" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "කිසිවක් නැත" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය සක්‍රීය කරන ලදී." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය අක්‍රීය කරන ලදී." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s හි %1$s වන අනුවාදය සාදන්න" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s වන අනුවාදය සාදන ලදි. %2$s සඳහා අවධානය සක්‍රීයයි." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "අවධානය අක්‍රීය වගු" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "වගුව අවධානයට ලක් කරන්න" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "අවධානය සක්‍රීය වගු" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "අවසන් අනුවාදය" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "අවධානය පිළිබඳ දත්ත ඉවත් කෙරෙමින්" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "අනුවාද" @@ -14241,7 +14222,7 @@ msgstr "අනුවාද" msgid "Manage your settings" msgstr "සිටුවම් පරිපාලනය" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "වින්‍යාස සුරකින ලදි." @@ -14267,7 +14248,7 @@ msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14277,57 +14258,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "යොමු කල පෝරමයේ දෝෂ සහිතයි" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "වින්‍යාස ආනයනය අසමත් විය" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "ගොනුවකින් ආනයනය කරන්න" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "බ්‍රවුසරයේ ගබඩාවෙන් ආනයනය කරන්න" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "බ්‍රවුසරයේ ගබඩාවෙන් සිටුවම් ආනයනය කෙරෙනු ඇත." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "සුරැකූ සිටුවම් නොමැත!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "වත්මන් වින්‍යාස සමග ඒකාබද්ධ කරන්න" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14336,25 +14317,25 @@ msgstr "" "config.inc.php වෙනස් කිරීම මඟින් ඔබට තවත් සිටුවම් සිටුවිය හැකිය. උදා. %sSetup script%s " "භාවිතා කිරීමෙන්." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "බ්‍රවුසරයේ ගබඩාවේ සුරකින්න" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "බ්‍රවුසරයේ ගබඩාවේ සිටුවම් සුරැකෙනු ඇත." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "වත්මන් සිටුවම් උඩින් නව සිටුවම් ලියැවේ!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "ඔබගේ සියලුම සිටුවම් ප්‍රතිසකසා ඒවා පෙරනිමි අගයන් වෙත ප්‍රතිෂ්ඨාපනය කල හැක." @@ -14362,45 +14343,45 @@ msgstr "ඔබගේ සියලුම සිටුවම් ප්‍රති msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "බාගත කරන්න" @@ -14408,18 +14389,18 @@ msgstr "බාගත කරන්න" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "සැකසුම්, පූරණය සහ සුරැකීම කල නොහැක" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14427,84 +14408,87 @@ msgstr "" "ඔබ ආරක්‍ෂිත සම්බන්ධතාවක් භාවිතා නොකරයි. සියලුම දත්ත (මුරපද ආදී සංවේදී තොරතුරු ඇතුළුව) අනාරක්ෂිතව " "හුවමාරු වෙයි!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්‍ෂිත සම්බන්ධතාවන් භාවිත කිරීමට " "[a@%s]මෙම[/a] සබැඳුම වෙත යන්න." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "අනාරක්ෂිත සම්බන්ධතාවය" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "වින්‍යාසය සුරකින ලදි." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "වින්‍යාසය සුරකින ලදි." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "දළ විශ්ලේෂණය" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "සැඟවුණු පණිවිඩ පෙන්වන්න (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "සකස් කෙරුණු සේවාදායක කිසිවක් නොමැත" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "නව සේවාදායකය" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "පෙරනිමි භාෂාව" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "භාවිත කරන්නාට තෝරා ගෙනීමට ඉඩ දෙන්න" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- කිසිවක් නොමැත -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "පෙරනිමි සේවාදායකය" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "පේළියේ අවසානය" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "පෙන්වන්න" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "පූරණය කරන්න" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin මුල් පිටුව" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "පරිත්‍යාග කරන්න" @@ -14540,7 +14524,7 @@ msgstr "දෝෂ නොසලකන්න" msgid "Show form" msgstr "පෝරමය පෙන්වන්න" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14548,15 +14532,15 @@ msgstr "" "අනුවාදය කියවීමට අසමත් විය. ඔබ offline වීම හෝ උත්ශ්‍රේණි (upgrade) සේවාදායකය ප්‍රතිචාර " "නොදැක්වීම හෝ නිසා විය හැකිය." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14565,7 +14549,7 @@ msgstr "" "ඔබ Git අනුවාදය භාවිතා කරයි. [kbd]git pull[/kbd] විධානය භාවිතා කරන්න :-)[br] නවතම " "ස්ථායී අනුවාදය %s, %s දින නිකුත් කෙරුණු." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "අලුත් ස්ථායී අනුවාදයක් නොමැත" @@ -14578,12 +14562,12 @@ msgstr "වැරදි දත්ත" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' දත්තගබඩාව නොමැත." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s වගුව දැනටමත් පවතී!" @@ -14596,35 +14580,35 @@ msgstr "" msgid "Invalid table name" msgstr "වලංගු නොවන වගු නම" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s සඳහා අවධානය සක්‍රීයයි." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL ය ක්‍රියාත්මක කරන ලදි." @@ -14843,7 +14827,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14865,7 +14849,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15390,17 +15374,17 @@ msgid "Size" msgstr "ප්‍රමාණය" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "සෑදීම" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "අවසන් යාවත්කාලීන කිරීම" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" @@ -15435,6 +15419,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "අවධානය පිළිබඳ දත්ත ඉවත් කෙරෙමින්" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database:" @@ -15455,10 +15445,43 @@ msgstr "පහත වගුවට වරප්‍රසාද එක් කර msgid "Add privileges on the following table:" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "නව භාවිතා කරන්නෙක්" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "කිසිවක් නැත" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "තෝරාගත් භාවිත ගිණුම් ඉවත් කරන්න" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "සම්පත් සීමා" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" @@ -15491,7 +15514,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "අක්‍රීයයි" @@ -15657,7 +15680,7 @@ msgstr "භාවිතා කරන්නා:" msgid "Comment:" msgstr "ටීකාව:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15697,28 +15720,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "අන්‍ය මූල නිරෝධය" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "සීමා බාධවන් එක් කරන්න" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "අභ්‍යන්තර සබඳතා" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "අභ්‍යන්තර සබඳතා" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "අදාල අන්‍ය මූලය ඇති විට අභ්‍යන්තර සබඳතාවක් අවශ්‍ය නොවේ." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න:" @@ -15780,13 +15803,13 @@ msgstr "මුල් පිහිටුම" msgid "Replaced string" msgstr "අදාල සබැඳි" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "අනුරූ කරන ලද" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "අමතර සෙවීම් නිර්ණායක" @@ -15861,7 +15884,7 @@ msgid "at beginning of table" msgstr "වගුව මුලදී" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15897,28 +15920,28 @@ msgstr "පේළියේ දිග" msgid "Index length" msgstr "පේළියේ දිග" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "කොටස් කරන ලද" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "කොටස් කිරීම ඉවත් කරන්න" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "දසුන සංස්කරණය කරන්න" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "අවකාශ භාවිතය" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "එලදායී" @@ -15943,31 +15966,31 @@ msgstr "වගුවේ සැකිල්ල වැඩි දියුණු msgid "Track view" msgstr "දසුන අවධානයට ලක් කරන්න" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "ස්ථිතික" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "ගතික" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "කොටස් කරන ලද" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "පේළියේ දිග" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "පේළියේ ප්‍රමාණය" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "මීළඟ ක්‍රමාංකය" @@ -15980,50 +16003,50 @@ msgstr "%s තීරුව හලන ලදි." msgid "Click to toggle" msgstr "මාරු කිරීමට ක්ලික් කරන්න" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "තේමාව" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "තවත් තේමාවන් ලබා ගන්න!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Hide browser transformation" msgid "Available browser display transformations" msgstr "බ්‍රව්සර රූපාන්තරනය සඟවන්න" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Hide browser transformation" msgid "Available input transformations" msgstr "බ්‍රව්සර රූපාන්තරනය සඟවන්න" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "විස්තරය" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "අවධානය පිළිබඳ වාර්තාව" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "පරිශීලක පැතිකඩ යාවත්කාලීන කරන ලදි." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16101,7 +16124,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16126,19 +16149,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16199,29 +16222,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "%1$s සිද්ධිය සාදන ලදි." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "ගොනු නාම ටෙම්ප්ලේටය" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "වගුව මුලදී" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16240,10 +16263,16 @@ msgstr "%s වන පේළියේ අනපේක්ෂිත අනුලක msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "වගුව මුලදී" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16288,7 +16317,7 @@ msgstr "" msgid "strict error" msgstr "දෝෂ රැස්කරන්න" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17451,6 +17480,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Cookie සත්‍යාපනය" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/sk.po b/po/sk.po index c71fe0f1d7..928fdc2832 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:30+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Slovak " -"\n" +"Language-Team: Slovak \n" "Language: sk\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,31 +27,31 @@ msgstr "" "Súbor %s nie je dostupný na tomto systéme. Viac informácií nájdete na " "stránke www.phpmyadmin.net." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Ústredný zoznam stĺpcov pre aktuálnu databázu je prázdny." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Kliknite pre zoradenie." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Zobrazované riadky %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Komentár k databáze" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Komentáre k tabuľke:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -63,13 +63,13 @@ msgstr "Komentáre k tabuľke:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -80,9 +80,9 @@ msgstr "Komentáre k tabuľke:" msgid "Column" msgstr "Stĺpec" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -93,12 +93,12 @@ msgstr "Stĺpec" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -110,9 +110,9 @@ msgstr "Stĺpec" msgid "Type" msgstr "Typ" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -123,15 +123,15 @@ msgstr "Typ" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Nulový" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -142,14 +142,14 @@ msgstr "Nulový" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Predvolené" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -159,7 +159,7 @@ msgstr "Predvolené" msgid "Links to" msgstr "Linkovať na" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -173,19 +173,19 @@ msgstr "Linkovať na" msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primárny" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -193,13 +193,13 @@ msgstr "Primárny" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -207,17 +207,17 @@ msgstr "Primárny" msgid "No" msgstr "Nie" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -226,13 +226,13 @@ msgstr "Nie" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -244,15 +244,15 @@ msgstr "Áno" msgid "View dump (schema) of database" msgstr "Zobraziť dump (schému) databázy" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto databáze." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -261,8 +261,8 @@ msgid "Tables" msgstr "Tabuľky" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -270,10 +270,10 @@ msgstr "Tabuľky" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,27 +286,27 @@ msgstr "Štruktúra" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Dáta" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Vybrať všetko" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Databáza %1$s bola premenovaná na %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Databáza %1$s bola skopírovaná do %2$s." @@ -319,27 +319,27 @@ msgstr "" "Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, " "kliknite %ssem%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Zvoľte prosím aspoň jeden stĺpec, ktorý chcete zobraziť!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Prepnúť do %svizuálneho návrhára%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Prístup odmietnutý!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Sledovacie dáta boli úspešne vymazané." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -347,11 +347,11 @@ msgstr "" "Verzia %1$s bola vytvorená pre vybrané tabuľky, sledovanie je pre nich " "aktívne." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Neboli vybrané žiadne tabuľky." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Databázový log" @@ -391,131 +391,131 @@ msgstr "Nesprávny typ!" msgid "Bad parameters!" msgstr "Chybné parametre!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pre pole \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použíť OpenStreetMap ako základnú vrstvu" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Bod:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Pridať bod" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Čiara %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Vonkajší obrys:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Vnútorný obrys %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Pridať linku" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Pridať vnútorný obrys" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polygón %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Pridať polygón" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Pridať geometriu" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Vykonaj" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -523,19 +523,19 @@ msgstr "" "Z voľby „Funkcie“ zvoľte „GeomFromText“ a vložte nižšie uvedený text ako " "hodnotu." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Úspešný" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Neúspešný" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Nekompletné parametre" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -544,15 +544,15 @@ msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Záznam z obľúbených bol zmazaný." -#: import.php:489 +#: import.php:486 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 " @@ -562,18 +562,18 @@ msgstr "" "jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP konfigurácii. Pozri " "[doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu " "inštaláciu!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Príkaz %s bol zaradený medzi obľúbené." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -581,7 +581,7 @@ msgstr[0] "Import bol úspešne ukončený, bol vykonaný %d dopyt." msgstr[1] "Import bol úspešne ukončený, boli vykonané %d dopyty." msgstr[2] "Import bol úspešne ukončený, bolo vykonaných %d dopytov." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -590,7 +590,7 @@ msgstr "" "Časový limit behu skriptu vypršal. Ak chcete import súboru dokončiť, " "%sodošlite znovu rovnaký súbor%s a import bude pokračovať." -#: import.php:632 +#: import.php:629 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." @@ -599,7 +599,7 @@ msgstr "" "že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený " "časový limit behu skriptu v php." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Príkaz \"DROP DATABASE\" je zakázaný." @@ -607,17 +607,17 @@ msgstr "Príkaz \"DROP DATABASE\" je zakázaný." msgid "Could not load the progress of the import." msgstr "Nemôžem načítať priebeh importu." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Späť" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin Demo Server" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -627,107 +627,107 @@ msgstr "" "Používate demo server. Môžete robiť čokoľvek, ale prosíme, nemeňte " "užívateľov root, debian-sys-maint a pma. Viac informácii nájdete na %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Všeobecné nastavenia" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Zmeniť heslo" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Znaková sada pre pripojenie k serveru" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Nastavenia vzhľadu" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Ďalšie nastavenia" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Databázový server" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Typ servera:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Verzia serveru:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Verzia protokolu:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Užívateľ:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Znaková sada servera:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Webový server" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Verzia databázového klienta:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Rozšírenie PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Verzia PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Informácie o verzii:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentácia" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Oficiálne stránky phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Prispejte" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Získať podporu" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Zoznam zmien" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licencia" -#: index.php:443 +#: index.php:444 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 " @@ -738,13 +738,13 @@ msgstr "" "rozdeľovať reťazce kódované v týchto znakových sadách a môže to viesť k " "nečakaným výsledkom." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -757,7 +757,7 @@ msgstr "" "($cfg['LoginCookieValidity']). Kvôli tomu môže vaše prihlásenie vypršať skôr " "ako je nastavené v konfigurácii phpMyAdmina." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -765,17 +765,17 @@ msgstr "" "Životnosť cookie je nižšia ako je nastavené v phpMyAdmin. Kvôli tomu vaše " "prihlásenie vyprší skôr ako je nastavené v konfigurácii phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte prosím kľúč pre šifrovanie cookies v konfiguračnom súbore " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -787,7 +787,7 @@ msgstr "" "nakonfigurovaný. V opačnom prípade bezpečnosť Vášho servera môže byť " "narušená neautorizovanými užívateľmi, ktorí stiahnu Vašu konfiguráciu." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -796,12 +796,12 @@ msgstr "" "Miesto uloženia phpMyAdmin konfigurácie nie je úplne nastavené, niektoré " "rozšírené vlastnosti boli vypnuté. Ak chcete zistiť prečo, kliknite %ssem%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "Voliteľne môžete ísť do záložky 'Operácie' a nastaviť to tam." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -810,7 +810,7 @@ msgstr "" "Verzia Vašej PHP MySQL knižnice %s je rozdielna od MySQL server verzie %s. " "Toto môže spôsobiť nepredvídateľné správanie." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -966,7 +966,7 @@ msgid "Save & close" msgstr "Uložiť a zavrieť" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Vynulovať" @@ -998,7 +998,7 @@ msgstr "Pridať index" msgid "Edit index" msgstr "Upraviť index" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Pridať %s polí do indexu" @@ -1023,10 +1023,10 @@ msgstr "Vyberte stĺpce pre index." msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Ukážka SQL" @@ -1038,7 +1038,7 @@ msgstr "Simulovať dopyt" msgid "Matched rows:" msgstr "Vyhovujúce riadky:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL dotaz:" @@ -1055,13 +1055,13 @@ msgstr "Názov hostiteľa je prázdny!" msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" @@ -1069,8 +1069,8 @@ msgstr "Heslá sa nezhodujú!" msgid "Removing Selected Users" msgstr "Odstránenie vybraných používateľov" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Zavrieť" @@ -1092,19 +1092,19 @@ msgstr "Šablóna bola zmazaná." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Ostatné" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1209,40 +1209,40 @@ msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1260,7 +1260,7 @@ msgstr "Dopyty" msgid "Traffic" msgstr "Vyťaženie" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavenia" @@ -1274,16 +1274,16 @@ msgid "Please add at least one variable to the series!" msgstr "Pridajte prosím aspoň jednu hodnotu do série!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Žiadny" @@ -1480,20 +1480,20 @@ msgstr "Analyzujem…" msgid "Explain output" msgstr "Vysvetliť výstup" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Stav" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Čas" @@ -1582,10 +1582,10 @@ msgstr "" "nastavenia…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Import" @@ -1658,7 +1658,7 @@ msgstr "Parametre neboli nájdené!" msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Nastavenia stránky" @@ -1698,8 +1698,8 @@ msgid "Error text: %s" msgstr "Text chyby: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Neboli vybrané žiadne databázy." @@ -1737,7 +1737,7 @@ msgstr "Kopírujem databázu" msgid "Changing charset" msgstr "Mením znakovú sadu" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Povoliť kontrolu cudzích kľúčov" @@ -1765,72 +1765,77 @@ msgstr "Prechádzať" msgid "Deleting" msgstr "Odstraňujem" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Odstrániť nájdené záznamy z tabuľky %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definícia uloženej funkcie musí obsahovať príkaz RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exportovať" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Upraviť ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Hodnoty pre pole %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Hodnoty pre nový stĺpec" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Zadajte každú hodnotu do samostatného poľa." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Pridať %d hodnôt" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Skryť vyhľadávacie pole" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1838,68 +1843,68 @@ msgstr "Zobrazit vyhľadávacie pole" msgid "Edit" msgstr "Upraviť" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Zmazať" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Žiadny automaticky uložený dopyt" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Premenná %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Zvoliť" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Volič stĺpcov" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Hľadať v tomto zozname" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Zobraziť viac" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Ste si istí?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1907,51 +1912,51 @@ msgstr "" "Táto akcia môže zmeniť niektoré definície stĺpcov.
Naozaj chcete " "pokračovať?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Pokračovať" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Pridať primárny kľúč" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Bol pridaný primárny kľúč." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Vezmeme vás na ďalší krok…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Prvý krok normalizácie je kompletný pre tabuľku '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Koniec kroku" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Druhý krok normalizácie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Hotovo" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Potvrdiť čiastočné závislosti" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Vybrané čiastočné závislostí sú nasledovné:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1959,19 +1964,19 @@ msgstr "" "Poznámka: a, b -> d,f znamená, že kombinované hodnoty v stĺpcoch a a b " "spolu môžu určovať hodnoty stĺpcov d a f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Neboli vybrané žiadne čiastkové závislosti!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Ukáž mi možné čiastočné závislosti na základe údajov v tabuľke" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Skryť zoznam čiastočných závislostí" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1979,178 +1984,178 @@ msgstr "" "Posaďte sa! Môže to trvať niekoľko sekúnd v závislosti od veľkosti dát a " "počtu stĺpcov tabuľky." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Krok" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Vykonajú sa nasledovné akcie:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "Odstrániť stĺpce %s z tabuľky %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Vytvoriť nasledujúcu tabuľku" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tretí krok normalizácie (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Potvrdiť prechodné závislostí" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Boli zvolené nasledujúce závislosti:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Neboli vybrané žiadne závislosti!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Uložiť" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Skryť parametre vyhľadávania" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Rozsah vyhľadávania" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Najväčšia hodnota stĺpca:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Najmenšia hodnota stĺpca:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimálna hodnota:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maximálna hodnota:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Skryť kritériá vyhľadávania" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Zobraziť kritériá vyhľadávania" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje riadok dát." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Pohybom myši nad bodom zobrazíte jeho názov." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pre priblíženie kliknite na sekciu grafu." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Kliknite na tlačidlo Obnoviť zoom na návrat do pôvodného stavu." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Kliknite na dátový bod pre zobrazenie a prípadnú úpravu dát." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Graf môžete zväčšiť potiahnutím za pravý dolný roh." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Zvoľte dva stĺpce" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Zvoľte dva rôzne stĺpce" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopírovať" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Bod" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linka" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygón" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Vnútorný obrys" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Vonkajší obrys" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Chcete skopírovať šifrovací kľúč?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Šifrovací kľúč" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2158,24 +2163,24 @@ msgstr "" "Hovorí, že ste vykonali zmeny na tejto stránke; budete vyzvaní k potvrdeniu " "pred zahodením zmien" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Zvoliť odkazovaný kľúč" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Zvoliť cudzí kľúč" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Zvoľte, prosím, primárny alebo unikátny kľúč!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Zvoľte, ktoré polia zobraziť" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2183,117 +2188,117 @@ msgstr "" "Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " "Chcete pokračovať?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Názov stránky" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Uložiť stránku" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Uložiť stránku ako" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otvoriť stránku" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Zmazať stránku" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nepomenovaná" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Prosím zvoľte si stránku, kde chcete pokračovať" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Prosím zadajte platný názov stránky" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Chcete uložiť zmeny aktuálnej stránky?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Stránka bola odstránená" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exportovať relačnú schému" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Pridať voľbu pre stĺpec \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "Bolo vytvorených %d objektov." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Odošli" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Klávesou ESC ukončíte upravovanie." -#: js/messages.php:575 +#: js/messages.php:576 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 "Na stránke sú neuložené zmeny. Naozaj ju chcete opustiť?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Usporiadajte pretiahnutím." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Kliknutím zoradíte výsledky podľa tohto stĺpca." -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Kliknite pre označenie/odznačenie." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Dvakrát kliknite pre skopírovanie názvu stĺpca." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Kliknite na šípku rozbaľovacieho zoznamu
pre zmenu viditeľnosti stĺpca." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Zobraziť všetko" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2302,11 +2307,11 @@ msgstr "" "zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po " "uložení." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Zadajte platný šestnástkový reťazec. Platné znaky sú 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2314,100 +2319,100 @@ msgstr "" "Skutočne chcete zobraziť všetky riadky? Pri veľkej tabuľke môže dôjsť k pádu " "prehliadača." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Originálna dĺžka" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "zrušiť" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prerušené" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Úspech" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Presuňte súbory sem" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Najprv vyberte databázu" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Vytlačiť" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Väčšinu stĺpcov môžete upraviť
dvojkliknutím na ich obsah." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "Väčšinu stĺpcov môžete upraviť
kliknutím na ich obsah." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Prejsť na odkaz:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopírovať názov stĺpca." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Kliknutím pravým tlačidlom myši na názov stĺpca ho skopírujete do schránky." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Viac" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Zobraziť panel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Skryť panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Zobraziť skryté položky navigácie." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Prepojiť s hlavným panelom" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Zrušiť prepojenie s hlavným panelom" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Zvolená stránka sa nenašla v histórii, pravdepodobne bola zrušená." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2417,41 +2422,41 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "aktuálna" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Vytvoriť pohľad" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Poslať chybové hlásenie" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Odoslať chybové hlásenie" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Vyskytla sa chyba JavaScriptu. Chcete odoslať chybové hlásenie?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Zmeniť nastavenia hlásení" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Zobraziť podrobnosti hlásenia" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2459,7 +2464,7 @@ msgstr "" "Export nie je kompletný kvôli krátkemu času vykonávania (execution time) v " "nastaveniach PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2468,58 +2473,58 @@ msgstr "" "Varovanie: formulár na tejto stránke má viac než %d polí. Pri odoslaní, " "niektoré polia môžu byť ignorované kvôli nastaveniu PHP max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Na serveri boli zistené chyby!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Prosím, pozrite sa na spodnú časť okna." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorovať všetko" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Vykonať tento dopyt znovu?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Naozaj chcete odstrániť túto záložku?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s dopytov bolo vykonaných %s krát za %s sekúnd." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Zobraziť argumenty" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Skryť argumenty" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Ubehnutý čas:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2528,349 +2533,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Skopírovať tabuľky do" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Pridať prefix tabuľky" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Nahradiť predponu tabuľky" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Predchádzajúci" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Dnes" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Január" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Február" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Marec" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Apríl" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Máj" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Jún" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Júl" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "August" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "September" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Október" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "November" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Piatok" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Týž" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalendár-mesiac-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "žiadny" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minúty" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekundy" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Prosím opravte toto pole" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Prosím zadajte platnú emailovú adresu" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Prosím zdajte platnú adresu URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Prosím zadajte platný dátum" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadajte platný dátum ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Prosím zadajte platné číslo" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Prosím zadajte platné číslo kreditnej karty" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Prosím zadajte iba čísla" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Prosím zadajte tú istú hodnotu ešte raz" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Prosím zadajte nie viac ako {0} znakov" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Prosím zadajte najmenej {0} znakov" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosím zadajte počet znakov medzi {0} a {1}" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadajte hodnotu medzi {0} a {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadajte hodnotu menšiu alebo rovnú {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadajte hodnotu väčšiu alebo rovnú {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Prosím zadajte platný dátum alebo čas" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Prosím zdajte platný HEX vstup" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Chyba" @@ -2934,20 +2959,20 @@ msgid "Charset" msgstr "Znaková sada" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Zotriedenie" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binárny" @@ -3142,7 +3167,7 @@ msgid "Czech-Slovak" msgstr "Čeština/Slovenčina" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "neznámy" @@ -3196,7 +3221,7 @@ msgstr "" msgid "Font size" msgstr "Veľkosť písma" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3204,21 +3229,21 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Žiadne záložky" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Konzola pre SQL dopyty" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Nepodarilo sa načítať konfiguračný súbor!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3226,25 +3251,25 @@ msgstr "" "Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne " "nastavený)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Server neodpovedá." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Overte prístupové práva k adresáru, v ktorom je uložená databáza." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Podrobnosti…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Chýbajúci parameter:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie." @@ -3338,57 +3363,57 @@ msgstr "Vložiť:" msgid "Del:" msgstr "Zmazať:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL dopyt v databáze %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Odošli dopyt" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Uložené vyhľadávania:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nová záložka" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Vytvoriť záložku" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Upraviť záložku" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Odstrániť záložku" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "najmenej jedno zo slov" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "všetky slová" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "presný výraz" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "ako regulárny výraz" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Prehľadať výsledky na \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3396,7 +3421,7 @@ msgstr[0] "Celkovo: %s výskyt" msgstr[1] "Celkovo: %s výskyty" msgstr[2] "Celkovo: %s výskytov" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -3404,46 +3429,41 @@ msgstr[0] "%1$s výskyt v %2$s" msgstr[1] "%1$s výskyty v %2$s" msgstr[2] "%1$s výskytov v %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Prechádzať" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Odstrániť nájdené záznamy z tabuľky %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Hľadať v databáze" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slová alebo hodnoty, ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Nájdi:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Slová sú rozdelené medzerou (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "V tabuľkách:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Odznačiť všetko" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "V tabuľke:" @@ -3463,30 +3483,30 @@ msgstr "Filtrovať riadky" msgid "Search this table" msgstr "Hľadať v tabuľke" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Začiatok" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Predchádzajúci" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Ďalší" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Koniec" @@ -3495,7 +3515,7 @@ msgstr "Koniec" msgid "All" msgstr "Všetko" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Počet riadkov:" @@ -3504,8 +3524,8 @@ msgstr "Počet riadkov:" msgid "Sort by key" msgstr "Zoradiť podľa kľúča" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3527,10 +3547,10 @@ msgstr "Zoradiť podľa kľúča" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Nastavenia" @@ -3570,29 +3590,29 @@ msgstr "Text (Well Known Text)" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Riadok bol zmazaný." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Zabiť" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Môže byť nepresné. Viď [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "SQL dopyt bol úspešne vykonaný." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3600,73 +3620,73 @@ msgid "" msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Zobrazené riadky %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d celkom, %2$d v dotaze" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "celkom %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Dopyt zabral %01.4f sekúnd." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Výber:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Označiť všetko" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Zobraziť GIS data" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Odkaz nebol nájdený!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Žiadny" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3674,25 +3694,25 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Príliš veľa chybových správ, niektoré neboli zobrazené." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Nahlásiť" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Nabudúce automaticky odosielať hlásenia" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Súbor nebol uploadovaný." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize " "v php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3700,48 +3720,48 @@ msgstr "" "Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá " "bola nastavená v HTML formulári." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Súbor bol nahraný len čiastočne." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Chýba adresár pre dočasné súbory." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Chyba pri zápise súboru na disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Nahrávanie súboru bolo zastavené rozšírením." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Neznáma chyba pri nahrávaní súboru." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Súbor je symbolická linka" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Súbor sa nedá prečítať!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Chyba pri presune nahrávaného súboru, pozri[doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Chyba pri presúvaní nahraného súboru." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Nahraný súbor sa nedá prečítať." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3750,28 +3770,28 @@ msgstr "" "Pokúsili ste sa načítať súbor s nepodporovanou kompresiou (%s). Buď nie je " "zahrnutá podpora tejto kompresie alebo bola deaktivovaná v konfigurácii." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Aktuálne bežiaca Git revízia %1$s z vetvy %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Chýbajú informácie o Git-e!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Otvoriť nové okno phpMyAdmina" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Náhľad k tlači" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Kliknutím v pruhu prejdete na začiatok stránky" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Pokiaľ chcete pokračovať, JavaScript musí byť povolený!" @@ -3780,20 +3800,20 @@ msgid "No index defined!" msgstr "Nebol definovaný žiadny index!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indexy" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3803,59 +3823,59 @@ msgstr "Indexy" msgid "Action" msgstr "Akcia" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Kľúčový názov" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Zabalené" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Mohutnosť" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komentár" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primárny kľúč bol zrušený." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Index pre %s bol odstránený." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Odstrániť" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3864,19 +3884,19 @@ msgstr "" "Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " "odstránený." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Číslo stránky:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Jazyk" @@ -3900,11 +3920,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3923,14 +3943,15 @@ msgid "View" msgstr "Pohľad" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3939,8 +3960,8 @@ msgid "Table" msgstr "Tabuľka" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3948,45 +3969,45 @@ msgstr "Tabuľka" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Hľadať" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Vložiť" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Oprávnenia" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operácie" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Sledovanie" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4002,16 +4023,16 @@ msgstr "Spúšťače" msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4019,20 +4040,20 @@ msgstr "Rutiny" msgid "Events" msgstr "Udalosti" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dizajnér" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centrálne stĺpce" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databázy" @@ -4041,39 +4062,39 @@ msgid "User accounts" msgstr "Užívateľské účty" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binárny log" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikácia" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Premenné" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Systémy" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Rozšírenia" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4081,7 +4102,7 @@ msgstr[0] "Ovplyvnený bol %1$d riadok." msgstr[1] "Ovplyvnené boli %1$d riadky." msgstr[2] "Ovplyvnených bolo %1$d riadkov." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4089,7 +4110,7 @@ msgstr[0] "Bol zmazaný %1$d riadok." msgstr[1] "Boli zmazané %1$d riadky." msgstr[2] "Bolo zmazaných %1$d riadkov." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4138,27 +4159,27 @@ msgstr "Obľúbené tabuľky" msgid "Favorites" msgstr "Obľúbené" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Chýbajú informácie pre uloženie vyhľadávacej záložky." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Položka s týmto názvom už existuje." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Chýbajú informácie pre vymazanie hľadania." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Chýbajú informácie pre načítanie vyhľadávania." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Chyba pri načítaní vyhľadávania." @@ -4220,7 +4241,7 @@ msgstr "Zobraziť otvorené tabuľky" msgid "Show slave hosts" msgstr "Zobraziť podriadené hosty" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Zobraziť stav master replikácie" @@ -4276,70 +4297,70 @@ msgstr[0] "%d minúta" msgstr[1] "%d minúty" msgstr[2] "%d minút" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je dostupný na tomto MySQL serveri." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s bol zakázaný na tomto MySQL serveri." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložný systém %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Neznámy status tabuľky:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Zdrojová databáza `%s` nebola nájdená!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Cieľová databáza `%s` nebola nájdená!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Chybná databáza:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Chybný názov tabuľky:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabuľka %1$s bola premenovaná na %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Nepodarilo sa uložiť nastavenia tabuľky!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4348,7 +4369,7 @@ msgstr "" "Nepodarilo sa vyčistiť nastavenia tabuľky (pozri $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4358,19 +4379,19 @@ msgstr "" "Nepodarilo sa uložiť nastavenie \"%s\". Po obnovení stránky sa zmeny " "stratia. Skontrolujte, či sa zmenila štruktúra tabuľky." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Názov primárneho kľúča musí byť \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Nie je možné premenovať index na PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Časti indexu neboli definované!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4687,7 +4708,7 @@ msgid "Date and time" msgstr "Dátum a čas" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Reťazec" @@ -4702,126 +4723,126 @@ msgstr "Priestorový objekt" msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statická analýza:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Počas analýzy bolo nájdených %d chýb." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Bez PHP kódu" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Odošli dopyt" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Vytvoriť PHP kód" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Obnoviť" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilovanie" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Upraviť v riadku" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ne" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d.%B %Y, %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dní, %s hodín, %s minút a %s sekúnd" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Chýbajúci parameter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Prejsť na databázu \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Adresár určený pre upload súborov sa nedá otvoriť." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Žiadny súbor pre nahrávanie!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vyprázdniť" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Spustiť" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Používatelia" @@ -4835,7 +4856,7 @@ msgstr "za minútu" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "za hodinu" @@ -4843,12 +4864,12 @@ msgstr "za hodinu" msgid "per day" msgstr "za deň" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Hľadať:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4856,7 +4877,7 @@ msgstr "Hľadať:" msgid "Description" msgstr "Popis" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Použiť túto hodnotu" @@ -4893,22 +4914,22 @@ msgstr "ÁNO" msgid "NO" msgstr "NIE" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Názov" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" @@ -4917,7 +4938,7 @@ msgstr "Dĺžka/Nastaviť*" msgid "Attribute" msgstr "Atribút" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4934,11 +4955,11 @@ msgstr "Pridať stĺpec" msgid "Select a column." msgstr "Zvoľte stĺpec." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Pridať nový stĺpec" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4946,7 +4967,7 @@ msgstr "Pridať nový stĺpec" msgid "Attributes" msgstr "Atribúty" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4955,26 +4976,26 @@ msgstr "" "V nastavení PHP je aktívna funkcia mbstring.func_overload, ktorá nie je " "kompatibilná s phpMyAdmin-om a môže spôsobiť stratu dát!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Chybný index servera: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4982,20 +5003,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Chyba: Nesprávny token" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Pokus o prepísanie GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "možný pokus o exploit" @@ -5563,7 +5584,7 @@ msgid "Compress on the fly" msgstr "Komprimovať za behu" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfiguračný súbor" @@ -5668,12 +5689,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximálny čas behu" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Použi %s príkaz" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Uložiť ako súbor" @@ -5683,7 +5704,7 @@ msgstr "Znaková sada súboru" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formát" @@ -5808,7 +5829,7 @@ msgid "Save on server" msgstr "Uložiť na server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Prepísať existujúce súbory" @@ -5821,7 +5842,7 @@ msgid "Remember file name template" msgstr "Zapamätať si vzor pre názov súboru" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" @@ -5830,7 +5851,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" @@ -5860,7 +5881,7 @@ msgstr "Exportovať súvisiace metadata z úložiska phpMyAdmin konfigurácie" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Pridať %s" @@ -6028,7 +6049,7 @@ msgid "Customize the navigation tree." msgstr "Prispôsobiť navigačný strom." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servery" @@ -6926,7 +6947,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Výber použitej prihlasovacej metódy." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Typ overovania" @@ -7677,7 +7698,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Povoliť záložku Pre vývojára v nastaveniach" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Skontrolovať najnovšiu verziu" @@ -7685,10 +7706,10 @@ msgstr "Skontrolovať najnovšiu verziu" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Kontrola verzie" @@ -7832,24 +7853,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Zoznam obľúbených je plný!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabuľka %s bola vyprázdená." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Pohľad %s bol odstránený." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabuľka %s bola odstránená." @@ -7863,12 +7884,12 @@ msgid "Position" msgstr "Pozícia" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Typ udalosti" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID servra" @@ -7877,7 +7898,7 @@ msgid "Original position" msgstr "Pôvodná pozícia" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informácia" @@ -7891,16 +7912,16 @@ msgstr "Zobraziť skrátene dopyty" msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Žiadne databázy" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -7908,26 +7929,26 @@ msgstr[0] "%1$d databáza bola úspešne zrušená." msgstr[1] "%1$d databázy boli úspešne zrušené." msgstr[2] "%1$d databáz bolo úspešne zrušených." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Riadkov" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Celkom" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Naviac" @@ -7954,33 +7975,33 @@ msgstr "" msgid "Enable statistics" msgstr "Povoliť štatistiky" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Nedostatočné oprávnenia na zobrazenie premenných a nastavení servera. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Nastavenie premennej zlyhalo" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Žiadne dáta" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabuľka %1$s bola úspešné upravená." @@ -8024,7 +8045,7 @@ msgstr "Stĺpce boli úspešne presunuté." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Chyba dopytu" @@ -8041,12 +8062,12 @@ msgstr "Zmeniť" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8067,13 +8088,13 @@ msgstr "Celý text" msgid "Distinct values" msgstr "Odlišné hodnoty" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žiadna zmena" @@ -8095,114 +8116,118 @@ msgstr "" "inštaláciu!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Žiadne heslo" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Heslo:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Potvrdiť:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hashovanie hesla:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportujem databázy z aktuálneho servera" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportujem tabuľky z databázy \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportujem riadky z tabuľky \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Exportné šablóny:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nová šablóna:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Názov šablóny" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Vytvoriť" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Existujúce šablóny:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Šablóna:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Aktualizovať" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Zvoľte šablónu" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Metóda exportu:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Rýchla - zobraziť len minimum možností" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Vlastná - zobrazí všetky voľby nastavení" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Databázy:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabuľky:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formát:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Formát - špecifické voľby:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8210,52 +8235,52 @@ msgstr "" "Posuňte sa nižšie pre nastavenie vybraného formátu a ignorujte nastavenia " "ostatných." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Prevod znakovej sady:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Riadky:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Vypísať niektoré riadky" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Začať od riadku:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Vypísať všetky riadky" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Výstup:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Uložiť na server do adresára %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Šablóna pre názov súboru:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "Meno servera bude zmenené na @SERVER@" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", meno databázy bude zmenené na @DATABASE@" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", meno tabuľky bude zmenené na @TABLE@" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8267,99 +8292,99 @@ msgstr "" "nahradenia: %3$s. Ostatný text bude zachovaný. Viď %4$sFAQ%5$s pre viac " "detailov." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "použiť aj pre budúce exporty" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Znaková sada súboru:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Kompresia:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zazipované" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip-ované" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Zobraziť výstup ako text" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exportovať databázy ako samostatné súbory" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exportovať tabuľky ako samostatné súbory" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Uložiť výstup do suboru" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Preskočiť tabuľky väčšie ako" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Zvoľte databázu" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Zvoľte tabuľku" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nové meno databázy" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nové meno tabuľky" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Starý názov stĺpca" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nový názov stĺpca" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nepodarilo sa načítať exportné pluginy, skontrolujte prosím vašu inštaláciu!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s z %2$s vetvy" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "žiadna vetva" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git revízia:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "uložil %2$s dňa %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "autorizoval %2$s dňa %1$s" @@ -8791,13 +8816,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatok miesta pre uloženie súboru %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8805,74 +8830,74 @@ msgstr "" "Súbor %s už existuje na servery, zmente názov súboru alebo zvolte prepísanie " "súboru." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávenia na uloženie do súboru %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis bol uložený do súboru %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Obsah štruktúry sa zobrazí kliknutím na jej názov." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Zmeniť jej ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Prejsť do databázy: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Upraviť nastavenia pre %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Prejsť na tabuľku: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Štruktúra %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Prejsť na pohľad: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8883,78 +8908,79 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Skryť" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcia" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Kvôli jeho dĺžke,
sa toto pole nemusí dať upraviť." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binárny - neupravujte" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Alebo" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "upload adresár web serveru:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Upraviť/Vložiť" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "a potom" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Vložiť ako nový riadok a ignorovať chyby" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Zobraziť insert dopyt" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Späť" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8964,8 +8990,8 @@ msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8976,31 +9002,31 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Vložený riadok id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Úspech!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Iba štruktúru" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Štruktúru a dáta" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Iba dáta" @@ -9009,14 +9035,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Pridať hodnotu AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Pridať obmedzenia" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Upraviť oprávnenia" @@ -9061,8 +9087,8 @@ msgstr "Procedúry:" msgid "Views:" msgstr "Náhľady:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Ukázať" @@ -9106,17 +9132,17 @@ msgstr[0] "nájdený %s výsledok" msgstr[1] "nájdené %s výsledky" msgstr[2] "nájdených %s výsledkov" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Vymazať filter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Zbaliť všetko" @@ -9131,7 +9157,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Nemôžem načítať triedu \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Rozbaliť/Zbaliť" @@ -9150,7 +9176,7 @@ msgstr "Nový" msgid "Database operations" msgstr "Databázové operácie" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Zobraziť skryté položky" @@ -9249,11 +9275,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Zvoľte stĺpec…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Stĺpec neexistuje" @@ -9487,8 +9513,8 @@ msgid "Rename database to" msgstr "Premenovať databázu na" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9534,177 +9560,177 @@ msgstr "(po jednom)" msgid "Move table to (database.table)" msgstr "Presunúť tabuľku do (databáza.tabuľka)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Premenovať tabuľku na" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentár k tabuľke" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Parametre tabuľky" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Úložný Systém" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Skopírovať tabuľku do (databáza.tabuľka)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Prepnúť na skopírovanú tabuľku" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Údržba tabuľky" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Vytvoriť kontrolný súčet tabuľky" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentovať tabuľku" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabuľka %s bola vyprázdnená." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Vyprázdniť tabuľku (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Opraviť tabuľku" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Odstrániť dáta alebo tabuľku" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Vyprázdniť tabuľku (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Odstrániť tabuľku (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analyzovať" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Skontrolovať" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimalizovať" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Opraviť" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Zlúčiť" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Nedá sa presunúť tabuľka sama do seba!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Nedá sa skopírovať tabuľka sama do seba!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabuľka %s bola presunutá do %s. Oprávnenia boli upravené." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabuľka %s bola skopírovaná do %s. Oprávnenia boli upravené." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabuľka %s bola presunutá do %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabuľka %s bola skorírovaná do %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tabuľka je prázdna!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" @@ -9732,18 +9758,18 @@ msgstr "Zobraziť farbu" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Nepodarilo sa pripojiť: chybné nastavenia." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Vitajte v %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9752,7 +9778,7 @@ msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9763,7 +9789,7 @@ msgstr "" "Skontrolujte prosím meno serveru, používateľské meno a heslo v súbore config." "inc.php a s tým, ktoré ste dostali o administrátora MySQL servera." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9788,15 +9814,15 @@ msgstr "Používateľ:" msgid "Server Choice:" msgstr "Voľba servera:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Vložená captcha je nesprávna, skúste znova!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Nemáte oprávnenie na prihlásenie k tomuto MySQL serveru!" @@ -9857,7 +9883,7 @@ msgstr "Možnosti uloženia dát" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" @@ -9866,7 +9892,7 @@ msgstr "Sťahujem dáta pre tabuľku" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Udalosť" @@ -9874,8 +9900,8 @@ msgstr "Udalosť" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definícia" @@ -9961,7 +9987,7 @@ msgstr "Pridať názvy polí na prvý riadok:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Hostiteľ:" @@ -10468,7 +10494,7 @@ msgstr "Obsah" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -10818,18 +10844,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "bez popisu" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -10838,40 +10864,40 @@ msgstr "" "%sVytvoriť%s databázu s názvom 'phpmyadmin' a nastaviť tam miesto uloženia " "phpMyAdmin konfigurácie." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sCreate%s miesto uloženia phpMyAdmin konfigurácie v aktuálnej databáze." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sVytvoriť%s chýbajúce tabuľky pre uloženie phpMyAdmin konfigurácie." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Master replikácia" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Pridať replikačného užívateľa pre slave" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Master konfigurácia" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10880,95 +10906,95 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Prosím, vyberte databázy:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slave replikácia" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Master spojenie:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Tento server je nakonfigurovaný ako slave v replikačnom procese. Prajete si:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Ovládať slave:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Spustiť len SQL vlákno" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Spustiť len IO vlákno" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10977,24 +11003,24 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11003,101 +11029,101 @@ msgstr "" "Tento server nie je nakonfigurovaný ako master v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slave konfigurácia" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Meno používateľa:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Meno používateľa" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Heslo" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Stav mastra" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Stav podriadených hostov" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Premenná" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Hostiteľ" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokálny" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Akýkoľvek používateľ" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Použiť textové pole:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11105,75 +11131,75 @@ msgstr "" "Ak sa použije Host tabuľka, toto políčko je ignorovné a namiesto toho sa " "použijú hodnoty z tabuľky Host." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Potvrdiť" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Vytvoriť heslo:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replikácia bola úspešne spustená." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Chyba pri spúšťaní replikácie." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replikácia bola úspešne zastavená." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Chyba pri zastavovaní replikácie." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replikácie bola úspešne obnovená." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Chyba pri obnovovaní replikácie." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Úspech." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Chyba." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Neznáma chyba" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Master server zmenený úspešne na %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11194,7 +11220,7 @@ msgstr "Udalosť %1$s bola zmenená." msgid "Event %1$s has been created." msgstr "Udalosť %1$s bola vytvorená." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Pri spracovaní požiadavky došlo k jednej alebo viacerým chybám:" @@ -11203,75 +11229,75 @@ msgstr "Pri spracovaní požiadavky došlo k jednej alebo viacerým chybám:" msgid "Edit event" msgstr "Upraviť udalosť" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Podrobnosti" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Meno udalosti" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Zmeniť na %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Spustiť o" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Spustiť každých" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Začiatok" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Koniec" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Zachovať pri ukončení" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Musíte zadať názov udalosti!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Chyba pri spracovaní požiadavky:" @@ -11292,7 +11318,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -11308,119 +11334,119 @@ msgstr "" "[/strong] Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie " "'mysqli'." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Upraviť rutinu" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Rutina %1$s bola vytvorená." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Bohužiaľ sa nepodarilo obnoviť odstránenú rutinu." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Rutina %1$s bola zmenená. Oprávnenia boli upravené." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutina %1$s bola zmenená." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Meno rutiny" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametre" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Smer" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Pridať parameter" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Odstrániť posledný parameter" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Vrátiť dĺžku/hodnoty" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Návratové možnosti" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Je deterministický" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Typ zabezpečenia" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Musíte zadať názov rutiny!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Výsledky spustenia rutiny %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -11428,13 +11454,13 @@ msgstr[0] "Posledným príkazom v procedúre bol ovplyvnený %d riadok." msgstr[1] "Posledným príkazom v procedúre boli ovplyvnené %d riadky." msgstr[2] "Posledným príkazom v procedúre bolo ovplyvnených %d riadkov." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Spustiť rutinu" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11456,32 +11482,32 @@ msgstr "Trigger %1$s bol vytvorený." msgid "Edit trigger" msgstr "Upraviť trigger" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Meno spúšťača" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Čas" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Musíte zadať názov spúšťača!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Musíte zadať platné časovanie spúšťača!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Musíte zadať platnú udalosť pre spúšťač!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Musíte zadať platný názov tabuľky!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11606,92 +11632,92 @@ msgstr "Znakové sady a Zotriedenia" msgid "Databases statistics" msgstr "Štatistiky databázy" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Žiadne práva." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Všetky oprávnenia okrem GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Povolí čítanie dát." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Povolí menenie dát." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Povolí mazanie dát." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11701,125 +11727,98 @@ msgstr "" "Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " "premenných alebo zabíjanie procesov iných používateľov." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Umožňuje plánovať udalosti pomocou plánovača." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Povolí vytváranie a mazanie spúšťačov." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Žiadny" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Nevyžaduje SSL šifrované spojenia." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Vyžaduje SSL šifrované spojenia." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Vyžaduje platný X509 certifikát." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Obmedzenie zdrojov" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -11827,254 +11826,249 @@ msgstr "" "Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže " "používateľ odoslať za hodinu." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Umožňuje spúšťať uložené procedúry." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administrácia" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globálne práva" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globálny" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Natívne MySQL overovanie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 overovanie hesla" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Natívne MySQL overovanie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Prihlasovacie informácie" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Názov počítača:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Názov počítača" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Rozšírenie pre prihlasovanie" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Metóda hešovania hesla" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Boli zrušené oprávnenia pre %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Pridať používateľský účet" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Databáza pre účet používateľa" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Prideliť všetky oprávnenia na databázu \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Používatelia majúci prístup k \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Užívateľ bol pridaný." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Prideliť" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Akýkoľvek" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globálny" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "závislé na databáze" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "nahradzujúci znak" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "závislé na tabuľke" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Upraviť oprávnenia" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Zrušiť" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Upraviť užívateľské skupiny" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… zachovať pôvodného používateľa." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… zmazať pôvodného používateľa z tabuliek používateľov." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12082,109 +12076,96 @@ msgstr "" "… zmazať pôvodného používateľa z tabuliek používateľov a potom znovunačítať " "oprávnenia." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Zmeniť prihlasovacie informácie / Kopírovať účet používateľa" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Vytvoriť nový účet používateľa s rovnakými právami a …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Odstrániť vybrané účty používateľov" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Oprávnenia pre %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Používateľ" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nový" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Upraviť oprávnenia:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Užívateľský účet" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Prehľad účtov používateľov" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12197,7 +12178,7 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " "%sznovunačítanie práv%s predtým ako budete pokračovať." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12210,11 +12191,11 @@ msgstr "" "tieto tabuľky ručne upravené. V tom prípade je potrebné znovu načítanie " "práv. Nemáte oprávnenie na RELOAD ." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Používateľ bol pridaný." @@ -12490,12 +12471,12 @@ msgstr "Príkaz" msgid "Progress" msgstr "Progres" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtre" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Zobraziť iba aktívne" @@ -12516,12 +12497,12 @@ msgstr "za minútu:" msgid "per second:" msgstr "za sekundu:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12545,17 +12526,17 @@ msgstr "Zobraziť neformátované hodnoty" msgid "Related links:" msgstr "Súvisiace odkazy:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12565,16 +12546,16 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12586,11 +12567,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12598,7 +12579,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12606,7 +12587,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12614,23 +12595,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12640,7 +12621,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12650,7 +12631,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12658,7 +12639,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12668,7 +12649,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12677,7 +12658,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY … " "DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12690,7 +12671,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12702,35 +12683,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu riadku v tabuľke." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12740,7 +12721,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12752,11 +12733,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12764,7 +12745,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -12772,11 +12753,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -12784,7 +12765,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12798,88 +12779,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -12888,51 +12869,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet riadkov odstránených z InnoDB tabuliek." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet riadkov vložených do InnoDB tabuliek." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných riadkov z InnoDB tabuliek." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených riadkov v InnoDB tabuľkách." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -12941,7 +12922,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -12949,7 +12930,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -12958,15 +12939,15 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Percento využitia vyrovnávacej pamäti kľúčov (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -12977,26 +12958,26 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13007,17 +12988,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13025,38 +13006,38 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13068,7 +13049,7 @@ msgstr "" "veľkosti vyrovnávacej pamäte príkazov. Vyrovnávacia pamäť príkazov používa " "stratégiu (LRU), odstránenie najdlhšie nepoužitých príkazov ako prvých." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13076,19 +13057,19 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13096,12 +13077,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13110,7 +13091,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13118,15 +13099,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13134,13 +13115,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13148,14 +13129,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13165,23 +13146,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13193,7 +13174,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13203,11 +13184,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13218,11 +13199,11 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Úspešnosť vyrovnávacej pamäti vlákien (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Počet nespiacich vlákien." @@ -13251,37 +13232,37 @@ msgstr "Záložky pre prácu s databázou" msgid "Table level tabs" msgstr "Záložky pre prácu s tabuľkami" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Zobrazenie používateľov" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Pridať používateľskú skupinu" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Priradenia menu pre skupinu užívateľov" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Názov skupiny:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Záložky pre prácu so serverom" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Záložky pre prácu s databázou" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Záložky pre prácu s tabuľkami" @@ -13383,7 +13364,7 @@ msgstr "Spustiť SQL dopyt/dopyty na databázu %s" msgid "Run SQL query/queries on table %s" msgstr "Spustiť SQL dopyt/dopyty na tabuľke %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Vyčistiť" @@ -13470,172 +13451,172 @@ msgstr "" msgid "Version" msgstr "Verzia" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Vytvorené" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Aktualizované" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Zmazať verziu" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Informácie o monitorovanie" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Snímok štruktúry" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "zapnuté" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "nie je zapnuté" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Odstrániť riadok o sledovaní tabuľky z výpisu" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Žiadne dáta" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Vykonanie SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportovať ako %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Dátum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Užívateľ" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Žiadny" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledovanie %1$s bolo aktivované vo verzii %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledovanie %1$s bolo deaktivované vo verzii %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Verzia %1$s z %2$s bola zmazaná." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nesledované tabuľky" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sledovať tabuľku" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Sledované tabuľky" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Posledná verzia" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Vymazať sledovanie" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Verzia" @@ -13643,7 +13624,7 @@ msgstr "Verzia" msgid "Manage your settings" msgstr "Spravovať svoje nastavenia" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Nastavenia boli uložené." @@ -13669,7 +13650,7 @@ msgstr "Chyba v ZIP archíve:" msgid "No files found inside ZIP archive!" msgstr "V ZIP archíve neboli nájdené žiadne súbory!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13677,57 +13658,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Nepodarilo sa uložiť nastavenia, odoslaný formulár obsahuje chyby!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nepodarilo sa načítať konfiguráciu" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Prajete si načítať zostávajúce nastavenia?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importovať zo súboru" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Načítať z pamäte prehliadača" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Nastavenia budú načítané z lokálneho úložišťa vášho prehliadača." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Nemáte uložené žiadne nastavenia!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Zlúčiť so súčasným nastavením" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13736,25 +13717,25 @@ msgstr "" "Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " "%sNastavovacieho skriptu%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Uložiť ako súbor" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Uložiť do úložiska prehliadača" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Súčasné nastavenia budú prepísané!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Môžete vymazať všetky vaše nastavenia a vrátiť sa k východziím hodnotám." @@ -13763,46 +13744,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Export databáz" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Žiadne oprávnenia" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bol úspešne zabité." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "Neporadilo za ukončiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Stiahnuť" @@ -13810,99 +13791,98 @@ msgstr "Stiahnuť" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Nezabezpečené pripojenie" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfigurácia bola uložená." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfigurácia bola uložená." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Prehľad" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Zobraz skryté správy (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nový server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Predvolený jazyk" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Predvolený server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Koniec riadku" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Zobraziť" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Záťaž" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin domovská stránka" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13938,28 +13918,28 @@ msgstr "" msgid "Show form" msgstr "Zobraziť formulár" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13972,12 +13952,12 @@ msgstr "Nesprávne dáta" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databáza neexistuje." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabuľka %s už existuje!" @@ -13990,29 +13970,29 @@ msgstr "Zobraziť dump (schému) tabuľky" msgid "Invalid table name" msgstr "Chybné meno tabuľky" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Nie je vybraný žiadny riadok." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Sledovanie %s je aktívne." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Sledované verzie boli úspešne odstránené." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Nie je vybraná verzia." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14216,7 +14196,7 @@ msgid "List of available transformations and their options" msgstr "Zoznam dostupných transformácií a ich možnosti" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformácia pri zobrazení" @@ -14238,7 +14218,7 @@ msgstr "" "lomítko (napr. '\\\\xyz' alebo 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Vstupná transformácia" @@ -14673,17 +14653,17 @@ msgid "Size" msgstr "Veľkosť" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Vytvorenie" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Posledná zmena" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Posledná kontrola" @@ -14718,6 +14698,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Vymazať sledovanie" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Pridať oprávnenia pre nasledujúcu databázu(y):" @@ -14738,10 +14724,45 @@ msgstr "Pridať oprávnenia pre nasledujúcu tabuľku:" msgid "Add privileges on the following table:" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nový" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Žiadny" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Odstrániť vybrané účty používateľov" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Obmedzenie zdrojov" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" @@ -14772,7 +14793,7 @@ msgstr "Doplnok" msgid "Author" msgstr "Autor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "vypnuté" @@ -14932,7 +14953,7 @@ msgstr "Syntaktický analyzátor:" msgid "Comment:" msgstr "Komentár:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Usporiadajte pretiahnutím" @@ -14964,26 +14985,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Pridať obmedzenie" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Interné vzťahy" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Interné vzťahy" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Zvoľte, ktoré polia zobraziť:" @@ -15036,11 +15057,11 @@ msgstr "Pôvodný reťazec" msgid "Replaced string" msgstr "Nahradený reťazec" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Nahradiť" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Rozšírené parametre vyhľadávania" @@ -15111,7 +15132,7 @@ msgid "at beginning of table" msgstr "na začiatku tabuľky" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Oddiely" @@ -15139,13 +15160,13 @@ msgstr "Dĺžka riadku" msgid "Index length" msgstr "Dĺžka kľúča" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Pozícia" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgctxt "Inline edit query" @@ -15153,15 +15174,15 @@ msgstr "Pozícia" msgid "Edit partitioning" msgstr "Upraviť v riadku" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Upraviť zobrazenie" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Zabrané miesto" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektívny" @@ -15186,31 +15207,31 @@ msgstr "Zlepšiť štruktúry tabuľky" msgid "Track view" msgstr "Sledovať pohľad" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Štatistika riadku" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statický" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamický" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Dĺžka riadku" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Veľkosť riadku" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15223,46 +15244,46 @@ msgstr "Stĺpec %s bol odstránený." msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Vzhľad" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Získať viac tém!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Dostupné MIME typy" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Dostupné transformácie pre zobrazenie" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Dostupné vstupné transformácie" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Popis" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Vezmeme vás na ďalší krok…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil bol aktualizovaný." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15339,7 +15360,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15362,17 +15383,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Bol očakávaný alias." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15425,25 +15446,25 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Udalosť %1$s bola vytvorená." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Očakávalo sa meno premennej." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Neočakávaný začiatok výrazu." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15462,10 +15483,16 @@ msgstr "Neočakávané znaky na riadku %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Neočakávaný začiatok výrazu." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15510,7 +15537,7 @@ msgstr "" msgid "strict error" msgstr "Zbierať chyby" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16612,6 +16639,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavené na 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Natívne MySQL overovanie" + #~ msgid "Try to connect without password." #~ msgstr "Pokúsiť sa pripojiť bez hesla." diff --git a/po/sl.po b/po/sl.po index 975ec4af5a..d505259555 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-10 15:08+0000\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian " -"\n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.9\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -25,31 +25,31 @@ msgstr "" "Datoteka %s ni na voljo na tem sistemu; prosimo, da za več informacij " "obiščete %s." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Osrednji seznam stolpcev je za trenutno zbirko podatkov prazen." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Kliknite za razvrščanje." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Prikazujem vrstice %1$s–%2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Pripomba zbirke podatkov" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Pripombe tabele:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -61,13 +61,13 @@ msgstr "Pripombe tabele:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -78,9 +78,9 @@ msgstr "Pripombe tabele:" msgid "Column" msgstr "Stolpec" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -91,12 +91,12 @@ msgstr "Stolpec" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,9 +108,9 @@ msgstr "Stolpec" msgid "Type" msgstr "Vrsta" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -121,15 +121,15 @@ msgstr "Vrsta" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -140,14 +140,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Privzeto" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -157,7 +157,7 @@ msgstr "Privzeto" msgid "Links to" msgstr "Povezave z" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -171,19 +171,19 @@ msgstr "Povezave z" msgid "Comments" msgstr "Pripombe" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -191,13 +191,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -205,17 +205,17 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -224,13 +224,13 @@ msgstr "Ne" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -242,15 +242,15 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja zbirke podatkov" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "V zbirki podatkov ni mogoče najti tabel." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -259,8 +259,8 @@ msgid "Tables" msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -268,10 +268,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -284,27 +284,27 @@ msgstr "Struktura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Podatki" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Izberi vse" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Ime zbirke podatkov je prazno!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Zbirko podatkov %1$s sem preimenoval v %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Zbirko podatkov %1$s sem skopiral v %2$s." @@ -315,38 +315,38 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "Hrambo konfiguracije phpMyAdmin smo onemogočili. %sUgotovite, zakaj%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Za prikaz morate izbrati morate vsaj en stolpec!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Preklopi na %svidni graditelj%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Dostop zavrnjen!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Podatke sledenja smo uspešno izbrisali." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "Različica %1$s je ustvarjena za izbrane tabele, sledenje zanje je aktivirano." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Ni izbranih tabel." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Dnevnik zbirke podatkov" @@ -387,131 +387,131 @@ msgstr "Slaba vrsta!" msgid "Bad parameters!" msgstr "Slabi parametri!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrednost za stolpec \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Uporabi OpenStreetMaps kot osnovni sloj" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometrija %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Točka:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Točka %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Dodaj točko" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Daljica %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Zunanji obroč:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Notranji obroč %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Dodaj daljico" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Dodaj notranji obroč" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Večkotnik %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Dodaj večkotnik" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Dodaj geometrijo" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Izvedi" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Izhod" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,19 +519,19 @@ msgstr "" "Izberite \"GeomFromText\" v stolpcu \"Funkcija\" in prilepite niz v spodnje " "polje \"Vrednost\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Uspelo" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Spodletelo" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Nepopolni parametri" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -540,15 +540,15 @@ msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v " "%sdokumentaciji%s ogledate načine, kako obiti omejitev." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:489 +#: import.php:486 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 " @@ -558,17 +558,17 @@ msgstr "" "je velikost datoteke presegala največjo velikost, dovoljeno v konfiguraciji " "PHP. Glej [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Ustvaril sem zaznamek %s." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -577,7 +577,7 @@ msgstr[1] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbi." msgstr[2] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbe." msgstr[3] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedb." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -586,7 +586,7 @@ msgstr "" "Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, " "%sponovno pošljite isto datoteko%s in uvoz se bo nadaljeval." -#: import.php:632 +#: import.php:629 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." @@ -595,7 +595,7 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." @@ -603,17 +603,17 @@ msgstr "Poizvedbe \"DROP DATABASE\" so izključene." msgid "Could not load the progress of the import." msgstr "Ne morem naložiti napredka uvoza." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Nazaj" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Preizkusni strežnik phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -624,107 +624,107 @@ msgstr "" "prosimo, da ne spremenite uporabnikov root, debian-sys-maint in pma. Več " "informacij lahko najdete na %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Splošne nastavitve" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Spremeni geslo" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Razvrščanje znakov povezave strežnika" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Nastavitve prikaza" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Več nastavitev" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Strežnik zbirke podatkov" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Strežnik:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Vrsta strežnika:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Različica strežnika:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Različica protokola:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Uporabnik:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Nabor znakov strežnika:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Spletni strežnik" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Različica odjemalca zbirk podatkov:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Razširitev PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Različica PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Podatki o različici:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacija" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Uradna domača stran phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Prispevaj" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Prosi za podporo" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Seznam sprememb" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Dovoljenje" -#: index.php:443 +#: index.php:444 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 " @@ -734,7 +734,7 @@ msgstr "" "nabor znakov. Brez razširitve mbstring phpMyAdmin ni sposoben pravilno " "razcepiti nizov, kar lahko vodi v nepričakovane rezultate." -#: index.php:458 +#: index.php:459 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." @@ -743,7 +743,7 @@ msgstr "" "smo nekatere zmožnosti, kot je poročanje o napakah in preverjanje različice, " "onemogočili." -#: index.php:473 +#: index.php:474 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 " @@ -755,7 +755,7 @@ msgstr "" "veljavnosti piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša " "prijava morda iztekla prej, kot je določeno v phpMyAdminu." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -764,17 +764,17 @@ msgstr "" "določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla prej, kot je " "določeno v phpMyAdminu." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfiguracijski datoteki morate sedaj določiti skrivno geslo " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "Skrivno geslo v konfiguraciji (blowfish_secret) je prekratko." -#: index.php:528 +#: index.php:529 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 " @@ -787,7 +787,7 @@ msgstr "" "strežnika morda ogrožena, saj bodo nepooblaščene osebe lahko prenesle vašo " "konfiguracijo." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -796,14 +796,14 @@ msgstr "" "Hramba konfiguracije phpMyAdmin ni konfigurirana v celoti, zato smo nekatere " "razširjene zmožnosti onemogočili. %sUgotovite, zakaj%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ali pa pojdite na zavihek »Dejanja« katere koli zbirke podatkov, da to " "nastavite tam." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -812,7 +812,7 @@ msgstr "" "Vaša PHP-knjižnica MySQL različice %s se razlikuje od vašega strežnika MySQL " "različice %s. To lahko povzroči nepredvidljivo vedenje." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -984,7 +984,7 @@ msgid "Save & close" msgstr "Shrani in zapri" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Ponastavi" @@ -1016,7 +1016,7 @@ msgstr "Dodaj indeks" msgid "Edit index" msgstr "Uredi indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Dodaj %s stolpec(-cev) k indeksu" @@ -1041,10 +1041,10 @@ msgstr "Prosimo, izberite stolpce za indeks." msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Predogled SQL" @@ -1056,7 +1056,7 @@ msgstr "Simuliraj poizvedbo" msgid "Matched rows:" msgstr "Ujemajoče vrstice:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "Poizvedba SQL:" @@ -1073,13 +1073,13 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" @@ -1087,8 +1087,8 @@ msgstr "Gesli se ne ujemata!" msgid "Removing Selected Users" msgstr "Odstranjevanje izbranih uporabnikov" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Zapri" @@ -1110,19 +1110,19 @@ msgstr "Predlogo smo izbrisali." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Drugo" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1228,40 +1228,40 @@ msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1279,7 +1279,7 @@ msgstr "Vprašanja" msgid "Traffic" msgstr "Promet" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavitve" @@ -1293,16 +1293,16 @@ msgid "Please add at least one variable to the series!" msgstr "Prosimo, da v serijo dodate vsaj eno spremenljivko!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Brez" @@ -1497,20 +1497,20 @@ msgstr "Analiziranje…" msgid "Explain output" msgstr "Razloži izhod" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Stanje" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Čas" @@ -1599,10 +1599,10 @@ msgstr "" "privzeto konfiguracijo…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Uvozi" @@ -1675,7 +1675,7 @@ msgstr "Nismo našli nobenih parametrov!" msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Nastavitve, povezane s stranjo" @@ -1715,8 +1715,8 @@ msgid "Error text: %s" msgstr "Besedilo napake: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Ni izbranih zbirk podatkov." @@ -1754,7 +1754,7 @@ msgstr "Kopiranje zbirke podatkov" msgid "Changing charset" msgstr "Spreminjanje nabora znakov" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Omogoči preverjanja tujih ključev" @@ -1782,72 +1782,77 @@ msgstr "Brskanje" msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Izbrišem zadetke v tabeli %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Izvozi" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" "Izvoziti ne moremo nobene rutine. Morda manjkajo zahtevani privilegiji." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Urejevalnik ENUM/SET" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Vrednosti stolpca %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Vrednosti novega stolpca" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Vnesite vsako vrednost v svoje polje." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Opomba: Če datoteka vsebuje več tabel, bodo združene v eno." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Skrij polje poizvedbe" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Prikaži polje poizvedbe" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1855,53 +1860,53 @@ msgstr "Prikaži polje poizvedbe" msgid "Edit" msgstr "Uredi" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Izbriši" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Ni nobene samodejno shranjene poizvedbe" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Spremenljivka %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Izberite" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Izbirnik stolpcev" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Iskanje po seznamu" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1910,15 +1915,15 @@ msgstr "" "V osrednjem seznamu ni stolpcev. Prepričajte se, da ima seznam osrednjih " "stolpcev za zbirko podatkov %s stolpce, ki niso prisotni v trenutni tabeli." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Poglej več" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Ste prepričani?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1926,51 +1931,51 @@ msgstr "" "Dejanje bo morda spremenilo nekatere opredelitve stolpcev.
Ste " "prepričani, da želite nadaljevati?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Nadaljuj" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Dodal sem primarni ključ." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Prestavili vas bomo na naslednji korak …" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Prvi korak normalizacije je končan za tabelo '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Konec koraka" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Druga stopnja normalizacije (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Končano" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Potrdi delne odvisnosti" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Izbrane so naslednje delne odvisnosti:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1978,19 +1983,19 @@ msgstr "" "Opomba: a, b -> d,f pomeni, da lahko z združitvijo vrednosti stolpcev a in b " "določimo vrednost stolpca d in stolpca f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Ni izbranih delnih odvisnosti!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Pokaži mi možne delne odvisnosti glede na podatke v tabeli" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Skrij seznam delnih odvisnosti" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1998,167 +2003,167 @@ msgstr "" "Prosimo, počakajte. To lahko traja nekaj sekund, odvisno od velikosti " "podatkov in števila stolpcev v tabeli." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Korak" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Izvedli bomo naslednja dejanja:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "ZAVRZI stolpce %s v tabeli %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Ustvari naslednjo tabelo" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tretja stopnja normalizacije (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Potrdi prehodne odvisnosti" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Izbrane so naslednje odvisnosti:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Ni izbranih odvisnosti!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Shrani" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Skrij iskalne pogoje" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Iskanje v območju" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Maksimum stolpcev:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Minimum stolpcev:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minimalna vrednost:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Maksimalna vrednost:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Skrij pogoje za iskanje in zamenjavo" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Prikaži pogoje za iskanje in zamenjavo" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Vsaka točka predstavlja podatkovno vrstico." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Prehod z miško čez točko bo pokazalo njeno oznako." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Za povečanje izberite z miško del izrisa." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Kliknite gumb za ponastavitev povečave za vrnitev na prvotno stanje." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliknite podatkovno točko za ogled in morebitno urejanje podatkovne vrstice." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Izris lahko povečate tako, da ga vlečete ob spodnjem desnem kotu." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Izberite dva stolpca" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Izberite dva različna stolpca" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Vsebina kazalca podatkov" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Točka" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Daljica" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Večkotnik" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Notranji obroč" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Zunanji obroč" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Ali želite kopirati šifrirni ključ?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Šifrirni ključ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2166,7 +2171,7 @@ msgstr "" "MySQL sprejme dodatne vrednosti, ki jih ni mogoče izbrati z drsnikom; če " "želite, lahko te vrednosti vnesete neposredno" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" @@ -2174,7 +2179,7 @@ msgstr "" "MySQL sprejme dodatne vrednosti, ki jih ni mogoče izbrati z izbirnikom " "datuma; če želite, lahko te vrednosti vnesete neposredno" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2182,24 +2187,24 @@ msgstr "" "Označuje, da ste na strani naredili spremembe; pred opustitvijo sprememb vas " "bomo pozvali" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2207,76 +2212,76 @@ msgstr "" "Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " "Želite nadaljevati?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Ime strani" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Shrani stran" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Shrani stran kot" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Odpri stran" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Izbriši stran" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Neimenovano" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Prosimo, izberite stran za nadaljevanje" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Prosimo, vnesite veljavno ime strani" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Želite shraniti spremembe na trenutni strani?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Stran ste uspešno izbrisali" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Izvozi relacijsko shemo" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Dodaj možnost za stolpec \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "Ustvaril sem %d objekt(ov)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Pošlji" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Za prekinitev urejanja pritisnite ubežnico (escape)." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2284,15 +2289,15 @@ msgstr "" "Uredili ste nekatere podatke, vendar jih niste shranili. Ste prepričani, da " "želite zapustiti stran, preden shranite podatke?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Povlecite za preureditev." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Kliknite, da razvrstite rezultate po tem stolpcu." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2302,26 +2307,26 @@ msgstr "" "
- Ctrl+klik ali Alt+klik (Mac: Shift+možnost+klik), da stolpec " "odstranite iz stavka ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Kliknite za označitev/opustitev." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Dvakrat kliknite za kopiranje imena stolpca." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Za preklop vidnosti stolpcev
kliknite spustno puščico." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Pokaži vse" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2330,12 +2335,12 @@ msgstr "" "potrditvenimi polji, povezavami Uredi, Kopiraj in Izbriši, po shranjevanju " "morda ne bodo delovale." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Prosimo, vnesite veljaven šestnajstiški niz. Veljavni znaki so 0–9, A–F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2343,102 +2348,102 @@ msgstr "" "Si res želite ogledati vse vrstice? V primeru velikih tabel lahko to zruši " "brskalnik." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Izvirna dolžina" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "prekliči" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinjeno" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Uspešno" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Stanje uvoza" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Spustite datoteke tukaj" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Najprej izberite zbirko podatkov" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Natisni" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Večino vrednosti lahko urejate
neposredno z dvojnim klikom na njih." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "Večino vrednosti lahko urejate
neposredno s klikom na njih." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Pojdi na povezavo:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopiraj ime stolpca." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Z desnim miškinim gumbom kliknite na ime stolpca, da ga skopirate v " "odložišče." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Več" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Pokaži ploščo" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Skrij ploščo" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Prikaži skrite predmete v navigacijskem drevesu." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Poveži z glavno ploščo" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Ne poveži z glavno ploščo" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Izbrane strani nisem našel v zgodovini; morda je potekla." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2448,42 +2453,42 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "posodobljeno" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Ustvari pogled" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Pošlji poročilo o napaki" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Oddaj poročilo o napaki" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Prišlo je do usodne napake v JavaScriptu. Želite poslati poročilo o napaki?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Spremeni nastavitve poročila" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Pokaži podrobnosti poročila" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2491,7 +2496,7 @@ msgstr "" "Vaš izvoz ni popoln zaradi nizke časovne omejitve izvršitve na stopnji PHP-" "ja!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2500,61 +2505,61 @@ msgstr "" "Opozorilo: obrazec na strani vsebuje več kot %d polj. Od potrditvi bodo " "nekatera polja morda prezrta zaradi PHP-jeve nastavitve max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Na strežniku smo zaznali nekatere napake!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Prosimo, poglejte na dno okna." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Prezri vse" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "V skladu z vašimi nastavitvami jih trenutno pošiljamo; prosimo, bodite " "potrpežljivi." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Ponovno izvedem poizvedbo?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Ali res želite izbrisati zaznamek?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" "Med pridobivanjem informacij za odpravljanje napak SQL je prišlo do napake." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s poizvedb izvedenih %s-krat v %s sekundah." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "podanih %s argumentov" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Prikaži argumente" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Skrij argumente" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Porabljen čas:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2569,349 +2574,369 @@ msgstr "" "čiščenje vaših \"Podatkov pri delu brez povezave\". V Safariju je za težavo " "pogosto krivo \"Brskanje v zasebnem načinu\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Kopiraj tabele v" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Dodaj predpono tabele" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Zamenjaj tabelo s predpono" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tabelo s predpono" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Prej" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Nasl" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Danes" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "januar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "februar" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "marec" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "april" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "maj" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "junij" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "julij" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "avgust" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "september" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "november" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "torek" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "petek" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "ted." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "brez" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Ura" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuta" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekunda" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Polje je obvezno" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Prosimo, popravite to polje" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Prosimo, vnesite veljaven e-pošni naslov" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Prosimo, vnesite veljaven URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Prosimo, vnesite veljaven datum" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Prosimo, vnesite veljaven datum (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Prosimo, vnesite veljavno število" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Prosimo, vnesite veljavno številko kreditne kartice" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Prosimo, vnesite samo številke" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Prosimo, ponovno vnesite isto vrednost" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Prosimo, ne vnesete več kot {0} znakov" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Prosimo, vnesite vsaj {0} znakov" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosimo, vnesite vrednost, dolgo od {0} do {1} znakov" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Prosimo, vnesite vrednost med {0} in {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Prosimo, vnesite vrednost, manjšo ali enako {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosimo, vnesite vrednost, večjo ali enako {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Prosimo, vnesite veljaven datum ali čas" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Prosimo, vnesite veljaven heksadecimalen vnos" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Napaka" @@ -2977,20 +3002,20 @@ msgid "Charset" msgstr "Nabor znakov" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Dvojiško" @@ -3185,7 +3210,7 @@ msgid "Czech-Slovak" msgstr "Češkoslovaško" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "neznano" @@ -3232,7 +3257,7 @@ msgstr "" msgid "Font size" msgstr "Velikost pisave" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3241,19 +3266,19 @@ msgstr[1] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" msgstr[2] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" msgstr[3] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Ni zaznamkov" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Konzola poizvedb SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Ne morem nastaviti povezave konfiguriranega razvrščanja znakov!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3261,23 +3286,23 @@ msgstr "" "Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno " "konfigurirana)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Strežnik se ne odziva." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Podrobnosti …" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Manjkajo parametri povezave!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezava za controluserja, kot je določena v vaši konfiguraciji, je " @@ -3373,57 +3398,57 @@ msgstr "Vstavljeno:" msgid "Del:" msgstr "Izbrisano:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Poizvedba SQL na zbirki podatkov %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Izvedi poizvedbo" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Shranjeno označeno iskanje:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nov zaznamek" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Ustvari zaznamek" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Posodobi zaznamek" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Izbriši zaznamek" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "katerokoli besedo" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "vse besede" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "točno določeno frazo" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "kot običajni izraz (regular expression)" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati iskanja \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3432,7 +3457,7 @@ msgstr[1] "Skupaj: %s zadetka" msgstr[2] "Skupaj: %s zadetki" msgstr[3] "Skupaj: %s zadetkov" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -3441,46 +3466,41 @@ msgstr[1] "%1$s zadetka v %2$s" msgstr[2] "%1$s zadetki v %2$s" msgstr[3] "%1$s zadetkov v %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Prebrskaj" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Izbrišem zadetke v tabeli %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Išči v zbirki podatkov" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Išči besede ali vrednosti (nadomestni znak: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Najdi:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Besede so ločene s presledkom (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Znotraj tabel:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Odznači vse" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "V stolpcu:" @@ -3500,30 +3520,30 @@ msgstr "Filtriraj vrstice" msgid "Search this table" msgstr "Išči po tabeli" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Začetek" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Prejšnja" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Naslednja" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Konec" @@ -3532,7 +3552,7 @@ msgstr "Konec" msgid "All" msgstr "Vse" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Število vrstic:" @@ -3541,8 +3561,8 @@ msgstr "Število vrstic:" msgid "Sort by key" msgstr "Uredi po ključu" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3564,10 +3584,10 @@ msgstr "Uredi po ključu" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Možnosti" @@ -3607,102 +3627,102 @@ msgstr "Dobro poznano besedilo" msgid "Well Known Binary" msgstr "Dobro poznana dvojiška datoteka" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Vrstica je izbrisana." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Prekini proces" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Morda je približno. Glej [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Poizvedbo SQL sem uspešno izvedel." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Prikazujem vrstice %1s–%2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "skupno %1$d, %2$d v poizvedbi" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "skupaj %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Poizvedba je potrebovala %01.4f sekunde." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Z označenim:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Označi vse" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopiraj v odložišče" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Povezave ni mogoče najti!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Nobeno" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Pretvori v kano" @@ -3710,23 +3730,23 @@ msgstr "Pretvori v kano" msgid "Too many error messages, some are not displayed." msgstr "Preveč sporočil o napakah; nekatera zato niso prikazana." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Poročaj" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Naslednjič poročilo pošlji samodejno" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Datoteka ni naložen datoteka." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3734,48 +3754,48 @@ msgstr "" "Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu " "HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Naložena datoteka je bila naložena samo delno." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Manjka začasna mapa." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Pisanje datoteke na disk je spodletelo." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Nalaganje datoteke je ustavila razširitev." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Neznana napaka pri nalaganju datoteke." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Datoteka je simbolna povezava" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Ne morem prebrati datoteke!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Napaka pri premikanju naložene datoteke, glej [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Napaka pri premikanju naložene datoteke." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Ne morem prebrati naložene datoteke." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3784,28 +3804,28 @@ msgstr "" "Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora " "za njega ni vključena ali pa je onemogočena z vašo konfiguracijo." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Trenutno poganjamo redakcijo Git %1$s z veje %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Manjkajo podatki o različici Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Odpri novo okno phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Pogled za tiskanje" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Kliknite na prečko, da se vrnete na vrh strani" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Po tej točki mora biti JavaScript omogočen!" @@ -3814,20 +3834,20 @@ msgid "No index defined!" msgstr "Ni definiranega indeksa!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3837,59 +3857,59 @@ msgstr "Indeksi" msgid "Action" msgstr "Dejanje" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Stisnjen" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Pripomba" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Zavrgel sem primarni ključ." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Zavrgel sem indeks %s." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Zavrzi" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3898,19 +3918,19 @@ msgstr "" "Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko " "odstrani." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Številka strani:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Preskočil sem nepodprto kodo jezika." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Jezik" @@ -3934,11 +3954,11 @@ msgstr "Strežnik" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3957,14 +3977,15 @@ msgid "View" msgstr "Pogled" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3973,8 +3994,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3982,45 +4003,45 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Iskanje" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Vstavi" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegiji" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Sledenje" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4036,16 +4057,16 @@ msgstr "Sprožilci" msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Poizvedba" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutina" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4053,20 +4074,20 @@ msgstr "Rutina" msgid "Events" msgstr "Dogodki" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Osrednji stolpci" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Zbirke podatkov" @@ -4075,39 +4096,39 @@ msgid "User accounts" msgstr "Uporabniški računi" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Podvojevanje" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Spremenljivke" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Pogoni" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Vtičniki" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4116,7 +4137,7 @@ msgstr[1] "Spremenil sem %1$d vrstici." msgstr[2] "Spremenil sem %1$d vrstice." msgstr[3] "Spremenil sem %1$d vrstic." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4125,7 +4146,7 @@ msgstr[1] "Izbrisal sem %1$d vrstici." msgstr[2] "Izbrisal sem %1$d vrstice." msgstr[3] "Izbrisal sem %1$d vrstic." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4175,27 +4196,27 @@ msgstr "Priljubljene tabele" msgid "Favorites" msgstr "Priljubljene" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Prosimo, da za označeno iskanje podate ime." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Za shranitev zabeleženega iskanja manjkajo podatki." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Vnos s tem imenom že obstaja." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Za izbris iskanja manjkajo podatki." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Za naložitev iskanja manjkajo podatki." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Napaka pri nalaganju iskanja." @@ -4257,7 +4278,7 @@ msgstr "Pokaži odprte tabele" msgid "Show slave hosts" msgstr "Prikaži gostitelje podrejencev" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Pokaži stanje glavnega strežnika" @@ -4315,70 +4336,70 @@ msgstr[1] "%d minuti" msgstr[2] "%d minute" msgstr[3] "%d minut" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Za skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je na voljo na tem strežniku MySQL." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogočeno za ta strežnik MySQL." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Neznano stanje tabele:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Izvorne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Ciljne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Neveljavna zbirka podatkov:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Neveljavno ime tabele:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Preimenovanje tabele %1$s v %2$s je spodletelo!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelo %1$s sem preimenoval v %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4387,7 +4408,7 @@ msgstr "" "Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4398,19 +4419,19 @@ msgstr "" "spremembe po osvežitvi te strani ne bodo stalne. Prosimo, preverite, ali je " "bila struktura tabele spremenjena." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnega ključa mora biti \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Indeksa ni mogoče preimenovati v PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Ni definiranega dela indeksa!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4734,7 +4755,7 @@ msgid "Date and time" msgstr "Datum in čas" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Niz" @@ -4749,126 +4770,126 @@ msgstr "Prostorsko" msgid "Max: %s%s" msgstr "Največja velikost: %s %s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statični analiza:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Med analizo smo našli %d napak." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analiziraj explain pri %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Brez kode PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Izvedi poizvedbo" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Ustvari kodo PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Osveži" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profiliranje" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Uredi v vrstici" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "ned" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y ob %H.%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Manjkajoč parameter:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Preskoči na zbirko podatkov \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Imenik, ki ste ga določili za nalaganje, ni dosegljiv." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Nobene datoteke ni za naložiti!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Izprazni" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Izvedi" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Uporabniki" @@ -4882,7 +4903,7 @@ msgstr "na minuto" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "na uro" @@ -4890,12 +4911,12 @@ msgstr "na uro" msgid "per day" msgstr "na dan" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Iskanje:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4903,7 +4924,7 @@ msgstr "Iskanje:" msgid "Description" msgstr "Opis" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Uporabi to vrednost" @@ -4944,22 +4965,22 @@ msgstr "DA" msgid "NO" msgstr "NE" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Ime" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Dolžina/Vrednosti" @@ -4968,7 +4989,7 @@ msgstr "Dolžina/Vrednosti" msgid "Attribute" msgstr "Atribut" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4985,11 +5006,11 @@ msgstr "Dodaj stolpec" msgid "Select a column." msgstr "Izberite stolpec." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Dodaj nov stolpec" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4997,7 +5018,7 @@ msgstr "Dodaj nov stolpec" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5006,28 +5027,28 @@ msgstr "" "V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Možnost ni " "združljiva s phpMyAdminom in lahko pokvari nekatere podatke!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Neveljaven indeks strežnika: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Strežnik %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5039,20 +5060,20 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin trenutno uporalja privzeti časovni pas " "strežnika zbirke podatkov." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s bi morali nadgraditi na različico %s ali novejšo." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Napaka: Neujemanje žetonov" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "poskus prepisa GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "možno izkoriščanje" @@ -5645,7 +5666,7 @@ msgid "Compress on the fly" msgstr "Stisni med izvajanjem" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfiguracijska datoteka" @@ -5751,12 +5772,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Najdaljši čas izvajanja" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Uporabi izjavo %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Shrani kot datoteko" @@ -5766,7 +5787,7 @@ msgstr "Nabor znakov datoteke" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Oblika" @@ -5891,7 +5912,7 @@ msgid "Save on server" msgstr "Shrani na strežnik" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Prepiši obstoječo(e) datoteko(e)" @@ -5904,7 +5925,7 @@ msgid "Remember file name template" msgstr "Zapomni si predlogo imena datoteke" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" @@ -5913,7 +5934,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Obdaj imena tabel in stolpcev z enojnimi poševnimi narekovaji" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" @@ -5943,7 +5964,7 @@ msgstr "Izvozi sorodne metapodatke iz hrambe konfiguracije phpMyAdmin" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -6115,7 +6136,7 @@ msgid "Customize the navigation tree." msgstr "Prilagodi navigacijsko drevo." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Strežniki" @@ -7018,7 +7039,7 @@ msgstr "Področje HTTP" msgid "Authentication method to use." msgstr "Način overovitve za uporabo." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Vrsta overovitve" @@ -7751,7 +7772,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Omogoči zavihek Razvijalec v nastavitvah" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Preveri za najnovejšo različico" @@ -7759,10 +7780,10 @@ msgstr "Preveri za najnovejšo različico" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Omogoča preverjanje najnovejše različice na glavni strani phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Preverjanje različice" @@ -7908,24 +7929,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Besedilo OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Seznam Priljubljenih je poln!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Izpraznil sem tabelo %s." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Pogled %s sem zavrgel." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabelo %s sem zavrgel." @@ -7939,12 +7960,12 @@ msgid "Position" msgstr "Položaj" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Vrsta dogodka" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID strežnika" @@ -7953,7 +7974,7 @@ msgid "Original position" msgstr "Izvirni položaj" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Podatki" @@ -7967,16 +7988,16 @@ msgstr "Skrči prikazane poizvedbe" msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Brez zbirk podatkov" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Zbirka podatkov %1$s je ustvarjena." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -7985,26 +8006,26 @@ msgstr[1] "Uspešno sem zavrgel %1$d zbirki podatkov." msgstr[2] "Uspešno sem zavrgel %1$d zbirke podatkov." msgstr[3] "Uspešno sem zavrgel %1$d zbirk podatkov." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Vrstic" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Skupaj" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Presežek" @@ -8031,35 +8052,35 @@ msgstr "" msgid "Enable statistics" msgstr "Omogoči statistiko" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Nimate zadostnih privilegijev za ogled strežniških spremenljivk in " "nastavitev. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Nastavljanje spremenljivke je spodletelo" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Za pridobivanje podatkov ni bil določen noben SQL." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" "V tabeli ni številskih stolpcev, ki bi jih bilo mogoče narisati na graf." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Ni podatkov za prikaz" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabelo %1$s smo uspešno spremenili." @@ -8104,7 +8125,7 @@ msgstr "Stolpce smo uspešno premaknili." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Napaka poizvedbe" @@ -8121,12 +8142,12 @@ msgstr "Spremeni" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -8147,13 +8168,13 @@ msgstr "Polno besedilo" msgid "Distinct values" msgstr "Različne vrednosti" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Manjka razširitev %s. Prosimo, preverite vašo konfiguracijo PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Brez sprememb" @@ -8175,31 +8196,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Ne morem naložiti vtičnikov sheme, prosimo, preverite vašo namestitev!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Brez gesla" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Geslo:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Ponovno vnesi:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Šifriranje gesel:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8208,83 +8233,83 @@ msgstr "" "Ta metoda zahteva 'povezavo SSL' ali 'nešifrirano povezavo, ki " "šifrira gesla z uporabo RSA' pri povezovanju na strežnik." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Izvažanje zbirk podatkov iz trenutnega strežnika" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Izvažanje tabel iz zbirke podatkov \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Izvažanje vrstic iz tabele \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Izvozite predloge:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Nova predloga:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Ime predloge" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Ustvari" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Obstoječe predloge:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Predloga:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Posodobi" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Izberite predlogo" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Način izvoza:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Hitro - prikaži kar najmanj možnosti" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Po meri - prikaži vse mogoče možnosti" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Zbirke podatkov:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabele:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Oblika:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Možnosti odvisne od oblike:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8292,52 +8317,52 @@ msgstr "" "Pomaknite se dol, da vnesete možnosti za izbrane oblike in ignorirate " "možnosti za ostale oblike." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Pretvorba kodiranja:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Vrstice:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Odloži nekaj vrstic" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Začetna vrstica:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Odloži vse vrstice" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Izhod:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Shrani na strežnik v imenik %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Predloga imena datoteke:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ bo postalo ime strežnika" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ bo postalo ime zbirke podatkov" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ bo postalo ime tabele" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8349,99 +8374,99 @@ msgstr "" "Ostalo besedilo bo ostalo takšno, kot je. Oglejte si %4$sFAQ%5$s za " "podrobnosti." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "uporabi to za prihodnje izvoze" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Nabor znakov datoteke:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Stiskanje:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zipano" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzipano" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Ogled izhoda kot besedilo" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Izvozi zbirke podatkov v ločenih datotekah" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Izvozi tabele v ločenih datotekah" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Preimenuj izvožene zbirke podatov/tabele/stolpce" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Shrani izhod v datoteko" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Preskoči tabele, večje od" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Izberite zbirko podatkov" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Izberite tabelo" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Ime nove zbirke podatkov" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Ime nove tabele" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Staro ime stolpca" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Novo ime stolpca" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za izvoz, prosimo, preverite vašo namestitev!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s z veje %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "ni veje" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Redakcija Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "potrdil(-a) %2$s dne %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "spremenil(-a) %2$s dne %1$s" @@ -8898,13 +8923,13 @@ msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ni dovolj prostora za shranjevanje datoteke %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8912,77 +8937,77 @@ msgstr "" "Datoteka %s že obstaja na strežniku, spremenite ime novi ali prepišite " "obstoječo datoteko." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[Zgodil se je ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Oglejte si vsebine strukture s klikom na njeno ime." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " "\"Možnosti\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Pojdi v zbirko podatkov: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Uredi nastavitve za %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Pojdi na tabelo: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Pojdi na pogled: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Simulirate lahko samo poizvedbe UPDATE in DELETE na eni tabeli." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8995,86 +9020,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Ustvari indeks na  %s stolpcih" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Skrij" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcija" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ali" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "imenik za nalaganje datotek:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Uredi/Vstavi" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "in potem" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Pojdi nazaj na prejšnjo stran" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9085,31 +9111,31 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Uspešno!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Samo struktura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktura in podatki" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Samo podatki" @@ -9118,14 +9144,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Dodaj vrednost AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Dodaj omejitve" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Prilagodi privilegije" @@ -9170,8 +9196,8 @@ msgstr "Procedure:" msgid "Views:" msgstr "Pogledi:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Pokaži" @@ -9217,17 +9243,17 @@ msgstr[1] "najdena %s rezultata" msgstr[2] "najdeni %s rezultati" msgstr[3] "najdenih %s rezultatov" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Vtipkajte za filtriranje teh, pritisnite enter za iskanje vseh" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Počisti hitri filter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Skrči vse" @@ -9242,7 +9268,7 @@ msgstr "Neveljavno ime razreda \"%1$s\"; uporabljam privzeto \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Ne morem naložiti razreda \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Razširi/Skrči" @@ -9261,7 +9287,7 @@ msgstr "Nov" msgid "Database operations" msgstr "Posegi zbirke podatkov" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Prikaži skrite predmete" @@ -9364,11 +9390,11 @@ msgstr "" "Izberite stolpec, ki ga je možno razbiti v več kot enega (z izbiro »ni " "takšnega stolpca« se boste pomaknili na naslednji korak)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Izberite enega …" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Ni takšnega stolpca" @@ -9637,8 +9663,8 @@ msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9684,177 +9710,177 @@ msgstr "(posamezno)" msgid "Move table to (database.table)" msgstr "Premakni tabelo v (zbirka_podatkov.tabela)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Preimenuj tabelo v" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Pripomba tabele" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Možnosti tabele" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Pogon skladiščenja" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Spremeni vsa pravila za razvrščanje znakov v stolpcih" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopiraj tabelo v (zbirka_podatkov.tabela)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Preklopi na kopirano tabelo" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Vzdrževanje tabele" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Preveri tabelo" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Tabela kontrolnih vsot" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentiraj tabelo" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Osvežil sem tabelo %s." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Počisti tabelo (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Popravi tabelo" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Izbriši podatke ali tabelo" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Izprazni tabelo (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Izbriši tabelo (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analiziraj" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Označi" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimiraj" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Ponovno sestavi" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Popravi" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Izprazni" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Združi (coalesce)" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Vzdrževanje particij" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Odstrani particioniranje" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Tabele ne morete premakniti same vase!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Tabele ne morete kopirati same vase!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabelo %s smo premaknili na %s. Privilegije smo prilagodili." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabelo %s smo skopirali na %s. Privilegije smo prilagodili." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelo %s smo premaknili na %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelo %s smo skopirali na %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Ime tabele je prazno!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Oblika nima nobenih možnosti" @@ -9882,18 +9908,18 @@ msgstr "Pokaži barvo" msgid "Only show keys" msgstr "Prikaži samo ključe" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Ne morem se povezati: neveljavne nastavitve." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli v %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9902,7 +9928,7 @@ msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9913,7 +9939,7 @@ msgstr "" "povezavo. Preverite, ali gostitelj, uporabniško ime in geslo v datoteki " "config.inc.php ustrezajo podatkom administratorja strežnika MySQL." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Poskusi se ponovno povezati" @@ -9938,15 +9964,15 @@ msgstr "Uporabniško ime:" msgid "Server Choice:" msgstr "Izbira strežnika:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Vnesena captcha je napačna; poskusite znova!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Prosimo, vnesite pravilno captcho!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Nimate dovoljenja za prijavo na ta strežnik MySQL!" @@ -10009,7 +10035,7 @@ msgstr "Možnosti odlaganja podatkov" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" @@ -10018,7 +10044,7 @@ msgstr "Odloži podatke za tabelo" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Dogodek" @@ -10026,8 +10052,8 @@ msgstr "Dogodek" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Opredelitev" @@ -10113,7 +10139,7 @@ msgstr "Postavi imena stolpcev v prvo vrstico:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Gostitelj:" @@ -10641,7 +10667,7 @@ msgstr "Vsebina" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Dodatno" @@ -11017,11 +11043,11 @@ msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "brez opisa" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11031,7 +11057,7 @@ msgstr "" "Greste lahko na zavihek 'Dejanja' v vsaki od zbirk podatkov in nastavite " "hrambo konfiguracije phpMyAdmin." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11040,7 +11066,7 @@ msgstr "" "%sUstvari%s zbirko podatkov 'phpmyadmin' in vanjo namesti hrambo " "konfiguracije phpMyAdmin." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11048,33 +11074,33 @@ msgstr "" "%sCreate%s tabele hrambe konfiguracije phpMyAdmin in trenutni zbirki " "podatkov." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sUstvari%s manjkajoče tabele hrambe konfiguracije phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Podvojevanje glavnega strežnika" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Pokaži povezane podrejence" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Dodaj uporabnika podvojevanja podrejencev" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Konfiguracija glavnega strežnika" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11088,19 +11114,19 @@ msgstr "" "prezrtjem vseh zbirk podatkov po privzetem in podvojitvijo samo določenih " "zbirk podatkov. Prosimo, izberite način:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Podvoji vse zbirke podatkov; prezri:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Prezri vse zbirke podatkov; podvoji:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Prosimo, izberite zbirke podatkov:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11108,7 +11134,7 @@ msgstr "" "Sedaj dodajte naslednje vrstice na konec razdelka [mysqld] v vašem my.cnf in " "nato, prosimo, ponovno zaženite strežnik MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11118,70 +11144,70 @@ msgstr "" "Nato bi morali videti sporočilo, ki vam sporoča, da strežnik je " "konfiguriran kot glavni strežnik." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Podvojevanje podrejencev" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Glavna povezava:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Podrejenčeva nit SQL ni zagnana!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Podrejenčeva nit IO ni zagnana!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Strežnik je konfiguriran kot podrejenec v postopku podvojevanja. Ali želite:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Oglej si tabelo stanj podrejencev" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Upravljaj podrejenca:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Polni začetek" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Polni konec" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Ponovno zaženi podrejenca" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Zaženi samo nit SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Ustavi samo nit SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Zaženi samo nit IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Ustavi samo nit IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Spremeni ali ponovno konfiguriraj glavni strežnik" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11190,26 +11216,26 @@ msgstr "" "Strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ga želite " "konfigurirati?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Upravljanje napak:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Preskakovanje napak lahko vodi v nesinhroniziran glavni strežnik in " "podrejenec!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Preskoči trenutno napako" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Preskoči naslednjih %s napak." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11218,11 +11244,11 @@ msgstr "" "Strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Ga " "želite konfigurirati?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Konfiguracija podrejencev" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11231,53 +11257,53 @@ msgstr "" "id strežnika. Če nimate, prosimo dodajte naslednjo vrstico v razdelek " "[mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Uporabniško ime:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Uporabniško ime" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Geslo" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Vrata:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Stanje glavnega strežnika" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Stanje podrejenca" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Spremenljivka" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Gostitelj" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11285,39 +11311,39 @@ msgstr "" "Samo podrejenci, ki so bili zagnani z možnostjo --report-host=host_name, so " "vidni na tem seznamu." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Kateri koli gostitelj" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ta strežnik" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Kateri koli uporabnik" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Uporabi besedilno polje:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11325,77 +11351,77 @@ msgstr "" "Ko je uporabljena tabela Host, je to polje prezrto in so namesto njega " "uporabljene vrednosti shranjene v tabeli Host." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ponovno vnesi" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Ustvari geslo:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Podvojevanje se je uspešno začelo." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Napaka pri zagonu podvojevanja." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Podvojevanje je uspešno ustavljeno." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Napaka pri ustavljanju podvojevanja." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Ponastavljanje podvojevanja je bilo uspešno." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Napaka pri ponastavljanju podvojevanja." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Uspešno." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Napaka." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Neznana napaka" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Ne morem se povezati z glavnim strežnikom %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ne morem prebrati položaja dnevnika glavnega strežnika. Možne težave s " "privilegiji na glavnem strežniku." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Ne morem spremeniti glavnega strežnika!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Glavni strežnik sem uspešno spremenil v %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11416,7 +11442,7 @@ msgstr "Dogodek %1$s je bil spremenjen." msgid "Event %1$s has been created." msgstr "Dogodek %1$s je ustvarjen." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Med obdelovanjem vaše zahteve je prišlo do ene ali več napak:" @@ -11425,75 +11451,75 @@ msgstr "Med obdelovanjem vaše zahteve je prišlo do ene ali več napak:" msgid "Edit event" msgstr "Uredi dogodek" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Podrobnosti" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Ime dogodka" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Spremeni v %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Izvedi ob" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Izvedi vsakih" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Začetek" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Konec" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Ob dokončanju ohrani" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Opredeljevalec" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Opredeljevalec mora biti oblike \"uporabniškoime@imegostitelja\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Navesti morate ime dogodka!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Navesti morateveljavno vrednost intervala dogodka." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Navesti morate veljavni čas izvedbe dogodka." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Navesti morate veljavno vrsto dogodka." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Navesti morate opredelitev dogodka." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Napaka v obdelovanju zahteve:" @@ -11514,7 +11540,7 @@ msgstr "Stanje razporejevalnika dogodkov" msgid "The backed up query was:" msgstr "Varnostno kopirana poizvedba je bila:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Vrnjeno" @@ -11530,72 +11556,72 @@ msgstr "" "[/strong] Prosimo, uporabljajte izboljšano razširitev 'mysqli' v izogib " "morebitnim težavam." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Uredi rutino" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Neveljavna vrsta rutine: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Rutino %1$s smo ustvarili." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Oprostite, zavržene rutine nam ni uspelo obnoviti." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Rutino %1$s smo spremenili. Privilegije smo prilagodili." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutino %1$s smo spremenili." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Ime rutine" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Smer" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Dodaj parameter" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Odstrani zadnji parameter" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Vrnjena dolžina/vrednosti" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Vrnjene možnosti" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Je deterministično" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11603,25 +11629,25 @@ msgstr "" "Nimate zadostnih pravic za izvedbo posega; prosimo, oglejte si dokumentacijo " "za več podrobnosti" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Vrsta varnosti" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Dostop do podatkov SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Navesti morate ime rutine!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Neveljavna smer \"%s\" podana za parameter." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11629,24 +11655,24 @@ msgstr "" "Navesti morate dolžine/vrednosti za parametre rutine vrste ENUM, SET, " "VARCHAR in VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Navesti morate ime in vrsto vsakega parametra rutine." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Navesti morate veljavno vrsto vrnjene vrednosti dogodka." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Navesti morate opredelitev rutine." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Rezultati izvedbe rutine %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -11655,13 +11681,13 @@ msgstr[1] "Zadnja izjava znotraj procedure je spremenila %d vrstici." msgstr[2] "Zadnja izjava znotraj procedure je spremenila %d vrstice." msgstr[3] "Zadnja izjava znotraj procedure je spremenila %d vrstic." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Izvedi rutino" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parametri rutine" @@ -11683,32 +11709,32 @@ msgstr "Sprožilec %1$s je ustvarjen." msgid "Edit trigger" msgstr "Uredi sprožilec" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Ime sprožilca" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Čas" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Navesti morate ime sprožilca!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Navesti morate veljavni časovni izbor sprožilca!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Navesti morate veljavni dogodek sprožilca!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Navesti morate veljavno ime tabele!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Navesti morate opredelitev sprožilca." @@ -11828,92 +11854,92 @@ msgstr "Nabori znakov in pravila za razvrščanje znakov" msgid "Databases statistics" msgstr "Statistika zbirk podatkov" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Brez privilegijev." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Omogoča branje podatkov." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih zbirk podatkov in tabel." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje zbirk podatkov in tabel." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Omogoča ogled procesov vseh uporabnikov." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska zbirk podatkov." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11923,130 +11949,103 @@ msgstr "" "priklopov; potrebno za večino administrativnih nalog kot sta postavljanje " "globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno nit." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " "strežniki." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Omogoča ustvarjanje in brisanje sprožilcev." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Brez" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Uporabniška skupina" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Ne zahteva povezave, šifrirane s SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Zahteva povezave, šifrirane s SSL." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Zahteva veljaven certifikat X509." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Zahteva, da se za povezavo uporablja določena šifrirna metoda." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Zahteva prisotnost veljavnega certifikata X509, ki ga je izdal ta overitelj " "(CA)." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Zahteva prisotnost veljavnega certifikata X509 s to zadevo." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Omejitve virov" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12054,25 +12053,23 @@ msgstr "" "Omeji število ukazov za spremembo tabel ali zbirke podatkov, ki jih " "uporabnik lahko izvrši v eni uri." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." @@ -12080,61 +12077,61 @@ msgstr "" "Dovoli uporabniku dodeljevanje ali odvzemanje privilegijev drugim " "uporabnikom, ki jih ima ta uporabnik na rutini." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Omogoča ustvarjanje in brisanje rutine." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Omogoča izvajanje rutine." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administracija" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globalni privilegiji" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globalno" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilegiji, tipični za zbirko podatkov" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." @@ -12142,31 +12139,28 @@ msgstr "" "Dovoli uporabniku dodeljevanje ali odvzemanje privilegijev drugim " "uporabnikom, ki jih ima ta uporabnik." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Domorodna overitev MySQL" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Overitev z geslom SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Domorodna overitev MySQL" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Podatki o prijavi" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12174,135 +12168,135 @@ msgstr "" "Račun z enakim uporabniškim imenom že obstaja, vendar ima morda drugačnega " "gostitelja." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Ime gostitelja:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Ime gostitelja" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Vtičnik za overovitev" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Metoda šifriranja gesel" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Odvzeli ste privilegije za %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Dodaj uporabniški račun" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Zbirka podatkov za uporabniški račun" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "Dodeli vse privilegije za zbirko podatkov %s." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Uporabniški dostop do \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Uporabnik je dodan." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Dovoli" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Nimate zadostnih privilegijev za ogled uporabnikov." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Kateri koli" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "nadomestni znak" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "glede na tabelo" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Odvzemi" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Uredi uporabniško skupino" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… obdrži starega." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… izbriši starega s seznama uporabnikov." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12310,89 +12304,77 @@ msgstr "" "… izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Spremeni prijavne informacije / Kopiraj uporabniški račun" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Ustvari nov uporabniški račun z enakimi pravicami in …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegiji, vezani na rutino" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Izbriši izbrane uporabniške račune" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Uporabniška skupina" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilegiji %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Uporabnik" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Nov" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Uredi privilegije:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Uporabniški račun" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12400,11 +12382,11 @@ msgstr "" "Opozorilo: Poskušate urediti privilegije uporabnika, s katerim ste trenutno " "prijavljeni." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Pregled uporabniških računov" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12415,7 +12397,7 @@ msgstr "" "gostiteljski del njihovega računa dovoljuje povezavo s katerega koli (%) " "gostitelja." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12428,7 +12410,7 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12442,11 +12424,11 @@ msgstr "" "morate pred nadaljevanjem osvežiti privilegije, vendar trenuno nimate " "privilegija RELOAD." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." @@ -12753,12 +12735,12 @@ msgstr "Ukaz" msgid "Progress" msgstr "Napredek" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtri" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Prikaži samo aktivne" @@ -12779,12 +12761,12 @@ msgstr "na minuto:" msgid "per second:" msgstr "na sekundo:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "Št." @@ -12808,7 +12790,7 @@ msgstr "Prikaži neoblikovane vrednosti" msgid "Related links:" msgstr "Sorodne povezave:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12816,11 +12798,11 @@ msgstr "" "Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " "povezave." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12830,18 +12812,18 @@ msgstr "" "dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " "shranitev izjav iz transakcije uporabljene začasne datoteke." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " "dnevnika." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12853,11 +12835,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12865,7 +12847,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12873,7 +12855,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12881,23 +12863,23 @@ msgstr "" "Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " "na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12907,7 +12889,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12917,7 +12899,7 @@ msgstr "" "kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " "FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12926,7 +12908,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12936,7 +12918,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12944,7 +12926,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek " "branja se uporablja predvsem za optimizacijo ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12956,7 +12938,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12968,36 +12950,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Število prostih strani." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13007,7 +12989,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13019,11 +13001,11 @@ msgstr "" "lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13031,7 +13013,7 @@ msgstr "" "Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " "poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13039,11 +13021,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13051,7 +13033,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13065,52 +13047,52 @@ msgstr "" "čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi " "morala biti vrednost majhna." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13118,35 +13100,35 @@ msgstr "" "Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " "in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13154,51 +13136,51 @@ msgstr "" "Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " "v straneh; velikost strani omogoča preprosto pretvorbo v bajte." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Število prebranih strani." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13207,7 +13189,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13215,7 +13197,7 @@ msgstr "" "Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " "uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13225,15 +13207,15 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13243,7 +13225,7 @@ msgstr "" "je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " "pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13251,22 +13233,22 @@ msgstr "" "Napačno izračunan predpomnilnik ključev kot delež fizičnih branj v " "primerjavi z zahtevami za branje (izračunana vrednost)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Število fizičnih pisanj bloka ključev na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Odstotek fizičnih zapisov v primerjavi z zahtevami za zapis (izračunana " "vrednost)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13277,17 +13259,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13295,19 +13277,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13317,19 +13299,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13342,7 +13324,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13350,19 +13332,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13370,11 +13352,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13382,7 +13364,7 @@ msgstr "" "Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " "(Če to ni 0, previdno preverite indekse vaših tabel.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13390,16 +13372,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13407,11 +13389,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13419,12 +13401,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13434,23 +13416,23 @@ msgstr "" "Če je vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13462,7 +13444,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13472,11 +13454,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, " "povečajte svoj thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13487,11 +13469,11 @@ msgstr "" "velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " "ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." @@ -13520,37 +13502,37 @@ msgstr "Zavihki stopenj zbirke podatkov" msgid "Table level tabs" msgstr "Zavihki stopenj tabele" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Poglej uporabnike" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Dodaj uporabniško skupino" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Uredi uporabniško skupino: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Dodelitve menija uporabniških skupin" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Ime skupine:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Zavihki stopenj strežnika" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Zavihki stopenj zbirke podatkov" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Zavihki stopenj tabele" @@ -13649,7 +13631,7 @@ msgstr "Izvedi poizvedbo/poizvedbe SQL na zbirki podatkov %s" msgid "Run SQL query/queries on table %s" msgstr "Izvedi poizvedbo/poizvedbe SQL na tabeli %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Počisti" @@ -13734,112 +13716,112 @@ msgstr "Dezaktiviraj zdaj" msgid "Version" msgstr "Različica" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Ustvarjeno" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Posodobljeno" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Izbriši različico" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Poročilo sledenja" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Posnetek strukture" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktivno" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ni aktivno" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Sledenje stavkom" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Izbriši vrstico podatkov sledenja iz poročila" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Brez podatkov" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Prikaži %1$s z datumi od %2$s do %3$s uporabnika %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Odložen SQL (prenos datoteke)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Odložen SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Izvršitev SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Izvozi kot %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Stavek upravljanja s podatki" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Stavek opredeljevanja podatkov" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Uporabniško ime" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Različica posnetka %s (koda SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Brez" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Opredelitev sledenja podatkom je uspešno izbrisana" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Stavek upravljanja s podatki je uspešno izbrisan" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13847,63 +13829,63 @@ msgstr "" "Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke " "podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih " "izvršite." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Poročilo sledenja za tabelo `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledenje %1$s je bilo aktivirano pri različici %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledenje %1$s je bilo deaktivirano pri različici %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Različico %1$s tabele %2$s smo izbrisali." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Različica %1$s je ustvarjena, sledenje %2$s je aktivirano." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nesledene tabele" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sledi tabeli" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Sledene tabele" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Zadnja različica" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Izbriši sledenje" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Različice" @@ -13911,7 +13893,7 @@ msgstr "Različice" msgid "Manage your settings" msgstr "Upravljajte svoje nastavitve" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfiguracijo sem shranil." @@ -13937,7 +13919,7 @@ msgstr "Napaka v arhivu ZIP:" msgid "No files found inside ZIP archive!" msgstr "V arhivu ZIP ni bilo najdenih datotek!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Usodna napaka: Do navigacije lahko dostopate samo z Ajaxom" @@ -13945,55 +13927,55 @@ msgstr "Usodna napaka: Do navigacije lahko dostopate samo z Ajaxom" msgid "Cannot save settings, submitted form contains errors!" msgstr "Ne morem shraniti nastavitev, saj poslani obrazec vsebuje napake!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "Izsek konfiguracije phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "Prilepite ga v svoj config.inc.php" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Ne morem uvoziti konfiguracije" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguracija vsebuje nepravilne podatke za nekatera polja." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Ali želite uvoziti preostale nastavitve?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Shranjeno: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Uvozi iz datoteke" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Uvozi iz hrambe brskalnika" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Nastavitve bodo uvožene iz brskalnikove lokalne hrambe." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Nimate shranjenih nastavitev!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Te funkcije vaš spletni brskalnik ne podpira" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Združi s trenutno konfiguracijo" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14002,23 +13984,23 @@ msgstr "" "Več nastavitev lahko nastavite s spreminjanjem config.inc.php, npr. z " "uporabo %sNastavitvenega skripta%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "Shrani kot datoteko PHP" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Shrani v hrambo brskalnika" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Nastavitve bodo shranjene v lokalno hrambo vašega brskalnika." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Obstoječe nastavitve bodo prepisane!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Ponastavite lahko vse svoje nastavitve in jih obnovite na njihove privzete " @@ -14028,12 +14010,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja zbirk podatkov" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Brez privilegijev" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14041,34 +14023,34 @@ msgstr "" "Uporabniškega imena in gostitelja niste spremenili. Če želite spremeniti " "samo geslo, uporabite zavihek »Spremeni geslo«." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Nimate zadostnih privilegijev za ogled stanja strežnika." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Nimate zadostnih privilegijev za ogled svetovalca." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Nit %s je bila prekinjena." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti niti %s. Verjetno je že prekinjena." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Nimate zadostnih privilegijev za ogled statistike poizvedb." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Nimate zadostnih privilegijev za ogled spremenljivk stanja." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Prenesi" @@ -14077,11 +14059,11 @@ msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" "Neveljaven formset; preverite polje $formsets v setup/frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Ne morem naložiti ali shraniti konfiguracije" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14092,7 +14074,7 @@ msgstr "" "[doc@setup_script]dokumentacija[/doc]. V nasprotnem primeru jo boste lahko " "samo prenesli ali jo prikazali." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14100,24 +14082,27 @@ msgstr "" "Ne uporabljate varne povezave; vsi podatki (vključno z morebitnimi " "občutljivimi informacijami, kot so gesla) se prenašajo nešifrirani!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Če je vaš strežnik nastavljen za sprejemanje zahtev HTTPS, sledite [a@%s]tej " "povezavi[/a] za uporabo varne povezave." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Nezavarovana povezava" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfiguracijo smo shranili." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14126,59 +14111,59 @@ msgstr "" "phpMyAdmin; skopirajte jo v vrhnjo mapo in izbrišite mapo config, če jo " "želite uporabiti." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Konfiguracije nismo shranili!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Pregled" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Prikaži skrita sporočila (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Ni konfiguriranih strežnikov" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Nov strežnik" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Privzeti jezik" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "naj uporabnik izbere" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- noben -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Privzeti strežnik" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Konec vrstice" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Prikaži" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Naloži" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Domača stran phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Daruj" @@ -14214,7 +14199,7 @@ msgstr "Prezri napake" msgid "Show form" msgstr "Pokaži obrazec" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14222,15 +14207,15 @@ msgstr "" "Branje različice je spodletelo. Morda niste povezani v internet ali pa se " "posodobitveni strežnik ne odziva." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Od strežnika sem dobil neveljavno besedilo različice" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Nerazčlenljivo besedilo različice" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14239,7 +14224,7 @@ msgstr "" "Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)" "[br]Najnovejša stabilna različica je %s, izdana %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Na voljo ni novejše stabilne različice" @@ -14252,12 +14237,12 @@ msgstr "Napačni podatki" msgid "Wrong data or no validation for %s" msgstr "Napačni podatki ali pa ni preverjanja za %s" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Zbirka podatkov '%s' ne obstaja." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s že obstaja!" @@ -14270,29 +14255,29 @@ msgstr "Preglej povzetek stanja tabele" msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Vrstica: %1$s, Stolpec: %2$s, Napaka: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Ni izbranih vrstic." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Sledenje %s je aktivirano." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Uspešno sem izbrisal različice sledenja." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Ni izbranih različic." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Stavki SQL so izvedeni." @@ -14462,7 +14447,7 @@ msgid "List of available transformations and their options" msgstr "Seznam razpoložljivih pretvorb in njihovih možnosti" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Pretvorba brskalnikovega prikaza" @@ -14484,7 +14469,7 @@ msgstr "" "'\\\\xyz' ali 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Pretvorbe vnosa" @@ -14918,17 +14903,17 @@ msgid "Size" msgstr "Velikost" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Ustvarjeno" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Zadnjič posodobljeno" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Zadnjič pregledano" @@ -14970,6 +14955,12 @@ msgstr "" "Vaš brskalnik ima konfiguracijo phpMyAdmin za to domeno. Ali jo želite " "uvoziti za trenutno sejo?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Izbriši sledenje" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Dodaj privilegije na naslednje zbirke podatkov:" @@ -14988,10 +14979,44 @@ msgstr "Dodaj privilegije na naslednji rutini:" msgid "Add privileges on the following table:" msgstr "Dodaj privilegije na naslednji tabeli:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Nov" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Brez" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Izbriši izbrane uporabniške račune" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Omejitve virov" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" @@ -15022,7 +15047,7 @@ msgstr "Vtičnik" msgid "Author" msgstr "Avtor" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "onemogočeno" @@ -15176,7 +15201,7 @@ msgstr "Razčlenjevalnik:" msgid "Comment:" msgstr "Pripomba:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Povlecite za preureditev" @@ -15212,26 +15237,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "Omejitev tujih ključev" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Dodaj omejitev" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Notranja razmerja" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Notranja relacija" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Izberite stolpec za prikaz:" @@ -15284,11 +15309,11 @@ msgstr "Izvirni niz" msgid "Replaced string" msgstr "Zamenjani nizi" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Zamenjaj" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Dodatni iskalni pogoji" @@ -15358,7 +15383,7 @@ msgid "at beginning of table" msgstr "na začetku tabele" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Particije" @@ -15382,24 +15407,24 @@ msgstr "Dolžina podatkov" msgid "Index length" msgstr "Dolžina indeksa" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Tabela razdelitve" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Uredi razdelitev" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Urejevalni pogled" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Poraba prostora" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Učinkovito" @@ -15424,31 +15449,31 @@ msgstr "Izboljšaj strukturo tabele" msgid "Track view" msgstr "Sledi pogledu" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Statistika vrstic" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statično" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamično" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "po particijah" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Dolžina vrstice" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Velikost vrstice" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Naslednji samodejni indeks" @@ -15461,44 +15486,44 @@ msgstr "Zavrgel sem stolpec %s." msgid "Click to toggle" msgstr "Kliknite za preklop" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Motiv" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Pridobi več preoblek!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Razpoložljive vrste MIME" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Razpoložljive pretvorbe brskalnikovega prikaza" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Razpoložljive pretvorbe vnosa" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Prestavili vas bomo na naslednjo ciljno stran." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nimate dovolj pravic, da bi bili sedaj tukaj!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil je posodobljen." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Geslo je predolgo!" @@ -15569,8 +15594,12 @@ msgid "Unexpected end of CASE expression" msgstr "Nepričakovan konec izraza CASE" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Pričakovali smo ime simbola! Rezervirane besede ne morete uporabiti kot ime " @@ -15593,17 +15622,17 @@ msgid "Unrecognized data type." msgstr "Neprepoznana vrsta podatkov." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Pričakovali smo vzdevek." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Vzdevek smo našli že prej." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Nepričakovana pika." @@ -15655,24 +15684,24 @@ msgstr "Pred ločitvenim znakom smo pričakoval prazne znake." msgid "Expected delimiter." msgstr "Pričakovali smo ločitveni znak." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Pričakovali smo končni narekovaj %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Pričakovali smo ime spremenljivke." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Nepričakovan začetek stavka." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Neprepoznana vrsta stavka." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Začeli niste nobene transakcije." @@ -15689,10 +15718,16 @@ msgstr "Nepričakovan žeton." msgid "This type of clause was previously parsed." msgstr "To vrsto stavka smo prej razčlenili." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Nepričakovana ključna beseda." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Nepričakovan začetek stavka." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Pričakovali smo ime entitete." @@ -15729,7 +15764,7 @@ msgstr "%2$s št. %1$d" msgid "strict error" msgstr "stroga napaka" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Ime pogleda ne more biti prazno" @@ -17009,6 +17044,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Domorodna overitev MySQL" + #~ msgid "Try to connect without password." #~ msgstr "Poskusi se povezati brez gesla." diff --git a/po/sq.po b/po/sq.po index 49176b616f..5df262bb28 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:31+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Albanian " -"\n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,32 +27,32 @@ msgstr "" "Fili %s nuk është i vlefshëm në këtë sistem, ju lutem, vizito www.phpmyadmin." "net për më shumë informacion." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" "Lista qendrore e kolonave për bazën e të dhënave aktuale është e zbrazët." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Kliko për të klasifikuar." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Shfaqën radhët %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Komenti i databazës" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Komentet e tabelës:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -64,13 +64,13 @@ msgstr "Komentet e tabelës:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -81,9 +81,9 @@ msgstr "Komentet e tabelës:" msgid "Column" msgstr "Kolona" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -94,12 +94,12 @@ msgstr "Kolona" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -111,9 +111,9 @@ msgstr "Kolona" msgid "Type" msgstr "Tipi" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -124,15 +124,15 @@ msgstr "Tipi" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -143,14 +143,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Parazgjedhur" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -160,7 +160,7 @@ msgstr "Parazgjedhur" msgid "Links to" msgstr "Lidhje tek" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -174,19 +174,19 @@ msgstr "Lidhje tek" msgid "Comments" msgstr "Komente" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primar" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -194,13 +194,13 @@ msgstr "Primar" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -208,17 +208,17 @@ msgstr "Primar" msgid "No" msgstr "Jo" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -227,13 +227,13 @@ msgstr "Jo" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -245,15 +245,15 @@ msgstr "Po" msgid "View dump (schema) of database" msgstr "Shfaq zbrazjen (skema) e databazës" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Nuk gjenden tabela në databazë." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -262,8 +262,8 @@ msgid "Tables" msgstr "Tabela" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -271,10 +271,10 @@ msgstr "Tabela" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -287,27 +287,27 @@ msgstr "Struktura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Të dhëna" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Zgjedh të gjitha" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Emri i databazës është i zbrazët!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Databaza %1$s është riemëruar në %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Databaza %1$s është kopjuar në %2$s." @@ -319,27 +319,27 @@ msgid "" msgstr "" "Ruajtja e konfigurimit phpMyAdmin është pasivizuar. %sGjej arsyen pse%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Duhet të zgjidhni të paktën një kolonë për të shfaqur!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Kalo tek %sndërtuesi vizual%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Hyrja nuk lejohet!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Të dhënat e gjurmuara u fshinë me sukses." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -347,11 +347,11 @@ msgstr "" "Versioni %1$s është krijuar për tabelat e zgjedhura, gjurmimi është aktiv " "për ta." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Nuk është zgjedhur tabelë." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Regjistri (log) databazës" @@ -393,131 +393,131 @@ msgstr "Tip i keq!" msgid "Bad parameters!" msgstr "Parametra të këqinj!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Vlera për kolonën \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Përdor OpenStreetMaps si Shtresë Bazë" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Gjeometri %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Pikë:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Pikë %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Shto një pikë" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Vargu i linjës %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Rrethi i jashtëm:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Unazë e brendshme %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Shto një linestring (varg linje)" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Shto një rreth të brendshëm" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Poligon %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Shto një poligon" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Shto gjeometri" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Shko" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Rezultat" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -525,19 +525,19 @@ msgstr "" "Zgjedh \"GeomFromText\" nga kolona \"Function\" dhe ngjite vargun më poshtë " "në fushën \"Value\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Me sukses" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Dështoi" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Parametra jo të plota" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -546,15 +546,15 @@ msgstr "" "Ndoshta provuat të ngarkoni një fil, që është shumë i madh. Ju lutem, refero " "%sdokumentacionin%s për një vështrim të kujdesshëm për këtë kufizim." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Shfaqën faqeruajtësin" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Faqeruajtësi është fshirë." -#: import.php:489 +#: import.php:486 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 " @@ -564,24 +564,24 @@ msgstr "" "madhësia e filit tejkalon madhësinë maksimasle të lejuar nga konfigurimi " "juaj PHP. Shiko [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nuk mund të ngarkojë shtojcat e importit, ju lutem kontrollo instalimin tuaj!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Faqerojtësi %s është krijuar." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importi ka përfunduar me sukses, %d pyetsor u ekzekutua." msgstr[1] "Importi ka përfunduar me sukses, %d pyetsorë u ekzekutuan." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -590,7 +590,7 @@ msgstr "" "Koha e skadimit të skriptit kaloi, nëse doni të përfundoni importin, ju " "lutem %sri-dërgo të njëjtin fil%s dhe importimi do të rifillojë." -#: import.php:632 +#: import.php:629 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." @@ -599,7 +599,7 @@ msgstr "" "zakonisht do të thotë që phpMyAdmin nuk do të jetë në gjendje të përfundojë " "këtë importim, nëse ju e rrisni kufizimin kohor të php." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - deklaratat janë pasivizuar." @@ -607,17 +607,17 @@ msgstr "\"DROP DATABASE\" - deklaratat janë pasivizuar." msgid "Could not load the progress of the import." msgstr "Nuk mund të ngarkojë progresin e importit." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Prapa" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin Demo Server" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -628,107 +628,107 @@ msgstr "" "mos ndryshoni rrënjën (root), debian-sys-maint dhe përdoruesit pma. Më shumë " "informacion është i vlefshëm në %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Rregullimet e përgjithshme" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Ndrysho fjalëkalimin" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Përshtatja e lidhjes me serverin" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Rregullimet e pamjes" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Më shumë konfigurime" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Serveri i databazës" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Serveri:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Tipi i serverit:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Versioni i serverit:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Versioni i protokollit:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Përdoruesi:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Seti i karaktereve të serverit:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Ueb server" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Versioni klient i databazës:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "Zgjerimi PHP:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "Versioni PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Informacion mbi versionin:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacioni" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Webfaqja zyrtare" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Kontributi" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Merr mbështetje" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista e ndryshimeve" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Liçensa" -#: index.php:443 +#: index.php:444 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 " @@ -739,7 +739,7 @@ msgstr "" "është në gjendje të ndajë vargjet si duhet dhe kjo mund të rezultojë në " "rezultate të papritura." -#: index.php:458 +#: index.php:459 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." @@ -748,7 +748,7 @@ msgstr "" "kësaj, disa tipare të tilla si raportimi gabim ose kontrolli i versionit " "janë pasifizuar." -#: index.php:473 +#: index.php:474 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 " @@ -761,7 +761,7 @@ msgstr "" "shkak të kësaj, hyrja juaj mund të përfundojë më shpejt se është konfiguruar " "në phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -770,17 +770,17 @@ msgstr "" "gatimit të konfiguruar në phpMyAdmin, sepse prej kësaj, hyrja juaj do të " "skadojë më shpejt sesa është konfiguruar në phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Fili i konfigurimit ka nevojë tani për një frazë kalimi sekrete " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -793,7 +793,7 @@ msgstr "" "tuaj mund të rrezikohet nga njerëz të paautorizuar që mund të shkarkojnë " "konfigurimin tuaj." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -802,14 +802,14 @@ msgstr "" "Ruajtja e konfigurimit phpMyAdmin nuk është konfiguruar plotësisht, disa " "tipare të zgjeruara janë pasivizuar. %sGjej arsyen pse%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ose në mënyrë alternative, shko në tabelorin 'Veprime', të ndonjë databaze " "dhe vendosi atje." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -818,7 +818,7 @@ msgstr "" "Versioni i librarisë së PHP MySQL %s ndryshon nga versioni i MySQL server " "%s. Kjo mund të shkaktojë sjellje të paparashikuara." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -988,7 +988,7 @@ msgid "Save & close" msgstr "Ruaj & mbyll" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Rivendos" @@ -1020,7 +1020,7 @@ msgstr "Shto indeks" msgid "Edit index" msgstr "Korrigjo indeksin" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Shto %s kolonë(a) tek indeksi" @@ -1045,10 +1045,10 @@ msgstr "Ju lutem zgjedh kolonën(at) për indeksin." msgid "You have to add at least one column." msgstr "Keni shtuar së paku një kolonë." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Paraqit SQL" @@ -1060,7 +1060,7 @@ msgstr "Simulo pyetsor" msgid "Matched rows:" msgstr "Radhët që përkojnë:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL pyetsor:" @@ -1077,13 +1077,13 @@ msgstr "Emri host (pritësit) është i zbrazët!" msgid "The user name is empty!" msgstr "Emri i përdoruesit është i zbrazët!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Fjalëkalimi është i zbrazët!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Fjalëkalimet nuk janë të njëjtë!" @@ -1091,8 +1091,8 @@ msgstr "Fjalëkalimet nuk janë të njëjtë!" msgid "Removing Selected Users" msgstr "Largon përdoruesit e zgjedhur" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Mbyll" @@ -1114,19 +1114,19 @@ msgstr "Shablloni është fshirë." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Tjetër" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1232,40 +1232,40 @@ msgid "Processes" msgstr "Proçeset" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1283,7 +1283,7 @@ msgstr "Pyetjet" msgid "Traffic" msgstr "Trafiku" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Konfigurimet" @@ -1297,16 +1297,16 @@ msgid "Please add at least one variable to the series!" msgstr "Ju lutem, shtoni së paku një variabël në seri!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Asnjë" @@ -1507,20 +1507,20 @@ msgstr "Analizon…" msgid "Explain output" msgstr "Sqaro rezultatin" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Statusi" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Koha" @@ -1610,10 +1610,10 @@ msgstr "" "Rivendosje në konfig standard…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importi" @@ -1686,7 +1686,7 @@ msgstr "Nuk gjenden parametra!" msgid "Cancel" msgstr "Anulo" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Rregullimet faqe-relevante" @@ -1726,8 +1726,8 @@ msgid "Error text: %s" msgstr "Teksti gabim: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nuk janë zgjedhur databaza." @@ -1765,7 +1765,7 @@ msgstr "Kopjon databazën" msgid "Changing charset" msgstr "Ndryshon setin e karaktereve" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Aftëso kontrollet e çelësave të huaj" @@ -1793,74 +1793,79 @@ msgstr "Shfleton" msgid "Deleting" msgstr "Fshin" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Fshij përkimet për tabelën %s?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Përkufizimi i një funksioni të ruajtur duhet të përmbajë një deklaratë " "RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Eksporti" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "Editori ENUM/SET (num/vendos)" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Vlerat për kolonat %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Vlerat për kolonën e re" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Fut secilën vlerë në një fushë të ndarë." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Shto %d vlerë(a)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Shënim: Nëse fili përmban tabela të shumëfishta, ato do të kombinohen në një." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Fsheh kutinë e pyetsorit" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Shfaq kutinë e pyetsorit" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1868,53 +1873,53 @@ msgstr "Shfaq kutinë e pyetsorit" msgid "Edit" msgstr "Korrigjo" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Fshij" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d nuk është numër i vlefshëm radhe." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Shfleto vlerat e huaja" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Nuk ka pyetsor auto-ruaj" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Variabli %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Zgjedh" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Zgjedhësi i kolonës" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Kërko këtë listë" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1923,15 +1928,15 @@ msgstr "" "Nuk ka kolona në listën qendrore. Sigurohu që lista Qendrore e kolonave për " "databazën %s ka kolona, të cilat nuk janë të pranishme në tabelën e aktuale." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Shiko më shumë" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "A jeni i sigurtë?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1939,51 +1944,51 @@ msgstr "" "Ky veprim mund të ndryshojë disa nga përkufizimet e kolonave.
Jeni i " "sigurtë, qe doni te vazhdoni?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Vazhdo" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Shto çelës primar" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Çelësi primar u shtua." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Po kalon në hapin tjetër…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Hapi i parë i normalizimit është i plotë për tabelën '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Fundi i hapit" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Hapi i dytë i normalizimit (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "U krye" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Konfirmo varësitë e pjesëshme" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Varësitë e pjesëshme të zgjedhura janë si vijon:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1991,19 +1996,19 @@ msgstr "" "Shënim: a, b -> d,f implikon vlerat e kolonave a dhe b të kombinuara së " "bashku, mund të përcaktojnë vlerat e kolonës d dhe kolonës f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Nuk janë zgjedhur varësi të pjesëshme!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Shfaq varësitë e mundshme të pjesëshme në bazë të të dhënave në tabelë" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Fsheh listën e varësisë së pjesëshme" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2011,185 +2016,185 @@ msgstr "" "Trego durim! Mund të marrë disa sekonda, në varësi të madhësisë së të " "dhënave dhe numrit të kolonave të tabelës." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Hapi" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Veprimet që vijojnë do të kryhen:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP (hedh) kolonat %s nga tabela %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Krijo tabelën që vijon" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Hapi i tretë i normalizimit (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Konfirmo varësitë kalimtare" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Varësitë e zgjedhura janë si vijon:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Nuk janë zgjedhur varësi!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Ruaj" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Fsheh kriteret e kërkimit" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Shfaq kriteret e kërkimit" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Kërkim i vargut" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Maksimumi i kolonës:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Minimumi i kolonës:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Vlera minimale:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Vlera maksimale:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Fsheh gjetjen dhe zëvendëso kriteret" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Shfaq gjej dhe zëvendëso kriteret" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Secila pikë paraqet një radhë të dhënash." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" "Vendosja e treguesit të miut sipër një pike do të shfaqë etiketën e saj." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Për ta zvogëluar, kap një zgjedhje nga subjekti me treguesin e miut." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Kliko butonin rivendos dimensionimin (zoom), për t'u kthyer në gjendjen " "origjinale." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliko një pikë të të dhënave për të parë dhe ndoshta korrigjuar radhën e të " "dhënave." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Komploti mund të ndryshojë madhësi, duke u zvarritur përgjatë qoshes së " "djathtë në fund." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Zgjedh dy kolona" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Zgjedh dy kolona të ndryshme" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Përmbajtja e pikës së të dhënave" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Injoro" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopjo" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Pikë" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Vargu i linjës" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Gjeometri" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Brenda rrethit" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Rrethi i jashtëm" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Doni të kopjoni çelësin e kriptimit?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Çelësi i kriptimit" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2197,24 +2202,24 @@ msgstr "" "Tregon se keni bërë ndryshime në këtë faqe; do të nxiteni për konfirmim para " "braktisjes së ndryshimeve" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Zgjedh çelësin e referencës" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Zgjedh çelësin e huaj" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Ju lutem, zgjedh çelësin primar ose një çelës unik!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Zgjedh kolonën për të shfaqur" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2222,76 +2227,76 @@ msgstr "" "Nuk i keni ruajtur ndryshimet e faqosjes (layout). Do të humbin, nëse nuk i " "ruani ato. Doni të vazhdoni?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Emri i faqes" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Ruaj faqen" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Ruaj faqen si" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Hap faqe" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Fshij faqen" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Pa titull" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Ju lutem, zgjedh një faqe për të vazhduar" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Ju lutem, fut një emër të vlefshëm faqeje" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "A doni të ruani ndryshimet në faqen aktuale?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Faqja u fshi me sukses" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Eksporto skemën relacionale" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Modifikimet janë ruajtur" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Shto një opsion për kolonë \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objekt(e) u krijuan." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Dërgo" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Shtyp Esc (ik) për të anulluar korrigjimin." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2299,15 +2304,15 @@ msgstr "" "Keni ndryshuar disa të dhëna dhe ato nuk janë ruajtur. Jeni i sigurtë, qe " "doni të largoheni nga kjo faqe, para se të ruani të dhënat?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Tërhiq dhe rirendit." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Kliko të klasifikoni rezultatet sipas kësaj kolone." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2317,27 +2322,27 @@ msgstr "" "bashkuar ASC/DESC.
- Ctrl+klikim ose Alt+klikim (Mac: Shift+Option" "+klikim), për të larguar kolonën nga klauzola ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Kliko për të shënjuar/mos-shënjuar." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Kliko dyfish për të kopjuar emrin e kolonës." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Kliko shigjetën lësho-poshtë
për të shkëmbyer shikueshmërinë e kolonës." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Shfaq të gjitha" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2346,13 +2351,13 @@ msgstr "" "korrigjim rrjetë, kuti kontrolli, Korrigjo, Kopjo dhe Fshij mund të mos " "punojnë pas ruajtjes." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Ju lutem, fut një varg të vlefshëm hekzadecimal. Karakteret e vlefshme janë " "0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2360,104 +2365,104 @@ msgstr "" "Doni me të vërtetë t'i shikoni të gjitha radhët? Për një tabelë të madhe, " "kjo mund të dështojë shfletuesin." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Gjatësi origjinale" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "anulo" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortuar" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Sukses" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importo statusin" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Lësho filet këtu" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Zgjedh databazën së pari" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Printo" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Mund të korrigjoni vlerat më të shumta
duke klikuar dyfish direkt mbi " "to." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Mund të korrigjoni vlerat më të shumta
duke klikuar direkt mbi to." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Shko tek lidhja:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopjo emrin e kolonës." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Kliko me tastin e djathtë të miut emrin e kolonës për ta kopjuar atë në " "bordin e klipeve." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Gjenero fjalëkalimin" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Gjenero" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Më shumë" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Shfaq panelin" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Fsheh panelin" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Shfaq njësitë e fshehta të pemës së navigimit." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Lidh me panelin kryesor" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Moslidh nga paneli kryesor" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Faqja e kërkuar nuk gjendet në histori, ajo mund të ketë skaduar." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2467,27 +2472,27 @@ msgstr "" "aktualizimin. Versioni më i ri është %s, lëshuar më %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", versioni i fundit stabil:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "aktual" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Krijo pamje" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2495,15 +2500,15 @@ msgstr "" "Një gabim fatal ka ndodhur në JavaScript. Dëshironi të dërgoni një raport " "gabimi?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Ndrysho rregullimet e raportit" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Shfaq detajet e raportit" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2511,7 +2516,7 @@ msgstr "" "Eksporti juaj është jo i plotë, për shkak të ekzekutimit të ulët të " "kufizimit kohor në nivel të PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2521,60 +2526,60 @@ msgstr "" "dorëzimin, disa nga fushat mund të injorohen, për shkak të konfigurimit PHP " "max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Disa gabime janë zbuluar në server!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Ju lutem shiko në fund të kësaj dritareje." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Injoro të gjitha" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Si per rregullimet tuaja, ata janë duke u dërguar aktualisht, ju lutem " "tregoni durim." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Ekzekuto përsëri këtë pyetsor?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Doni me të vërtetë të fshini këtë faqeruajtës?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Disa gabime knë ndodhur, ndërsa merr informacion për SQL debug." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s pyetsorë të ekzekutuar %s herë në %s sekonda." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(e) kaluan" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Shfaq argumentet" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Fsheh argumentet" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Koha që ka marrë:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2589,349 +2594,369 @@ msgstr "" "tillë, pastrimi i \"Offline Website Data\" mund të ndihmojë. Në Safari, " "probleme të tilla zakonisht shkaktohen nga \"Private Mode Browsing\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Kopjo tabelat në" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Shto prefiks tabele" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Zëvendëso tabelën me prefiksin" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopjo tabelën me prefiks" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Para" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Tjetër" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Sot" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Janar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Shkurt" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Mars" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Prill" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maj" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "June" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Korrik" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Gusht" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Shtator" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Tetor" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Nëntor" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Dhjetor" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Gus" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dhj" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Dielë" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "E hënë" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "E martë" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "E mërkurë" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "E enjte" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "E premte" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "E shtunë" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Die" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Hë" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Më" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Sh" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalendar-muaj-vit" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "asnjë" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Orë" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minutë" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Dytësor" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Kjo fushë kërkohet" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Ju lutem, fiksoje këtë fushë" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Ju lutem, fut një adresë të vlefshme email" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Ju lutem, fut një URL të vlefshme" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Ju lutem, fut një datë të vlefshme" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Ju lutem, fut një datë të vlefshme ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Ju lutem, fut një numër të vlefshëm" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Ju lutem, fut një numër të vlefshëm karte krediti" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Ju lutem, fut vetëm numra" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Ju lutem, fut të njëjtën vlerë përsëri" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Ju lutem, mos fut më shumë se {0} karaktere" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Ju lutem, fut së paku {0} karaktere" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ju lutem, fut një vlerë të gjatë ndërmjet {0} dhe {1} karaktere" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Ju lutem, fut një vlerë ndërmjet {0} dhe {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Ju lutem, fut një vlerë më të vogël ose të barabartë me {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Ju lutem, fut një vlerë më të madhe ose të barabartë me {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Ju lutem, fut një datë ose kohë të vlefshme" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Ju lutem, fut një hyrje HEX të vlefshëm" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Gabim" @@ -2995,20 +3020,20 @@ msgid "Charset" msgstr "Set karakteresh" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Përshtatja" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binar" @@ -3203,7 +3228,7 @@ msgid "Czech-Slovak" msgstr "Çeko-Sllovakisht" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "e panjohur" @@ -3257,26 +3282,26 @@ msgstr "" msgid "Font size" msgstr "Madhësia e shkrimit" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Shfaq %1$d faqeruajtës (të dyja, private dhe të ndara)" msgstr[1] "Shfaq %1$d faqeruajtës (të dyja, private dhe të ndara)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Jo faqeruajtës" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Pyetsori konsole SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Dështoi në vendosjen e lidhjes së konfigurimit të krahasuar!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3284,25 +3309,25 @@ msgstr "" "Serveri nuk përgjigjet (ose foleja e serverit lokal nuk është konfiguruar " "saktë)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Serveri nuk përgjigjet." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Ju lutem, kontrollo privilegjet e drejtorisë që përmban databazën." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detajet…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Parametri që mungon:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Lidhja për përdoruesin e kontrollit, siç përcaktohet në konfigurimin tuaj " @@ -3398,110 +3423,105 @@ msgstr "Fut:" msgid "Del:" msgstr "Fshij:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL pyetsori në databazë %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Dërgo pyetsor" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Kërkim i ruajtur faqeruajtësish:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Faqeruajtës i ri" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Krijo faqeruajtës" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Aktualizo faqeruajtësin" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Fshij faqeruajtësin" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "të paktën një nga fjalët" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "të gjitha fjalët" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "fraza e saktë" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "si shprehje e rregullt" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Kërko rezultatet për \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Gjithsejt: %s përkim" msgstr[1] "Gjithsejt: %s përkime" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s përkim në %2$s" msgstr[1] "%1$s përkime në %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Shfleto" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Fshij përkimet për tabelën %s?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Kërko në databazë" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Fjalët ose vlertat për të cilat kërkoni (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Gjej:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Fjalët ndahen me një karakter hapësire (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Tabelat e brendshme:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Mos-zgjedh të gjitha" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Kolona e brendshme:" @@ -3521,30 +3541,30 @@ msgstr "Radhët e filterit" msgid "Search this table" msgstr "Kërko këtë tabelë" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Fillo" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Përpara" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Tjetër" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Fund" @@ -3553,7 +3573,7 @@ msgstr "Fund" msgid "All" msgstr "Të gjithë" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Numri i radhëve:" @@ -3562,8 +3582,8 @@ msgstr "Numri i radhëve:" msgid "Sort by key" msgstr "Klasifiko sipas çelësit" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3585,10 +3605,10 @@ msgstr "Klasifiko sipas çelësit" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opsionet" @@ -3628,29 +3648,29 @@ msgstr "Tekst i mirënjohur" msgid "Well Known Binary" msgstr "Binare e mirënjohur" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Radha është fshirë." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Vrit" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Mund të jetë me afërsi. Shiko [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Pyetsori juaj SQL është ekzekutuar me sukses." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3659,73 +3679,73 @@ msgstr "" "Kjo pamje ka të paktën këtë numër të radhëve. Ju lutem, refero " "%sdokumentacionin%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Shfaqën radhët %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d gjithsejt, %2$d në pyetsor" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d gjithsejt" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Pyetsori mori %01.4f sekonda." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Me të zgjedhur:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Shënjo të gjitha" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopjo në clipboard" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Veprimet e rezultatit të pyetsorit" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Shfaq grafikun" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Vizualizo të dhënat GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Lidhja nuk gjendet!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Asnjë" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konverto në Kana" @@ -3733,23 +3753,23 @@ msgstr "Konverto në Kana" msgid "Too many error messages, some are not displayed." msgstr "Shumë mesazhe gabimi, disa nuk shfaqen." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Raporto" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Dërgo automatikisht raportin herën tjetër" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Fili nuk ishte një fil i ngarkuar." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Fili i ngarkuar e tejkalon direktivën upload_max_filesize në php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3757,48 +3777,48 @@ msgstr "" "Fili i ngarkuar e tejkalon direktivën MAX_FILE_SIZE, që është specifikuar në " "formularin HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Fili i ngarkuar së fundi u ngarkua vetëm pjesërisht." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Mungon dosja e përkohëshme." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Dështoi në shkrimin e filit në disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Ngarkimi i filit u ndal nga zgjerimi." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Gabim i panjohur në ngarkimin e filit." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Fili nuk mund të lexohej!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Gabim në lëvizjen e filit të ngarkuar, shiko [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Gabim gjatë lëvizjes së fileve të ngarkuara." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Nuk mund të lexojë filin e ngarkuar." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3807,28 +3827,28 @@ msgstr "" "U munduat të ngarkoni filin me kompresim të pambështetur (%s). Mbështetja " "për të nuk zbatohet, ose është pasivizuar nga konfigurimi juaj." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Aktualisht ekzekuton rishikimin Git %1$s nga %2$s degë." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git mungon informacioni!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Hap një dritare të re phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Shfaq printimin" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Kliko mbi shirit për të lëvizur në krye të faqes" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript duhet të aftësohet për të kaluar këtë pikë!" @@ -3837,20 +3857,20 @@ msgid "No index defined!" msgstr "Nuk është përcaktuar indeksi!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indekset" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3860,59 +3880,59 @@ msgstr "Indekset" msgid "Action" msgstr "Veprimi" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Emri i çelësit" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Paketuar" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinaliteti" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komenti" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Çelësi primar është fshirë." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeksi %s është fshirë." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Fshij" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3921,19 +3941,19 @@ msgstr "" "Indekset %1$s dhe %2$s duket se janë të barabarta dhe një prej tyre mund të " "hiqet." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Numri i faqes:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Injoron kodin e gjuhës së pambuluar." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Gjuha" @@ -3959,11 +3979,11 @@ msgstr "Serveri" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3982,14 +4002,15 @@ msgid "View" msgstr "Shfaq" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3998,8 +4019,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4007,45 +4028,45 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Kërko" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Fut" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegjet" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Veprime" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Gjurmim" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4061,16 +4082,16 @@ msgstr "Shkrehësit" msgid "Database seems to be empty!" msgstr "Databaza duket se është e zbrazët!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Pyetsori" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutinat" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4078,20 +4099,20 @@ msgstr "Rutinat" msgid "Events" msgstr "Ngjarjet" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Kolonat qendrore" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databazat" @@ -4100,53 +4121,53 @@ msgid "User accounts" msgstr "Llogaritë e përdoruesve" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Regjistër (log) binar" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikimi" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variablat" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Karakteret" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Makinat" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Shtojcat (plugins)" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d radhë e ndikuar." msgstr[1] "%1$d radhë të ndikuara." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d radhë e fshirë." msgstr[1] "%1$d radhë të fshira." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4194,27 +4215,27 @@ msgstr "Tabelat e preferuara" msgid "Favorites" msgstr "Preferencat" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Ju lutem, siguro një emër për këtë kërkim të faqeruajtësit." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Mungon informacioni për ruajtjen e kërkimit të faqeruajtësit." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Një hyrje me këtë emër ekziston ndërkohë." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Informacioni që mungon të fshini kërkimin." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Mungon informacioni për ngarkimin e kërkimit." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Gabim gjatë ngarkimit të kërkimit." @@ -4276,7 +4297,7 @@ msgstr "Shfaq tabelat e hapura" msgid "Show slave hosts" msgstr "Shfaq pritësit (hosts) skllavë" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Shfaq statusin master" @@ -4330,70 +4351,70 @@ msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuta" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Nuk ka informacion të detajuar statusi të vlefshëm për këtë motor ruajtje." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s është makina e parazgjedhur e ruajtjes në këtë MySQL server." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s është i vlefshëm në këtë MySQL server." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s është pasivizuar për këtë MySQL server." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ky MySQL server nuk e mbështet motorin e ruajtjes %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Status i panjohur tabele:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Databaza e burimit `%s` nuk gjendet!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Databaza e objektivit `%s` nuk u gjend!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Databazë e pavlefshme:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Emër tabele i pavlefshëm:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Dështoi në riemërimin e tabelës %1$s në %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s është riemëruar në %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Nuk mund të ruajë tabelën e preferencave UI!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4402,7 +4423,7 @@ msgstr "" "Dështoi në pastrimin e tabelës së preferencave UI (shiko $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4413,19 +4434,19 @@ msgstr "" "qëndrueshme, pasi ju ta rifreskoni këtë faqe. Ju lutem, kontrollo nëse " "struktura e tabelës ka ndryshuar." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Emri i çelësit primar duhet të jetë \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "uk mund ta riemërojë indeksin tek PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Nuk janë përcaktuar pjesë të indeksit!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4751,7 +4772,7 @@ msgid "Date and time" msgstr "Data dhe ora" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Varg (string)" @@ -4766,126 +4787,126 @@ msgstr "Spacial (hapësinor)" msgid "Max: %s%s" msgstr "Maks: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Analizat statike:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d gabime u gjendën gjatë analizave." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL tha: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Sqaro SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Shmang sqarimin SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analizo sqarimin në %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Pa kod PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Dërgo pyetsor" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Krijo kodin PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Rifresko" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilon" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Korrigjo në linjë" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Die" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y në %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Parametri që mungon:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Hidhu tek databaza \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksionaliteti %s është ndikuar nga një defekt i njohur, shiko %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Shfleto kompjuterin:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zgjedh nga drejtoria e ngarkimit %s të ueb serverit:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Dosja që keni zgjedhur për ngarkim nuk mund të arrihet." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Nuk ka file për ngarkim!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Zbraz" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Ekzekuto" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Përdoruesit" @@ -4899,7 +4920,7 @@ msgstr "për minutë" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "për orë" @@ -4907,12 +4928,12 @@ msgstr "për orë" msgid "per day" msgstr "për ditë" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Kërko:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4920,7 +4941,7 @@ msgstr "Kërko:" msgid "Description" msgstr "Përshkrimi" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Përdor këtë vlerë" @@ -4961,22 +4982,22 @@ msgstr "PO" msgid "NO" msgstr "JO" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Emri" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Gjatësia/Vlerat" @@ -4985,7 +5006,7 @@ msgstr "Gjatësia/Vlerat" msgid "Attribute" msgstr "Atributi" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -5002,11 +5023,11 @@ msgstr "Shto kolonë" msgid "Select a column." msgstr "Zgjedh një kolonë." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Shto kolonë të re" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5014,7 +5035,7 @@ msgstr "Shto kolonë të re" msgid "Attributes" msgstr "Atributet" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5024,28 +5045,28 @@ msgstr "" "është jokompatibël me phpMyAdmin dhe mund të shkaktojë disa të dhëna, që të " "korruptohen!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Indeks serveri i pavlefshëm: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Emër pritësi (host) i pavlefshëm për serverin %1$s. Ju lutem, rishiko " "konfigurimin." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Serveri %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Metodë e pavlefshme autentifikimi e vendosur në konfigurim:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5057,20 +5078,20 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin përdor aktualisht zonën kohore të " "parazgjedhur të serverit të databazës." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të aktualizoni tek %s %s ose më lart." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Gabim: mospërputhje e shenjave" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS përpjekje mbishkrimi" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "e mundur të shfrytëzohet" @@ -5680,7 +5701,7 @@ msgid "Compress on the fly" msgstr "Kompreso në fluturim" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Fili i konfigurimit" @@ -5789,12 +5810,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Koha maksimale e ekzekutimit" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Shto deklaratën %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Ruaj si fil" @@ -5804,7 +5825,7 @@ msgstr "Seti i karaktereve të filit" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Formati" @@ -5929,7 +5950,7 @@ msgid "Save on server" msgstr "Ruaj në server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Mbishkruaj filin(et) ekzistues" @@ -5942,7 +5963,7 @@ msgid "Remember file name template" msgstr "Kujto modelin e emrit të filit" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerën AUTO_INCREMENT" @@ -5952,7 +5973,7 @@ msgstr "" "Bashkëngjitni emrat e tabelave dhe kolonave me prapacitate (backquotes)" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL mënyrë e përshtatshme" @@ -5982,7 +6003,7 @@ msgstr "Eksporti i metadata të lidhura nga ruajtja e konfigurimit phpMyAdmin" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Shto %s" @@ -6155,7 +6176,7 @@ msgid "Customize the navigation tree." msgstr "Përshtat pemën e navigimit." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serverat" @@ -7058,7 +7079,7 @@ msgstr "Fusha HTTP" msgid "Authentication method to use." msgstr "Metoda e autentifikimit që përdoret." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Tipi i autentifikimit" @@ -7808,7 +7829,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Aftëso tabelorin Zhvilluesi tek rregullimet" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Kontrollo për versionin e fundit" @@ -7817,10 +7838,10 @@ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Aftëson kontrollin për versionin e fundit në faqen kryesore phpMyAdmin." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Kontroll i versionit" @@ -7966,24 +7987,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "HapDokument Tekst" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Lista e preferencave është e mbushur!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s është zbrazur." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Paraqitja %s është fshirë." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabela %s është fshirë." @@ -7997,12 +8018,12 @@ msgid "Position" msgstr "Pozicioni" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Tipi i ngjarjes" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID e serverit" @@ -8011,7 +8032,7 @@ msgid "Original position" msgstr "Pozicioni origjinal" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informacioni" @@ -8025,42 +8046,42 @@ msgstr "Cungo pyetsorët e shfaqur" msgid "Show Full Queries" msgstr "Shfaq pyetsorët e plotë" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Nuk ka databaza" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Databaza %1$s është krijuar." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databaza është fshirë me sukses." msgstr[1] "%1$d databazat janë fshirë me sukses." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Radhët" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Gjithsejt" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Ngarkesa" @@ -8087,34 +8108,34 @@ msgstr "" msgid "Enable statistics" msgstr "Aftëso statistikat" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Nuk ka privilegje të mjaftueshme për të shfaqur variablat e serverit dhe " "rregullimet. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Vendosja e variablit dështoi" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Nuk është vendosur pyetsor SQL për të kapur të dhëna." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Nuk ka kolona numerike të prezantuara në tabelën e komplotit." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Nuk ka të dhëna për të shfaqur" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabela %1$s është alternuar me sukses." @@ -8157,7 +8178,7 @@ msgstr "Kolonat kanë lëvizur me sukses." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Gabim pyetsori" @@ -8174,12 +8195,12 @@ msgstr "Ndrysho" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeksi" @@ -8200,13 +8221,13 @@ msgstr "Tekst i plotë" msgid "Distinct values" msgstr "Vlerat e dallueshme" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Zgjerimi %s mungon. Ju lutem, kontrollo konfigurimin tuaj PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nuk ka ndryshime" @@ -8229,31 +8250,35 @@ msgstr "" "Nuk mund te ngarkohen shtojcat e skemës, ju lutem kontrollo instalimin tuaj!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nuk ka fjalëkalim" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Fjalëkalimi:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Ri-shkruaj:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Ngatërrimi i fjalëkalimit:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8263,83 +8288,83 @@ msgstr "" "pakriptuar, që kripton fjalëkalimet me anë të RSA
'; ndërsa lidhet me " "serverin." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Eksportimi i databazave nga serveri aktual" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Eksporton tabela nga \"%s\" databaza" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Eksporton radhë nga \"%s\" tabela" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Eksporto shabllonet:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Shabllon i ri:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Emri i shabllonit" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Krijo" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Shabllonet ekzistuese:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Shablloni:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Aktualizo" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Zgjedh një shabllon" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Metoda e eksportit:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Shpejt - shfaq vetëm opsionet minimale" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Përshtat - shfaq të gjitha opsionet e mundshme" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Databazat:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabelat:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Formati:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opsionet specifike të formatit:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8347,52 +8372,52 @@ msgstr "" "Rrëshqit poshtë për të mbushur opsionet për formatin e zgjedhur dhe injoro " "opsionet për formatet e tjera." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Konvertimi i kodimit:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Radhët:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Zbraz disa radhë" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Radha fillon në:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Zbraz të gjitha radhët" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Rezultat:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Ruaj në server në drejtorinë %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Modeli i emrit të filit:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ - do të bëhet emri i serverit" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ - do të bëhet emri i databazës" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ - do të bëhet emri i tabelës" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8404,100 +8429,100 @@ msgstr "" "vijojnë mund të ndodhin: %3$s. Teksti tjetër do të mbahet siç është. Shiko " "%4$sFAQ%5$s për detaje." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "përdore këtë për eksporte në të ardhmen" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Seti i karaktereve të filit:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Kompresim:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zipuar" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzipuar" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Shfaq rezultatin si tekst" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Eksporto databazat si file të ndara" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Eksporto tabelat si file të ndara" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Riemëro databazat/tabelat/kolonat e eksportuara" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Ruaj rezultatin në një fil" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Shmang tabelat më të mëdha se" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Zgjedh një databazë" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Zgjedh tabelë" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Emër i ri databaze" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Emër i ri tabele" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Emër i vjetër kolone" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Emri i ri i kolonës" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nuk mund të ngarkojë shtojcat e eksportit, ju lutem kontrollo instalimin " "tuaj!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s nga dega %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "nuk ka degë" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git rishikimi:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "kryer në %1$s nga %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "autori në %1$s nga %2$s" @@ -8960,13 +8985,13 @@ msgstr "" "Dokumentacioni dhe informacioni i mëtejshëm rreth PBXT mund të gjendet në " "%sUebfaqen PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Hapësirë e pamjaftueshme për të ruajtur filin %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8974,77 +8999,77 @@ msgstr "" "Fili %s ekziston ndërkohë në server, ndrysho emrin e filit ose kontrollo " "opsionin e mbishkrimit." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Ueb serveri nuk ka lejimet e duhura për të ruajtur filin %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Zbrazja është ruajtur tek fili %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ktheu një set rezultati të zbrazët (psh. zero radhë)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[RIKTHIMI u shfaq.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Strukturat e mëposhtme janë krijuar ose ndryshuar. Këtu ju mund të:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Shfaq një përmbajtje të strukturës duke klikuar mbi emrin e saj." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Ndrysho ndonjë nga rregullimet e saj, duke klikuar lidhjen korresponduese " "\"Options\" (opsionet)." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Korrigjo strukturën duke ndjekur lidhjen \"Structure\" (struktura)." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Shko tek databaza: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Korrigjo rregullimet për %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Shko tek tabela: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktura e %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Shko tek pamja: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Vetëm pyetsorët me tabelë të vetme UPDATE dhe DELETE mund të simulohen." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9057,87 +9082,88 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Krijo një indeks në  %s kolona" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Fsheh" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funksioni" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" "Për arsye të gjatësisë,
kjo kolonë mund të mos jetë e korrigjueshme." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binar - mos korrigjo" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ose" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "drejtoria e ngarkimit në ueb server:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Korrigjo/Fut" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Vazhdo futjen me %s radhë" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "dhe pastaj" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Fut si radhë të re" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Fut si radhë të re dhe injoro gabimet" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Shfaq fut pyetsorin" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Kthehu tek faqja më përpara" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Fut një radhë tjetër" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Kthehu tek kjo faqe" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Korrigjo radhën tjetër" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Përdor tastin TAB (tabelor) për të lëvizur nga një vlerë te tjetra, ose CTRL" "+shigjeta për të lëvizur kudo." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9148,31 +9174,31 @@ msgstr "" msgid "Value" msgstr "Vlera" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Shfaqën pyetsorin SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "ID e radhës së futur: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sukses!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Struktura vetëm" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktura dhe të dhënat" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Vetëm të dhënat" @@ -9181,14 +9207,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Shto vlerën AUTO INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Shto detyrime" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Përshtat privilegjet" @@ -9233,8 +9259,8 @@ msgstr "Proçedurat:" msgid "Views:" msgstr "Shfaqje:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Shfaq" @@ -9280,17 +9306,17 @@ msgid_plural "%s results found" msgstr[0] "%s rezultat është gjetur" msgstr[1] "%s rezultate janë gjetur" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Shtyp për të filtruar këto, Enter për të kërkuar të gjitha" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Pastro filtrin e shpejtë" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Ngushto të gjitha" @@ -9305,7 +9331,7 @@ msgstr "Emër i pavlefshëm klase \"%1$s\", përdor standardin e \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Nuk mund të ngarkojë class \"%1$s 1\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Zgjero/Ngushto" @@ -9324,7 +9350,7 @@ msgstr "E re" msgid "Database operations" msgstr "Veprimet e databazës" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Shfaq njësitë e fshehta" @@ -9427,11 +9453,11 @@ msgstr "" "Zgjedh një kolonë, që mund të ndahet në më shumë se një (me zgjedhjen e 'nuk " "ka kolonë të tillë', kjo do të lëvizë në hapin tjetër)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Zgjedh një…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Jo kolonë të tillë" @@ -9710,8 +9736,8 @@ msgid "Rename database to" msgstr "Riemëro databazën në" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9757,177 +9783,177 @@ msgstr "(vetëm)" msgid "Move table to (database.table)" msgstr "Lëviz tabelën tek (databaza.tabela)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Riemëro tabelën në" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentet e tabelës" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opsionet e tabelës" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Makinat e ruajtjes" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Ndrysho të gjitha kolonat e sistemit" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopjo tabelën tek (databaza.tabela)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Kalo tek tabela e kopjuar" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Mirëmbajta e tabelës" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Tabela e analizës" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Kontrollo tabelën" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Tabela e kontrollshumës" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Tabela e defragmentimit" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s është pastruar." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Zbraz tabelën (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizo tabelë" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Riparo tabelën" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Fshij të dhënat ose tabelat" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Zbraz tabelën (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Fshij tabelën (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analizë" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Kontrollo" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimizo" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Rindërto" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Riparo" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Cungo" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Bashko" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Mirëmbajtja e pjesës" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Pjesa %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Largo particionimin" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Kontrollo integritetin referencial:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Nuk mund t'i lëvizë tabelat tek vetvetja!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Nuk mund ta kopjojë tabelën tek vetvetja!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s ka lëvizur tek %s. Privilegjet janë përshtatur." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s është kopjuar tek %s. Privilegjet janë përshtatur." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s ka lëvizur tek %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s është kopjuar tek %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Emri i tabelës është i zbrazët!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Ky format nuk ka opsione" @@ -9954,18 +9980,18 @@ msgstr "Shfaq ngjyrën" msgid "Only show keys" msgstr "Vetëm shfaq çelësat" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Nuk mund lidhet: rregullime të pavlefshme." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Mirësevjen në %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9974,7 +10000,7 @@ msgstr "" "Ndoshta nuk keni krijuar një fil konfigurimi. Mund të doni të përdorni " "%1$sskriptin e instalimit%2$s për ta krijuar atë." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9986,7 +10012,7 @@ msgstr "" "fjalëkalimin në konfigurimin tuaj dhe të siguroheni që ato korrespondojnë me " "informacionin e dhënë nga administratori i MySQL server." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Riprovo të lidhesh" @@ -10013,15 +10039,15 @@ msgstr "Emri i përdoruesit:" msgid "Server Choice:" msgstr "Zgjedhja e serverit:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Captcha e futur është gabim, provo përsëri!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Ju lutem, fut një captcha të saktë!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Nuk lejoheni të hyni në këtë server MySQL!" @@ -10083,7 +10109,7 @@ msgstr "Opsionet e heqjes (dump) së të dhënave" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Zbraz të dhënat për tabelën" @@ -10092,7 +10118,7 @@ msgstr "Zbraz të dhënat për tabelën" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Ngjarje" @@ -10100,8 +10126,8 @@ msgstr "Ngjarje" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Përkufizimi" @@ -10187,7 +10213,7 @@ msgstr "Vendos emrat e kolonave në radhë të parë:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Pritësi (host):" @@ -10721,7 +10747,7 @@ msgstr "Tabela e përmajtjes" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -11105,11 +11131,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Ri-hyj në phpMyAdmin, për të ngarkuar filin e aktualizuar të konfigurimit." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "nuk ka përshkrim" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11119,7 +11145,7 @@ msgstr "" "'phpmyadmin'. Ju mund të shkoni në tabelorin 'Veprimet' të çdo databaze, " "për të rregulluar ruajtjen e konfigurimit phpMyAdmin atje." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11128,39 +11154,39 @@ msgstr "" "%sKrijo%s një databazë me emrin 'phpmyadmin' dhe rregullo ruajtjen e " "konfigurimit të phpMyAdmin atje." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sKrijo%s ruajtjen e konfigurimit phpMyAdmin në databazën aktuale." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sKrijo%s mungon në tabelat e ruajtjes së konfigurimit phpMyAdmin." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Replikimi master" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Ky server është konfiguruar si master në një proces të replikimit." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Shfaq skllavët e lidhur" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Shto përdoruesin e replikimeve skllave" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Konfigurimi master" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11174,19 +11200,19 @@ msgstr "" "zgjidhni të injoroni të gjitha databazat si standard dhe të lejoni të " "replikohen vetëm databazat e caktuara. Ju lutem, zgjedh mënyrën:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Zëvendëso të gjitha databazat; Injoro:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Injoro të gjitha databazat; Repliko:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Ju lutem, zgjedh databazat:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11194,7 +11220,7 @@ msgstr "" "Tani, shto linjat që vijojnë në fund të seksionit [mysqld] në my.cnf tuaj " "dhe ju lutem, rifillo serverin MySQL më pas." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11204,70 +11230,70 @@ msgstr "" "do të shihni një mesazh, që ju informon, se ky server është " "konfiguruar si master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Replikimi skllav (slave)" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Lidhja master:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Rrjedha skllave SQL nuk funksionon!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Rrjedha skllave IO nuk funksionon!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Serveri është konfiguruar si skllav në një proçes replikimi. Doni që të:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Shiko tabelën e statusit të skllavit" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Skllavi i kontrollit:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Fillim i plotë" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Ndalim i plotë" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Rivendos skllavin" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Fillo vetëm rrjedhën SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Ndalo vetëm rrjedhat SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Fillo vetëm rrjedhën IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Ndalo vetëm rrjedhat IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Ndrysho ose rikonfiguro serverin master" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11276,25 +11302,25 @@ msgstr "" "Ky server nuk është konfiguruar si skllav (slave) në një proces të " "replikimit. Doni ta konfiguroni atë?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Menaxhim i gabuar:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Shmangia e gabimeve mund të çojë në master dhe skllavë të pasinkronizuar!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Shmang gabimin aktual" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Shmang %s gabimet e tjera." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11303,11 +11329,11 @@ msgstr "" "Ky server nuk është konfiguruar si master në një proces të replikimit. Doni " "ta konfiguroni atë?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Konfigurimi skllav" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11315,53 +11341,53 @@ msgstr "" "Sigurohu, që të keni server-id unik në filin e konfigurimit (my.cnf). Nëse " "jo, ju lutem, shto linjën që vijon në seksionin [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Emri i përdoruesit:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Emri i përdoruesit" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Fjalëkalimi" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Porta:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Statusi kryesor" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Statusi skllav" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabli" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Hosti (pritësi)" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11369,39 +11395,39 @@ msgstr "" "Vetëm skllavët që fillojnë me opsionin --report-host=host_name janë të " "dukshëm në listë." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Çdo host (pritës)" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokale" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ky host (pritës)" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Çdo përdorues" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Përdor fushën e tekstit:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Përdor tabelën pritëse" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11409,77 +11435,77 @@ msgstr "" "Kur tabela e pritësit (Host) është përdorur, kjo fushë injorohet dhe vlerat " "e ruajtura në tabelën e pritësit (Host) përdoren në vend të tyre." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ri-shkruaj" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Gjenero fjalëkalimin:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replikimi filloi me sukses." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Gabim në fillimin e replikimit." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replikimi ndaloi me sukses." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Gabim në ndalimin e replikimit." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replikimi rivendoset me sukses." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Gabim në rivendosjen e replikimit." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Sukses." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Gabim." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Gabim i panjohur" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Nuk mund të lidhet me master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nuk mund të lexojë pozicionin e regjistrit (log) master. Problem i mundshëm " "privilegjesh në master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Nuk mund të ndryshojë master!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Serveri master ka ndryshuar me sukses në %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11500,7 +11526,7 @@ msgstr "Ngjarja %1$s është modifikuar." msgid "Event %1$s has been created." msgstr "Ngjarja %1$s është krijuar." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11510,75 +11536,75 @@ msgstr "" msgid "Edit event" msgstr "Korrigjo ngjarjen" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detajet" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Emri i ngjarjes" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Ndrysho tek %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Ekzekuto në" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Ekzekuto çdo" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Fillo" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Fund" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Në përfundim ruaj" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Përcaktuesi" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Përcaktuesi duhet të jetë në formatin \"username@hostname\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Duhet të siguroni një emër për ngjarjen!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Duhet të siguroni një vlerë të vlefshme intervali për ngjarjen." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Duhet të siguroni një kohë të vlefshme të ekzekutimit për ngjarjen." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Duhet të siguroni një tip të vlefshëm për ngjarjen." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Duhet të siguroni një përcaktim për ngjarjen." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Gabim në proçesimin e kërkesës:" @@ -11599,7 +11625,7 @@ msgstr "Statusi i ngjarjeve të planifikuara" msgid "The backed up query was:" msgstr "Pyetsori i ruajtur ishte:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Kthimet" @@ -11615,72 +11641,72 @@ msgstr "" "ruajtura mund të dështojë![/strong] Ju lutem, përdor zgjerimin 'mysqli' të " "përmirësuar, për të shmangur ndonjë problem." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Korrigjo rutinën" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tip rutine i pavlefshëm: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Rutina %1$s është krijuar." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Na vjen keq, dështuam në rikthimin e rutinës së fshirë." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Rutina %1$s është modifikuar. Privilegjet janë përshtatur." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutina %1$s është modifikuar." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Emri rutinë" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametrat" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Drejtim" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Shto parametër" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Largo parametrin e fundit" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Tipi i kthimit" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Kthe gjatësinë/verat" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Opsionet e kthimit" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Është përcaktuese" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11688,25 +11714,25 @@ msgstr "" "Nuk keni privilegje të mjaftueshme për të kryer këtë veprim; Ju lutem, " "refero dokumentacionin për më tepër detaje" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tipi i sigurisë" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL hyrje e të dhënave" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Duhet të siguroni një emër rutinë!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Drejtim i pavlefshëm \"%s\" i dhënë për parametrin." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11714,37 +11740,37 @@ msgstr "" "Duhet të siguroni gjatësinë/vlerat për parametrat rutinë të tipit ENUM, SET, " "VARCHAR dhe VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Duhet të siguroni një emër dhe një tip për çdo parametër rutinë." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Duhet të siguroni një tip të vlefshëm të kthimit për rutinën." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Duhet të siguroni një përkufizim rutinë." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Rezultatet e ekzekutimit të rutinës %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 radhë e ndikuar nga deklarata e fundit brenda procedurës." msgstr[1] "%d radhë të ndikuara nga deklarata e fundit brenda procedurës." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Ekzekuto rutinën" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parametrat rutinë" @@ -11766,32 +11792,32 @@ msgstr "Shkrehësi %1$s është krijuar." msgid "Edit trigger" msgstr "Korrigjo shkrehës" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Emri i shkrehësit" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Koha" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Duhet të siguroni një emër shkrehësi!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Duhet të siguroni një kohë të vlefshme për shkrehësin!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Duhet të siguroni një ngjarje të vlefshme për shkrehësin!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Duhet të siguroni një emër tabele të vlefshëm!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Duhet të siguroni një përkufizim të shkrehësit." @@ -11916,92 +11942,92 @@ msgstr "Seti i karaktereve dhe përshtatja" msgid "Databases statistics" msgstr "Statistikat e databazës" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Nuk ka privilegje." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Përfshij të gjitha privilegjet, përveç GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe zëvendësimin e të dhënave." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e databazave dhe tabelave të reja." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Lejon fshirjen e databazave dhe tabelave." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e rregullimeve të serverit dhe rifreskon cachen e serverit." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Lejon fikjen e serverit." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Lejon shfaqjen e proçeseve për të gjithë përdoruesit." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga filet dhe eksportimin e të dhënave në file." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nuk ka efekt në këtë version MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe fshirjen e treguesve (indekseve)." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Jep hyrje tek lista e plotë e databazës." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12011,126 +12037,100 @@ msgstr "" "kërkohet për shumicën e veprimeve të administrimit, si vendosjen e " "variablave globale, apo fshirjen e rrjedhave të përdoruesve të tjerë." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Lejon kyçjen e tabelave për rrjedhën aktuale." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Kërkohet për skllavët e replikimit." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lejon përdoruesin të pyesë se ku janë skllevërit / masterat." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Lejon krijimin e pamjeve të reja." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Lejon për të ngritur ngjarjet për planifikimin e ngjarjeve." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Lejo krijimin dhe fshirjen e shkrehësve." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lejon kryerjen e pyetsorëve SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Lejon krijimin e rutinave të ruajtura." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Lejon ndryshimin dhe fshirjen e rutinave të ruajtura." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lejon krijimin, fshirjen dhe riemërimin e llogarive të përdoruesit." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Lejon ekzekutimin e rutinave të ruajtura." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Asnjë" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Grup përdoruesi" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Nuk kërkon lidhje SSL-të kriptuara." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Kërkon lidhje SSL-të kriptuara." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Kërkon një çertifikatë të vlefshme X509." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Kërkon të përdoret një metodë specifike shifrore për një lidhje." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Kërkon të paraqitet një çertifikatë e vlefshme X509 e lëshuar nga kjo CA." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Kërkon të paraqitet një çertifikatë e vlefshme X509 me këtë temë." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Kufizimet e burimeve" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Shënim: Vendosja e këtyre opsioneve në 0 (zero) largon kufizimin." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kufizon numrin e pyetsorëve, që përdoruesi mund të dërgojë në server për orë." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12138,116 +12138,111 @@ msgstr "" "Kufizo numrin e komandave që ndryshojnë çdo tabelë ose databazë, që " "përdoruesi mund të ekzekutojë për orë." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Kufizon numrin e lidhjeve të reja, që përdoruesi mund të hapë për orë." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kufizon numrin e lidhjeve të njëkohëshme, që përdoruesi mund të ketë." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Lejon ndryshimin dhe fshirjen e kësaj rutine." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Lejon ekzekutimin e kësaj rutine." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegjet specifike të tabelës" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Shënim: emrat e privilegjeve të MySQL janë shprehur në Anglisht." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administrimi" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Privilegje globale" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Globale" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilegjet specifike të databazës" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Lejon fshirjen e tabelave." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lejo të shtosh përdorues dhe privilegje pa i ringarkuar tabelat e " "privilegjeve." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Autentifikimi autokton MySQL" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Autentifikimi i fjalëkalimit SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Autentifikimi autokton MySQL" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Informacioni i hyrjes" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Përdor fushën e tekstit" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12255,229 +12250,216 @@ msgstr "" "Një llogari ekziston ndërkohë me të njëjtin emër përdorimi por ka mundësi me " "emër tjetër pritësi (hostname)." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Emri i pritësit:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Emri i pritësit" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalimin" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Shtojca e autentifikimit" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Metoda e ngatërrimit të fjalëkalimit" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për %s u ndryshua me sukses." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Keni anuluar privilegjet për %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Shto llogari përdoruesi" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Databaza për llogarinë e përdoruesit" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Krijo databazën me të njëjtin emër dhe dhuro të gjitha privilegjet." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dhuro të gjitha privilegjet në emrin me karaktere të veçanta (wildcard) " "(username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Dhuro të gjithë privilegjet në databazën \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Përdoruesit që kanë hyrje tek \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Përdoruesi është shtuar." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Dhuro" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Nuk ka privilegje të mjaftueshme për të shfaqur përdoruesit." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Nuk gjendet asnjë përdorues." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Kushdo" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "databazë-specifike" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "wildcard (shenja të veçanta)" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "Privilegjet specifike të tabelës" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Korrigjo privilegjet" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Tërhiq" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Korrigjo grupin e përdoruesit" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… mbaj të vjetrin." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… fshij të vjetrin nga tabelat e përdoruesve." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… të shfuqizojë të gjitha privilegjet aktive që nga i vjetri, e pastaj t'i " "fshijë." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… fshij të vjetrin nga tabela e përdoruesve dhe pastaj ringarko privilegjet." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Ndrysho informacionin e hyrjes / Kopjo llogarinë e përdoruesit" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Krijo një llogari të re përdoruesi me të njëjtat privilegje dhe …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegjet specifike të rutinës" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Largo llogaritë e zgjedhura të përdoruesve" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Grup përdoruesi" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Tërhiqi të gjitha privilegjet aktive nga përdoruesit dhe fshij ato më pas." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Fshij databazat që kanë emra të njëjtë si përdoruesit." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nuk janë zgjedhur përdorues për fshirje!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Ringarkon privilegjet" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u fshinë me sukses." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Keni aktualizuar privilegjet për %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Fshin %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilegjet u ri-ngarkuan me sukses." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston ndërkohë!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilegjet për %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Përdoruesi" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "I ri" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Korrigjo privilegjet:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Llogaria e përdoruesit" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12485,11 +12467,11 @@ msgstr "" "Shënim: Jeni përpjekur për të korrigjuar privilegjet e përdoruesit, me të " "cilën keni hyrë aktualisht." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Pamja e përgjithshme e llogarive të përdoruesve" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12500,7 +12482,7 @@ msgstr "" "ndërlidhen nëse pjesa e pritësit (host) të llogarisë së tyre lejon një " "lidhje nga çdo pritës (%)." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12513,7 +12495,7 @@ msgstr "" "privilegjet që përdor serveri, nëse ato janë ndryshuar manualisht. Në këtë " "rast, ju duhet të %sngarkoni privilegjet%s para se të vazhdoni." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12527,11 +12509,11 @@ msgstr "" "rast, privilegjet duhet të ringarkohen, por aktualisht ju nuk duhet të " "RINGARKONI privilegjet." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk gjendet në tabelën e të drejtave." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Keni shtuar një përdorues të ri." @@ -12839,12 +12821,12 @@ msgstr "Komanda" msgid "Progress" msgstr "Progresi" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filtrat" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Shfaq vetëm aktive" @@ -12865,12 +12847,12 @@ msgstr "për minut:" msgid "per second:" msgstr "për sekondë:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Deklaratat" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12894,7 +12876,7 @@ msgstr "Shfaq vlerat e paformatuara" msgid "Related links:" msgstr "Lidhjet relevante:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12902,11 +12884,11 @@ msgstr "" "Numri i lidhjeve që u abortuan për shkak se klienti vdiq, pa mbyllur lidhjen " "si duhet." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Numri i përpjekjeve që dështuan në lidhjen me MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12916,18 +12898,18 @@ msgstr "" "(log), që tejkalon vlerën e binlog_cache_size dhe përdor një fil të " "përkohshëm, për të ruajtur deklaratat nga transaksioni." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Numri i transaksioneve që përdorën cache binare të përkohshëm të regjistrit " "(log)." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Numri i përpjekjeve të lidhjeve (të sukseshme ose jo) në MySQL server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12940,11 +12922,11 @@ msgstr "" "e përkohëshme që të jenë të bazuara në kujtesë, në vend se të bazuara në " "disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Sa file të përkohëshme ka krijuar mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12952,7 +12934,7 @@ msgstr "" "Numri i tabelave të përkohshme në-kujtesë, të krijuara automatikisht nga " "serveri, ndërsa deklaratat ekzekutoheshin." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12960,7 +12942,7 @@ msgstr "" "Numri i radhëve të shkruara me INSERT DELAYED (fut të vonuarat), për të " "cilat disa gabime shfaqen (ka mundësi çelës i dyfishtë)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12968,23 +12950,23 @@ msgstr "" "Numri i rrjedhave të trajtuesit INSERT DELAYED në përdorim. Çdo tabelë e " "ndryshme në të cilën dikush përdor INSERT DELAYED merr rrjedhën e vet." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Numri i radhëve INSERT DELAYED të shkruara." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Numri i deklaratave FLUSH që janë ekzekutuar." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Numri i deklaratave të brendshme COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Numri i herëve, që një radhë është fshirë nga një tabelë." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12994,7 +12976,7 @@ msgstr "" "njohuri rreth një tabele me emrin e dhënë. Kjo quhet zbulim. " "Handler_discover indikon numrin e tabelave të kohës që janë zbuluar." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13005,7 +12987,7 @@ msgstr "" "indeksit; për shembull, SELECT col1 FROM foo, duke nënkuptuar se col1 është " "indeksuar." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13014,7 +12996,7 @@ msgstr "" "është e lartë, është një tregues i mirë që pyetjet tuaja dhe tabelat janë " "indeksuar si duhet." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13024,7 +13006,7 @@ msgstr "" "është rritur, nëse jeni duke pyetur në një kolonë indeksi, me një pengesë " "serie, ose nëse jeni duke bërë një skanim indeksi." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13033,7 +13015,7 @@ msgstr "" "çelësit. Kjo metodë leximi është përdorur kryesisht për të optimizuar ORDER " "BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13045,7 +13027,7 @@ msgstr "" "klasifikim të rezultatit. Ndoshta keni shumë pyetje që kërkojnë MySQL të " "skanojë tabela të tëra ose keni bashkime që nuk i përdorin çelësat si duhet." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13057,35 +13039,35 @@ msgstr "" "përgjithësi, kjo sugjeron që tabelat tuaja të mos jenë indeksuar si duhet, " "ose pyetsorët tuaj nuk janë shkruar për të përfituar nga indekset që keni." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Numri i deklaratave të brendshme ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Numri i kërkesave për të aktualizuar një radhë në një tabelë." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Numri i kërkesave për të futur një radhë në një tabelë." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Numri i faqeve që përmbajnë të dhëna (të pista ose të pastra)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Numri i faqeve aktualisht pista." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Numri i faqeve të pellgut zbutës, që janë kërkuar të zbrazen." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Numri i faqeve të lira." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13095,7 +13077,7 @@ msgstr "" "aktualisht lexohen ose shkruhen ose që nuk mund të zbrazen apo të hiqen për " "disa arsye të tjera." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13107,11 +13089,11 @@ msgstr "" "vlerë mund të llogaritet gjithashtu si Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Madhësia e përgjithshme e pellgut zbutës, në faqet." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13120,7 +13102,7 @@ msgstr "" "një pyetsor është për të skanuar një porcion të madh të një tabele, por në " "renditje të rastësishme." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13128,11 +13110,11 @@ msgstr "" "Numri i leximeve-përpara të vazhdueshme InnoDB të iniciuara. Kjo ndodh kur " "InnoDB bën një skanim të plotë tabele të vazhdueshëm." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Numri i kërkesave të leximit logjik, që InnoDB ka bërë." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13140,7 +13122,7 @@ msgstr "" "Numri i leximeve logjike që InnoDB nuk mund të kënaqë nga pellgu zbutës dhe " "kishte për të bërë një lexim faqe-të-vetme." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13155,52 +13137,52 @@ msgstr "" "madhësia e pellgut zbutës është vendosur si duhet, kjo vlerë duhet të jetë e " "vogël." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Numri i shkrimeve të bëra në pellgun e zbutësit InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Numri i veprimeve fsync() deri tani." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Numri aktual i veprimeve pezull fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Numri aktual i leximeve pezull." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Numri aktual i shkrimeve pezull." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Sasia e të dhënave të lexuara deri tani, në bajt." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Numri total i të dhënave të lexuara." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Numri total i të dhënave të shkruara." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Sasia e të dhënave të shkruara deri tani, në bajt." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Numri i faqeve që janë shkruar për veprimet doublewrite (shkrim i dyfishtë)." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Numri i veprimeve të shkruara dyfish që janë kryer." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13208,35 +13190,35 @@ msgstr "" "Numri i pritjeve që kishim, sepse zbutësi i regjistrit (log) ishte shumë i " "vogël dhe na u desh të presim, që ajo të jetë zbrazur, para se të vazhdonim." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Numri i kërkesave të regjistrit (log) të shkrimit." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Numri i shkrimeve fizike në filin e regjistrit (log)." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Numri i shkrimeve fsync() të bëra në filin e regjistrit (log)." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Numri i filit të regjistrit (log) në pritje fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Fili pezull i regjistrit (log) shkruan." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Numri i bajtëve të shkruara në një fil regjistri (log)." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Numri i faqeve të krijuara." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13245,51 +13227,51 @@ msgstr "" "numëruar në faqe; madhësia e faqes i lejon ato të konvertohen me lehtësi në " "bajt." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Numri i faqeve të lexuara." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Numri i faqeve të shkruara." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Numri i kyçeve të radhës, që presin aktualisht." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Koha mesatare për të marrë një kyçje rreshti, në milisekonda." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Koha totale e shpenzuar në marrjen e kçeve të radhës, në milisekonda." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Koha maksimale për të marrë një kyçje radhe, në milisekonda." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Numri i herëve, që një kyç i radhës duhej të priste." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Numri i radhëve që fshihen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Numri i radhëve që futen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Numri i radhëve që lexohen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Numri i radhëve që aktualizohen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13297,7 +13279,7 @@ msgstr "" "Numri i blloqeve kryesore në cachen çelës, që kanë ndryshuar, por ende nuk " "janë zbrazur në disk. Ajo njihet si Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13305,7 +13287,7 @@ msgstr "" "Numri i blloqeve të papërdorura në cache të çelësit. Mund ta përdorni këtë " "vlerë, për të përcaktuar se sa është në përdorim një cache e çelësit." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13315,15 +13297,15 @@ msgstr "" "shenjë e lartë uji, që tregon numrin maksimal të blloqeve, që kanë qenë " "ndonjëherë në përdorim në të njëjtën kohë." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Përqindja e cache të çelësit të përdorur (vlera e llogaritur)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Numri i kërkesave për të lexuar një bllok çelësazh nga cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13334,7 +13316,7 @@ msgstr "" "vogël. Norma e mungesës cache mund të llogaritet si Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13342,22 +13324,22 @@ msgstr "" "Cache e çelësit e llogaritur keq si vlerë e leximeve fizike, krahasuar me " "kërkesat e leximit (vlera e llogaritur)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Numri i kërkesave për të shkruar një bllok çelësash në cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Numri i shkrimeve fizike të një blloku çelësash në disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Përqindja e shkrimeve fizike të krahasuara me kërkesat e shkrimit (vlera e " "llogaritur)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13368,7 +13350,7 @@ msgstr "" "pyetsorit për të njëjtin pyetsor. Vlera e paracaktuar 0, do të thotë se nuk " "ka pyetsor të kompiluar ende." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13376,13 +13358,13 @@ msgstr "" "Numri maksimal i lidhjeve që kanë qenë në përdorim në të njëjtën kohë, që " "nga fillimi i serverit." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Numri i radhëve që presin të shkruhen në pyetsorët INSERT DELAYED (fut të " "vonuarat)." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13390,19 +13372,19 @@ msgstr "" "Numri i tabelave që janë hapur. Nëse tabelat e hapura janë të mëdha, vlera " "cache e tabelës suaj është ndoshta shumë e vogël." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Numri i fileve që janë hapur." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Numri i rrjedhave që janë hapur (përdorur kryesisht për prerjet)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Numri i tabelave që janë hapur." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13412,19 +13394,19 @@ msgstr "" "mund të tregojnë probleme të fragmentimit, të cilat mund të zgjidhen duke " "nxjerrë një derklaratë FLUSH QUERY CACHE (cache e zbrazjes së pyetsorit)." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Sasia e kujtesës së lirë për cache të pyetsorit." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Numri i goditjeve cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Numri i pyetsorëve të shtuar në cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13437,7 +13419,7 @@ msgstr "" "strategji (LRU) të përdorur së paku kohët e fundit, për të vendosur se cili " "pyetsor duhet hequr nga cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13445,20 +13427,20 @@ msgstr "" "Numri i pyetsorëve jo-cache (jo cachable, apo jo cached për shkak të " "rregullimit query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Numri i pyetsorëve të regjistruar në cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Numri i përgjithshëm i blloqeve në cache të pyetsorit." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "Statusi i replikimit të sigurisë së dështimit (nuk është implementuar akoma)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13466,12 +13448,12 @@ msgstr "" "Numri i bashkimeve, që nuk përdorin indekse. Nëse kjo vlerë nuk është 0, ju " "duhet të kontrolloni me kujdes treguesit e tabelave tuaja." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Numri i bashkimeve që përdor një kërkim serie, në një tabelë reference." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13480,7 +13462,7 @@ msgstr "" "çdo radhe. (Nëse kjo nuk është 0, duhet të kontrolloni me kujdes treguesit e " "tabelave tuaja.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13488,16 +13470,16 @@ msgstr "" "Numri i bashkimeve që përdorin seritë në tabelën e parë. (Kjo normalisht nuk " "është kritike edhe nëse kjo është e madhe.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Numri i bashkimeve, që bënë një skanim të plotë të tabelës së parë." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Numri i tabelave të përkohshme aktualisht të hapura nga rrjedha SQL skllave." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13505,13 +13487,13 @@ msgstr "" "Numri i përgjithshëm (që nga fillimi) i herëve që replikimi skllav rrjedhë " "SQL, ka riprovuar transaksionet." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Kjo është ON (po), nëse ky server është një skllav (slave), që është lidhur " "me një master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13519,12 +13501,12 @@ msgstr "" "Numri i rrjedhave që kanë marrë më shumë se slow_launch_time sekonda për të " "krijuar." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numri i pyetsorëve që kanë marrë më shumë se long_query_time sekonda." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13534,23 +13516,23 @@ msgstr "" "kjo vlerë është e madhe, duhet të konsideroni rritjen e vlerës së variablit " "të sistemit sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Numri i klasifikimeve, që janë bërë me normat." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Numri i radhëve të klasifikuara." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Numri i klasifikimeve, që janë bërë nga skanimi tabelës." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Numri i herëve, që një kyç tabele është siguruar menjëherë." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13562,7 +13544,7 @@ msgstr "" "performancën, duhet së pari të optimizoni pyetsorët tuaj dhe pastaj të ndani " "tabelën ose tabelat, ose të përdorni replikim (përsëritje)." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13572,11 +13554,11 @@ msgstr "" "llogaritet si Threads_created/Lidhjet. Nëse kjo vlerë është e kuqe, duhet të " "ngrini thread_cache_size tuaj." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Numri i lidhjeve të hapura aktualisht." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13588,11 +13570,11 @@ msgstr "" "kjo nuk do të japë një përmirësim të dukshëm të performancës, nëse keni " "zbatim të mirë të rrjedhave.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Shkalla e goditjes së cache të rrjedhës (vlera e llogaritur)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Numri i rrjedhave, që nuk janë duke fjetur." @@ -13621,37 +13603,37 @@ msgstr "Tabelorët e nivelit të databazës" msgid "Table level tabs" msgstr "Tabelori i nivelit të tabelës" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Shfaq përdoruesit" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Shto grup përdoruesish" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Korrigjo grupin e përdoruesit: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Meny e detyrave të grupi të përdoruesit" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Emri i grupit:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Tabelat e nivelit të serverit" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Tabelorët e nivelit të databazës" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tabelori i nivelit të tabelës" @@ -13750,7 +13732,7 @@ msgstr "Ekzekuto pyetsorin/rët SQL në databazën %s" msgid "Run SQL query/queries on table %s" msgstr "Ekzekuto pyetsorin/rët SQL në tabelën %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Pastro" @@ -13835,112 +13817,112 @@ msgstr "Pasivizo tani" msgid "Version" msgstr "Versioni" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Krijuar" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Aktualizuar" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Fshij versionin" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Raport gjurmimi" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Struktura foto e çastit" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktive" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "jo aktive" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Deklaratë gjurmimi" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Fshij gjurmimin e të dhënave për këtë raport" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nuk ka të dhëna" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Shfaq %1$s me datat nga %2$s në %3$s nga përdoruesi %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL zbraz (shkarkim fili)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL zbraz" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Ky opsion do të zëvendësojë tabelën tuaj dhe të dhënat që përmban." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL ekzekutim" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Eksport si %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Deklaratë e manipulimit të të dhënave" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Deklaratë e përcaktimit të të dhënave" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Emri i përdoruesit" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versioni %s snapshot (imazh ekrani) (kodi SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Asnjë" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Gjurmimi i përcaktimit të të dhënave u fshi me sukses" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Gjurmimi i manipulimit të të dhënave u fshi me sukses" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13948,62 +13930,62 @@ msgstr "" "Mund të ekzekutoni zbrazjen (dump), duke krijuar dhe përdorur një databazë " "të përkohshme. Ju lutem, sigurohuni që të keni privilegje për ta bërë këtë." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Komenti nga këto dy linja, nëse nuk keni nevojë për to." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL deklarata të eksportuara. Ju lutem, kopjo zbrazjen ose ekzekutoje atë." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Raporti i gjurmimit për tabelën `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Gjurmimi për %1$s u aktivizua në versionin %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Gjurmimi për %1$s u pasivizua në versionin %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versioni %1$s nga %2$s u fshi." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioni %1$s u krijua, gjurmimi për %2$s është aktiv." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Tabelat e pashkelura" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Gjurmo tabelën" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Tabelat e gjurmuara" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Versioni i fundit" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Fshij gjurmimin" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versionet" @@ -14011,7 +13993,7 @@ msgstr "Versionet" msgid "Manage your settings" msgstr "Menaxho rregullimet" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfigurimi është ruajtur." @@ -14037,7 +14019,7 @@ msgstr "Gabim në arkivin ZIP:" msgid "No files found inside ZIP archive!" msgstr "Nuk gjenden file brenda arkivit ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Gabim fatal: Navigacioni mund të arrihet përmes AJAX" @@ -14045,57 +14027,57 @@ msgstr "Gabim fatal: Navigacioni mund të arrihet përmes AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Nuk mund të ruajë rregullimet, formulari i paraqitur përmban gabime!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Mungojnë tabelat e ruajtjes së konfigurimit të phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nuk mund të importojë konfigurimin" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfigurimi përmban të dhëna jokorrekte për disa fusha." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Doni të importoni rregullimet që kanë mbetur?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Ruajtur në: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importo nga fili" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importo nga ruajtja e shfletuesit" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Rregullimet do të importohen nga rezervat lokale të shfletuesit tuaj." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Nuk keni rregullime të ruajtura!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Ky tipar nuk është i mbështetur nga shfletuesit ueb i juaj" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Bashko me konfigurimin aktual" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14104,25 +14086,25 @@ msgstr "" "Mund të vendosni më shumë konfigurime, duke modifikuar config.inc.php, psh. " "përdor %sSkriptin e instalimit%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Ruaj si fil" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Ruaj tek rezervat e shfletuesit" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Rregullimet do të ruhen në rezervat lokale të shfletuesit tuaj." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Rregullimet ekzistuese do të mbishkruhen!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Mund të rivendosni të gjitha rregullimet tuaja dhe t'i riktheni ato në " @@ -14132,12 +14114,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Shfaq zbrazjen (skema) e databazave" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nuk ka privilegje" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14146,20 +14128,20 @@ msgstr "" "doni vetëm të ndryshoni fjalëkalimin, duhet të përdoret tabelori 'Ndrysho " "fjalëkalimin'." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Nuk ka privilegje të mjaftueshme, për të shfaqur statusin e serverit." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Nuk ka privilegje të mjaftueshme, për të shfaqur këshilluesin." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Rrjedha %s u vra me sukses." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -14167,16 +14149,16 @@ msgstr "" "phpMyAdmin nuk ishte në gjendje ta vriste rrjedhën %s. Kjo ka mundësi tashmë " "të jetë mbyllur." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" "Nuk ka privilegje të mjaftueshme për të shfaqur statistikat e pyetsorit." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Nuk ka privilegje të mjaftueshme për të shfaqur variablat e statusit." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Shkarko" @@ -14186,11 +14168,11 @@ msgstr "" "Formset (set forme) jo korrekt, kontrollo grupin $formsets në setup/frames/" "form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Nuk mund të ngarkojë e ruaj konfigurimin" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14201,7 +14183,7 @@ msgstr "" "[doc@setup_script]documentation[/doc]. Përndryshe, ju do të jeni në gjendje " "vetëm ta shkarkoni dhe shfaqni atë." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14210,24 +14192,27 @@ msgstr "" "përfshirë informacionin potencialisht të ndjeshme, si fjalëkalimet) janë " "transferuar të pakriptuara!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Nëse serveri juaj është gjithashtu i konfiguruar për të marrë kërkesa HTTPS " "ndjek [a@%s]këtë lidhje[/a] për të përdorur lidhje të sigurtë." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Ndërlidhje e pasigurtë" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfigurimi u ruajt." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14236,61 +14221,61 @@ msgstr "" "phpMyAdmin, kopjoje atë në nivelin kryesor dhe fshije dosjen config për ta " "përdorur atë." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfigurimi u ruajt." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Përmbledhje" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Shfaq mesazhet e fshehta (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Nuk ka servera të konfiguruar" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Server i ri" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Gjuha standarde" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "lëre përdoruesin të zgjedhë" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- asnjë -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Serveri standard" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Fundi i rreshtit" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Shfaq" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Ngarko" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin uebfaqja" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Dhuro" @@ -14326,7 +14311,7 @@ msgstr "Injoro gabimet" msgid "Show form" msgstr "Shfaq formularin" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14334,15 +14319,15 @@ msgstr "" "Leximi i versionit dështoi. Mundet që jeni jonëlijë ose serveri i " "aktualizuar nuk përgjigjet." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Mori varg të pavlefshëm versioni nga serveri" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Varg versioni i papërkthyeshëm" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14351,7 +14336,7 @@ msgstr "" "Jeni duke përdorur versionin Git, ekzekuto [kbd]git pull[/kbd] :-)" "[br]Versioni i fundit stabil është %s, lëshuar me %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Nuk ka version stabil të ri të vlefshëm" @@ -14364,12 +14349,12 @@ msgstr "Të dhëna gabim" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databaza nuk ekziston." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s ekziston ndërkohë!" @@ -14382,29 +14367,29 @@ msgstr "Shfaq zbrazjen (skema) e tabelës" msgid "Invalid table name" msgstr "Emër tabele i pavlefshëm" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Radhë: %1$s, Kolonë: %2$s, Gabim: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Nuk është zgjedhur radha." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Gjurmimi i %s është aktivizuar." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Versionet e gjurmuara u fshinë me sukses." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Nuk janë zgjedhur versione." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL deklarata të ekzekutuara." @@ -14577,7 +14562,7 @@ msgid "List of available transformations and their options" msgstr "Lista e transformimeve të vlefshme dhe opsionet e tyre" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Transformim i shfaqur nga shfletuesi" @@ -14599,7 +14584,7 @@ msgstr "" "vlerave, paraprije atë me një backslash (për shembull '\\\\xyz' ose 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformim i të dhënave" @@ -15033,17 +15018,17 @@ msgid "Size" msgstr "Madhësia" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Krijim" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Aktualizimi i fundit" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Kontrolli i fundi" @@ -15085,6 +15070,12 @@ msgstr "" "Shfletuesi juaj ka konfigurim të phpMyAdmin për këtë domain. Dëshironi ta " "importoni atë për sesionin aktual?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Fshij gjurmimin" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Shto privilegjet në databazat që vijojnë:" @@ -15103,10 +15094,44 @@ msgstr "Shto privilegje në rutinën që vijon:" msgid "Add privileges on the following table:" msgstr "Shto privilegje në tabelën që vijon:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "I ri" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Asnjë" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Largo llogaritë e zgjedhura të përdoruesve" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Tërhiqi të gjitha privilegjet aktive nga përdoruesit dhe fshij ato më pas." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Fshij databazat që kanë emra të njëjtë si përdoruesit." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilegjet specifike të kolonës" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Kufizimet e burimeve" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Shënim: Vendosja e këtyre opsioneve në 0 (zero) largon kufizimin." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Zgjedh regjistrin (log) binar për të shfaqur" @@ -15137,7 +15162,7 @@ msgstr "Shtojcë (plugin)" msgid "Author" msgstr "Autori" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "pasivizuar" @@ -15292,7 +15317,7 @@ msgstr "Parser:" msgid "Comment:" msgstr "Komenti:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Tërhiq për të ri-renditur" @@ -15326,20 +15351,20 @@ msgstr "" msgid "Foreign key constraint" msgstr "Kufizo çelësin e huaj" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Shto detyrim" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Relacion i brendshëm" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Relacion i brendshëm" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15347,7 +15372,7 @@ msgstr "" "Një relacion i brendshëm nuk është i nevojshëm kur ekziston një relacion " "korrespondues FOREIGN KEY (çelës i huaj)." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Zgjedh kolonën për të shfaqur:" @@ -15400,11 +15425,11 @@ msgstr "Varg (string) origjinal" msgid "Replaced string" msgstr "Varg (string) i zëvendësuar" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Zëvendëso" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Kritere kërkimi shtesë" @@ -15475,7 +15500,7 @@ msgid "at beginning of table" msgstr "në fillim të tabelës" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Pjesët" @@ -15499,24 +15524,24 @@ msgstr "Gjatësia e të dhënave" msgid "Index length" msgstr "Gjatësia e indeksit" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Tabela e copëzimit" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Korrigjo copëzimin" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Korrigjo pamjen" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Përdorimi i hapësirës" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektive" @@ -15541,31 +15566,31 @@ msgstr "Përmirëso strukturën e tabelës" msgid "Track view" msgstr "Pamje e gjurmës" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Statistikat e radhës" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statike" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamike" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "copëzuar" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Gjatësia e radhës" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Madhësia e radhës" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Autoindeksi tjetër" @@ -15578,44 +15603,44 @@ msgstr "Kolona %s është fshirë." msgid "Click to toggle" msgstr "Kliko për të nyjëzuar" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Modeli" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Merr më shumë modele!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tipe MIME të vlefshme" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Transformime të vlefshme të shfaqjes së shfletuesit" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Transformime të vlefshme të dhënash" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Përshkrim" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Po kalon në faqen e objektivit." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nuk keni privilegje të mjaftueshme të jeni këtu tani!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profili është aktualizuar." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15693,7 +15718,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15714,17 +15739,17 @@ msgid "Unrecognized data type." msgstr "Tip të dhënash i panjohur." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Pritet një alias (pseudonim)." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Një pseudonim është gjetur më përpara." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Pikë (dot) e papritur." @@ -15777,24 +15802,24 @@ msgstr "Pritet hapësirë(a) e bardhë para delimitrit." msgid "Expected delimiter." msgstr "Pritet delimiter." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Pritet thonjëza e fundit %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Pritet emri i variablit." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Fillim i papritur i deklaratës." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Tip deklarate i panjohur." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Nuk ka filluar ndonjë transaksion më parë." @@ -15811,10 +15836,16 @@ msgstr "Shenjë e papritur." msgid "This type of clause was previously parsed." msgstr "Ky tip i klauzolës është parsuar më parë." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Fjalë kyçe e panjohur." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Fillim i papritur i deklaratës." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Pritet emri i entitetit." @@ -15859,7 +15890,7 @@ msgstr "" msgid "strict error" msgstr "Gabim pyetsori" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17168,6 +17199,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert është vendosur në 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autentifikimi autokton MySQL" + #~ msgid "Try to connect without password." #~ msgstr "Ptovo të lidhesh pa fjalëkalim." diff --git a/po/sr.po b/po/sr.po index 9cfc34df31..26d3b5bca5 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -28,32 +28,32 @@ msgstr "" "Фајл %s није доступан на овом систему, молимо посетите www.phpmyadmin.net за " "више информација." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Кликните да би сте сортирали." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1$s - %2$s." msgstr "Приказ записа" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Коментар базе" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Коментари табеле:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -65,13 +65,13 @@ msgstr "Коментари табеле:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -82,9 +82,9 @@ msgstr "Коментари табеле:" msgid "Column" msgstr "Колона" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -95,12 +95,12 @@ msgstr "Колона" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -112,9 +112,9 @@ msgstr "Колона" msgid "Type" msgstr "Тип" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -125,15 +125,15 @@ msgstr "Тип" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -144,14 +144,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Подразумевано" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -161,7 +161,7 @@ msgstr "Подразумевано" msgid "Links to" msgstr "Везе ка" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -175,19 +175,19 @@ msgstr "Везе ка" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Примарни" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -195,13 +195,13 @@ msgstr "Примарни" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -209,17 +209,17 @@ msgstr "Примарни" msgid "No" msgstr "Не" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -228,13 +228,13 @@ msgstr "Не" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -246,15 +246,15 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Прикажи садржај (схему) базе" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -263,8 +263,8 @@ msgid "Tables" msgstr "Табеле" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -272,10 +272,10 @@ msgstr "Табеле" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -288,30 +288,30 @@ msgstr "Структура" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Подаци" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Изабери све" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s." msgid "Database %1$s has been renamed to %2$s." msgstr "База %s је преименована у %s" -#: db_operations.php:149 +#: db_operations.php:150 #, fuzzy, php-format #| msgid "Database %s has been copied to %s." msgid "Database %1$s has been copied to %2$s." @@ -328,43 +328,43 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_qbe.php:125 +#: db_qbe.php:126 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Морате изабрати бар једну колону за приказ" -#: db_qbe.php:143 +#: db_qbe.php:144 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Пређи на копирану табелу" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Приступ одбијен!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy msgid "Tracking data deleted successfully." msgstr "Репликација" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Није изабрана ни једна база." -#: db_tracking.php:149 +#: db_tracking.php:150 #, fuzzy msgid "Database Log" msgstr "База података" @@ -401,163 +401,163 @@ msgstr "Погрешан тип!" msgid "Bad parameters!" msgstr "Погрешни параметри!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Вредност за колону %s" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Искористи OpenStreetMaps као основни слој" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додај ново поље" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Линије се завршавају са" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Додај новог корисника" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додај новог корисника" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Polygon %d:" msgstr "Додај %s поља" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Додај %s поља" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Додај геометрију" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Крени" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 #, fuzzy #| msgid "Access denied!" msgid "Succeeded" msgstr "Приступ одбијен!" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "Complete inserts" msgid "Incomplete params" msgstr "Комплетан INSERT (са именима поља)" -#: import.php:195 +#: import.php:196 #, fuzzy, php-format #| msgid "" #| "You probably tried to upload too large file. Please refer to " @@ -569,15 +569,15 @@ msgstr "" "Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " "%sдокументацију%s за начине превазилажења овог ограничења." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Обележивач је управо обрисан." -#: import.php:489 +#: import.php:486 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 " @@ -587,17 +587,17 @@ msgstr "" "или величина датотеке превазилази максималну величину дозвољену у вашој " "конфигурацији PHP-а. Погледајте. See [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "Направљен маркер %s" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -606,7 +606,7 @@ msgstr[0] "Увоз је успешно завршен, извршено је %d msgstr[1] "Увоз је успешно завршен, извршено је %d упита." msgstr[2] "Увоз је успешно завршен, извршено је %d упита." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -618,7 +618,7 @@ msgstr "" "Време извршења скрипта је истекло, ако желите да довршите увоз, молимо " "пошаљите исту датотеку и увоз ће се наставити." -#: import.php:632 +#: import.php:629 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." @@ -627,7 +627,7 @@ msgstr "" "да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не " "повећате временска ограничења у PHP-у." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." @@ -635,18 +635,18 @@ msgstr "\"DROP DATABASE\" команда је онемогућена." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Назад" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin документација" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -654,52 +654,52 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General relation features" msgid "General settings" msgstr "Опште особине релација" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Промени лозинку" -#: index.php:213 +#: index.php:214 #, fuzzy #| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "Сортирање за MySQL везу" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "General relation features" msgid "Appearance settings" msgstr "Опште особине релација" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 #, fuzzy #| msgid "General relation features" msgid "More settings" msgstr "Опште особине релација" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Database for user" msgid "Database server" msgstr "База за корисника" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Сервер:" -#: index.php:295 +#: index.php:296 #, fuzzy msgid "Server type:" msgstr "ИД сервера" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -707,82 +707,82 @@ msgstr "ИД сервера" msgid "Server version:" msgstr "Верзија сервера" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Protocol version" msgid "Protocol version:" msgstr "Верзија протокола" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Корисник" -#: index.php:314 +#: index.php:315 #, fuzzy msgid "Server charset:" msgstr "Избор сервера" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "" -#: index.php:338 +#: index.php:339 #, fuzzy msgid "Database client version:" msgstr "Верзија MySQL клијента" -#: index.php:342 +#: index.php:343 #, fuzzy msgid "PHP extension:" msgstr "верзија PHP-a" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "верзија PHP-a" -#: index.php:377 +#: index.php:378 #, fuzzy #| msgid "Version information" msgid "Version information:" msgstr "Информације о верзији" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Документација" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "phpMyAdmin веб сајт" -#: index.php:402 +#: index.php:403 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Нема измена" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 " @@ -792,13 +792,13 @@ msgstr "" "скуп знакова. Без екстензије mbstring phpMyAdmin не може исправно да " "раздваја стрингове и то може довести до неочекиваних резултата." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -806,21 +806,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -828,7 +828,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -840,12 +840,12 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -854,7 +854,7 @@ msgstr "" "Верзија ваше PHP MySQL библиотеке %s се разликује од верзије вашег MySQL " "сервера %s. Ово може довести до непредвидљивог понашања." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1039,7 +1039,7 @@ msgid "Save & close" msgstr "Сачувај као датотеку" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Поништи" @@ -1083,7 +1083,7 @@ msgstr "Додај ново поље" msgid "Edit index" msgstr "Уреди следећи ред" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1119,10 +1119,10 @@ msgstr "Додај %s поља" msgid "You have to add at least one column." msgstr "Морате додати барем једно поље." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1138,7 +1138,7 @@ msgstr "у упиту" msgid "Matched rows:" msgstr "Забрављене стране" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1159,13 +1159,13 @@ msgstr "Име домаћина је празно!" msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" @@ -1175,8 +1175,8 @@ msgstr "Лозинке нису идентичне!" msgid "Removing Selected Users" msgstr "Уклони изабране кориснике" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "" @@ -1204,19 +1204,19 @@ msgstr "Ред је обрисан" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1342,40 +1342,40 @@ msgid "Processes" msgstr "Процеси" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "бајтова" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "ЕБ" @@ -1395,7 +1395,7 @@ msgstr "Персијски" msgid "Traffic" msgstr "Саобраћај" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" @@ -1413,16 +1413,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "нема" @@ -1621,20 +1621,20 @@ msgstr "" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Статус" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Време" @@ -1732,10 +1732,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Увоз" @@ -1820,7 +1820,7 @@ msgstr "Погрешни параметри!" msgid "Cancel" msgstr "Откажи" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" @@ -1869,8 +1869,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Није изабрана ни једна база." @@ -1918,7 +1918,7 @@ msgstr "Копирај базу у" msgid "Changing charset" msgstr "Карактер сет" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1958,74 +1958,80 @@ msgstr "Преглед" msgid "Deleting" msgstr "Бришем %s" -#: js/messages.php:391 +#: js/messages.php:388 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Приказ података табеле" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Извоз" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Број поља" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додај новог корисника" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -2033,106 +2039,106 @@ msgstr "SQL упит" msgid "Edit" msgstr "Промени" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Обриши" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Променљива" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Нема одабраних редова" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Претраживање базе" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибути" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Примарни кључ је управо додат %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Промени" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2140,540 +2146,540 @@ msgstr "" msgid "End of step" msgstr "На крају табеле" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy msgid "Done" msgstr "Подаци" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Није изабрана ни једна база." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Додај привилегије на следећој табели" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Није изабрана ни једна база." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сачувај" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Претраживање" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Имена колона" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Имена колона" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy msgid "Maximum value:" msgstr "База не постоји" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL упит" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL упит" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додај/обриши колону" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Величина показивача података" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Копирај" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линије се завршавају са" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Додај новог корисника" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Линије се завршавају са" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изабери поља за приказ" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број стране:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Изабери све" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Изабери све" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Слободне стране" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Изабери све" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Изаберите страну коју мењате" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d није исправан број реда." -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Уреди или извези релациону схему" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Број поља" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Пошаљи" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имена колона" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Прикажи све" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оригинална позиција" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Откажи" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекинуто" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Увоз датотека" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Изабери табеле" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Штампај" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "База не постоји" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имена колона" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Направи" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Прикажи све" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додај ново поље" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежу" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "Опције за извоз базе" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "Опције за извоз базе" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2681,123 +2687,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "База не постоји" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "ИД сервера" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "ИД сервера" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Опште особине релација" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Прикажи отворене табеле" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнориши" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи поново овај упит" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментари табеле" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2806,38 +2812,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копирај базу у" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Додај ново поље" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2845,96 +2871,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "мај" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2942,78 +2968,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "дец" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3021,225 +3047,225 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у секунди" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поље" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d није исправан број реда." -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d није исправан број реда." -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d није исправан број реда." -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d није исправан број реда." -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d није исправан број реда." -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d није исправан број реда." -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d није исправан број реда." -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d није исправан број реда." -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d није исправан број реда." -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d није исправан број реда." -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d није исправан број реда." -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d није исправан број реда." -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Грешка" @@ -3301,20 +3327,20 @@ msgid "Charset" msgstr "Карактер сет" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Сортирање" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Бинарни" @@ -3511,7 +3537,7 @@ msgid "Czech-Slovak" msgstr "Чешко-словачки" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "непознат" @@ -3564,7 +3590,7 @@ msgstr "" msgid "Font size" msgstr "Величина фонта" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3572,24 +3598,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Обриши релацију" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL упит" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3597,27 +3623,27 @@ msgid "" "configured)." msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер не одговара" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Рутине" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, " @@ -3727,67 +3753,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на бази %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Изврши SQL упит" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Претраживање" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Обриши релацију" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Обриши релацију" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Приказивање маркера" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Обриши релацију" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "бар једну од речи" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "све речи" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "тачан израз" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "као регуларни израз" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати претраге за \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3796,7 +3822,7 @@ msgstr[0] "Укупно: %s погодака" msgstr[1] "Укупно: %s погодака" msgstr[2] "Укупно: %s погодака" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3805,53 +3831,47 @@ msgstr[0] "%s погодака унутар табеле %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Преглед" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Приказ података табеле" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Претраживање базе" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Речи или вредности које се траже (џокер: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Тражи:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Речи се одвајају размаком (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Унутар табела:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ништа" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -3879,16 +3899,16 @@ msgstr "Датотеке" msgid "Search this table" msgstr "Претраживање базе" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Почетак" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3897,8 +3917,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3907,8 +3927,8 @@ msgctxt "Next page" msgid "Next" msgstr "Следећи" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3919,7 +3939,7 @@ msgstr "Крај" msgid "All" msgstr "Све" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3930,8 +3950,8 @@ msgstr "Број поља" msgid "Sort by key" msgstr "Сортирај по кључу" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3953,10 +3973,10 @@ msgstr "Сортирај по кључу" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Опције" @@ -4005,111 +4025,111 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Ред је обрисан" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Обустави" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Може бити приближно. Видите [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL упит је успешно извршен" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Приказ записа" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "укупно" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Упит је трајао %01.4f секунди" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Означено:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Означи све" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Веза није пронађена" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4117,7 +4137,7 @@ msgid "None" msgstr "нема" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4125,29 +4145,29 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Увоз" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Режим аутоматског опоравка" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Послата датотека превазилази вредност директиве upload_max_filesize у php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4155,52 +4175,52 @@ msgstr "" "Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је " "наведена у HTML форми." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Послата датотека је само делимично примљена." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Недостаје привремени директоријум." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Неуспело уписивање датотеке на диск." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Пријем датотеке заустављен због екстензије." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Датотеку није могуће прочитати" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Грешка у премештању примљене датотеке, погледајте [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4209,30 +4229,30 @@ msgstr "" "Покушали сте да увезете датотеку са компресијом која није подржана (%s). Или " "подршка за њу није имплементирана, или је искључена у вашој конфигурацији." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Информације о верзији" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Отвори нови phpMyAdmin прозор" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "За штампу" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4243,20 +4263,20 @@ msgid "No index defined!" msgstr "Кључ није дефинисан!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Кључеви" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4266,31 +4286,31 @@ msgstr "Кључеви" msgid "Action" msgstr "Акција" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Име кључа" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4298,47 +4318,47 @@ msgstr "Кардиналност" msgid "Comment" msgstr "Коментари" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Примарни кључ је обрисан." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Кључ %s је обрисан." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Одбаци" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Број странице:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Језик" @@ -4362,11 +4382,11 @@ msgstr "Сервер" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4385,14 +4405,15 @@ msgid "View" msgstr "Поглед" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4401,8 +4422,8 @@ msgid "Table" msgstr "Табела" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4410,45 +4431,45 @@ msgstr "Табела" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Претраживање" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Нови запис" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегије" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Операције" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4464,16 +4485,16 @@ msgstr "Окидачи" msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Упит по примеру" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Рутине" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4482,22 +4503,22 @@ msgstr "Рутине" msgid "Events" msgstr "Догађаји" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Дизајнер" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Додај/обриши колону" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Базе" @@ -4508,46 +4529,46 @@ msgid "User accounts" msgstr "Корисник" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бинарни дневник" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликација" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Променљиве" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Кодне стране" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Складиштења" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row deleted." @@ -4555,7 +4576,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Нема одабраних редова" msgstr[1] "Нема одабраних редова" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row inserted." @@ -4621,29 +4642,29 @@ msgstr "Променљиве" msgid "Favorites" msgstr "Променљиве" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Корисник %s већ постоји!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Непозната грешка при слању датотеке." @@ -4706,7 +4727,7 @@ msgstr "Прикажи отворене табеле" msgid "Show slave hosts" msgstr "Прикажи подређене сервер" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" @@ -4766,87 +4787,87 @@ msgstr[0] "се користи" msgstr[1] "се користи" msgstr[2] "се користи" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детаљнијих информација о статусу за овај погон складиштења." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s је доступан на овом MySQL серверу." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s је онемогућен на овом MySQL серверу." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овај MySQL сервер не подржава %s погон складиштења." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Прикажи статус подређених сервера" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Претраживање базе" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Није пронађена тема %s!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Неисправна база података" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Неисправан назив табеле" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Грешка при преименовању табеле %1$s у %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Табели %s промењено име у %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4854,19 +4875,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Име примарног кључа мора да буде \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Не могу да променим кључ у PRIMARY (примарни) !" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Делови кључа нису дефинисани!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5138,7 +5159,7 @@ msgid "Date and time" msgstr "Направи нови кључ" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5157,70 +5178,70 @@ msgstr "Укупно" msgid "Max: %s%s" msgstr "Максимална величина: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP кода" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изврши SQL упит" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Направи PHP код" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Освежи" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Профилисање" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5228,67 +5249,67 @@ msgid "Edit inline" msgstr "Додај ново поље" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутине" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Пређи на базу \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Директоријум који сте изабрали за слање није доступан." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy msgid "There are no files to upload!" msgstr "Провери табелу" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Испразни" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5304,7 +5325,7 @@ msgstr "у минуту" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "на сат" @@ -5312,14 +5333,14 @@ msgstr "на сат" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Претраживање" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5327,7 +5348,7 @@ msgstr "Претраживање" msgid "Description" msgstr "Опис" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Користи ову вредност" @@ -5368,22 +5389,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Име" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Дужина/Вредност*" @@ -5394,7 +5415,7 @@ msgstr "Дужина/Вредност*" msgid "Attribute" msgstr "Атрибути" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5417,13 +5438,13 @@ msgstr "Додај %s поља" msgid "Select a column." msgstr "Додај/обриши колону" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "Додај %s поља" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5431,7 +5452,7 @@ msgstr "Додај %s поља" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5440,28 +5461,28 @@ msgstr "" "У PHP подешавањима Вам је укључена mbstring.func_overload опција. Ова опција " "је некомпатибилна са phpMyAdmin и може довести до грешака у неким подацима!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5469,20 +5490,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6043,7 +6064,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6158,13 +6179,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Име" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Сачувај као датотеку" @@ -6175,7 +6196,7 @@ msgstr "Карактер сет датотеке:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Формат" @@ -6321,7 +6342,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Препиши постојеће датотеке" @@ -6337,7 +6358,7 @@ msgid "Remember file name template" msgstr "Шаблон имена датотеке" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" @@ -6348,7 +6369,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Користи ' за ограничавање имена поља" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" @@ -6380,7 +6401,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Додај %s" @@ -6566,7 +6587,7 @@ msgid "Customize the navigation tree." msgstr "Опције за извоз базе" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Сервери" @@ -7503,7 +7524,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Репликација" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8194,7 +8215,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8202,10 +8223,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8350,25 +8371,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Табела %s је испражњена." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Поглед %s је одбачен" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8383,12 +8404,12 @@ msgid "Position" msgstr "Позиција" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Врста догађаја" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ИД сервера" @@ -8397,7 +8418,7 @@ msgid "Original position" msgstr "Оригинална позиција" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Информације" @@ -8411,16 +8432,16 @@ msgstr "Прикажи скраћене упите" msgid "Show Full Queries" msgstr "Прикажи комплетне упите" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "База не постоји" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "База %1$s је креирана." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8429,26 +8450,26 @@ msgstr[0] "%s база је успешно одбачено." msgstr[1] "%s база је успешно одбачено." msgstr[2] "%s база је успешно одбачено." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Редова" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Укупно" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Прекорачење" @@ -8479,35 +8500,35 @@ msgstr "" msgid "Enable statistics" msgstr "Укључи статистике" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Серверске променљиве и подешавања" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "База не постоји" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "Изабрани корисници су успешно обрисани." @@ -8564,7 +8585,7 @@ msgstr "Изабрани корисници су успешно обрисани #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8583,12 +8604,12 @@ msgstr "Промени" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Кључ" @@ -8611,13 +8632,13 @@ msgstr "Текст кључ" msgid "Distinct values" msgstr "Прегледај различите вредности" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измена" @@ -8639,203 +8660,207 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Нема лозинке" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Лозинка:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Поновите унос" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Хеширање лозинке" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Дозвољава закључавање табела текућим процесима." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Направи нову табелу у бази %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Направи нову табелу у бази %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Тип извоза" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Шаблон имена датотеке" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Назив табеле" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Направи" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Шаблон имена датотеке" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s табела" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Update Query" msgid "Update" msgstr "Ажурирај упит" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Изабери табеле" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Тип извоза" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 #, fuzzy msgid "Custom - display all possible options" msgstr "Опције за извоз базе" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Базе" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Табеле" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Формат" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Опције трансформације" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy msgid "Encoding Conversion:" msgstr "Верзија MySQL клијента" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Редова" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Сачувај на сервер у директоријум %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Шаблон имена датотеке" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "alue is interpreted using %1$sstrftime%2$s, so you can use time matting " @@ -8850,125 +8875,125 @@ msgstr "" "користите стрингове за форматирање времена. Такође ће се десити и следеће " "трансформације: %3$s. Преостали текст ће остати како јесте." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Карактер сет датотеке:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Компресија" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"зиповано\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"гзип-овано\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Сачувај као датотеку" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "Направи нову табелу у бази %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "хоризонталном (ротирана заглавља)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Сачувај као датотеку" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Изабери табеле" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Изабери табеле" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "назив базе" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "User name" msgid "New table name" msgstr "Име корисника" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Имена колона" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Имена колона" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Није могуће учитати додатке за извоз, молимо проверите своју инсталацију!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Направи релацију" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Направи релацију" @@ -9408,13 +9433,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недовољно простора за снимање датотеке %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9422,75 +9447,75 @@ msgstr "" "Датотека %s већ постоји на серверу, промените име датотеке или укључите " "опцију преписивања." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб серверу није дозвољено да сачува датотеку %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9502,86 +9527,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Направи кључ на %s колона" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Сакриј" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функција" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Због њехове величине, поље
можда нећете моћи да измените" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "или" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "директоријум за слање веб сервера" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нови запис" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "и онда" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9591,8 +9617,8 @@ msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9603,31 +9629,31 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Само структура" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Структура и подаци" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Само подаци" @@ -9638,14 +9664,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Додај ограничења" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9707,8 +9733,8 @@ msgstr "Процедуре" msgid "Views:" msgstr "Поглед" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Прикажи" @@ -9754,19 +9780,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Сачувај као датотеку" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9782,7 +9808,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9805,7 +9831,7 @@ msgstr "" msgid "Database operations" msgstr "Опције за извоз базе" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9910,13 +9936,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Додај/обриши колону" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10170,8 +10196,8 @@ msgid "Rename database to" msgstr "Преименуј базу у" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10219,83 +10245,83 @@ msgstr "(по једном пољу)" msgid "Move table to (database.table)" msgstr "Помери табелу у (база.табела)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Промени име табеле у" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Коментари табеле" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Опције табеле" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Погон складиштења" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Копирај табелу у (база.табела)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Пређи на копирану табелу" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Радње на табели" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Анализирај табелу" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Провери табелу" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Провери табелу" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Дефрагментирај табелу" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Табела %s је освежена." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежи табелу (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Поправи табелу" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10303,106 +10329,106 @@ msgstr "Поправи табелу" msgid "Delete data or table" msgstr "Приказ података табеле" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "База не постоји" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "Чешки" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Поправи табелу" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Нема табела" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Радње на табели" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Не могу да преместим табелу у саму себе!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Не могу да копирам табелу у саму себе!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Табела %s је померена у %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Табела %s је копирана у %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Табела %s је померена у %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Табела %s је копирана у %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Има табеле је празно!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10431,18 +10457,18 @@ msgstr "Прикажи боју" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Не могу да се повежем: неисправна подешавања." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Добродошли на %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10451,7 +10477,7 @@ msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10463,7 +10489,7 @@ msgstr "" "php и уверите се да одговарају подацима које сте добили од администратора " "MySQL сервера." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10490,15 +10516,15 @@ msgstr "Корисничко име:" msgid "Server Choice:" msgstr "Избор сервера" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10574,7 +10600,7 @@ msgstr "Опције за извоз базе" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Приказ података табеле" @@ -10583,7 +10609,7 @@ msgstr "Приказ података табеле" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Догађаји" @@ -10591,8 +10617,8 @@ msgstr "Догађаји" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10700,7 +10726,7 @@ msgstr "Стави имена поља у први ред" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11274,7 +11300,7 @@ msgstr "Садржај" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Додатно" @@ -11706,57 +11732,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "нема описа" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11765,318 +11791,318 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Изаберите базу" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "макс. истовремених веза" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Текст кључ" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 #, fuzzy msgid "Full stop" msgstr "Текст кључ" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Само структура" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Само структура" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Име корисника" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Име корисника" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Лозинка" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Сортирање" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 #, fuzzy msgid "Master status" msgstr "Прикажи статус подређених сервера" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 #, fuzzy msgid "Slave status" msgstr "Прикажи статус подређених сервера" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Променљива" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Домаћин" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Било који домаћин" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Локални" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Овај сервер" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Било који корисник" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Користи текст поље" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Поновите унос" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Направи лозинку" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy msgid "Replication started successfully." msgstr "Репликација" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Привилегије су успешно поново учитане." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy msgid "Replication resetting successfully." msgstr "Репликација" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Грешка" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Привилегије су успешно поново учитане." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12098,7 +12124,7 @@ msgstr "Табела %s је одбачена" msgid "Event %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12109,85 +12135,85 @@ msgstr "" msgid "Edit event" msgstr "Догађаји" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Врста догађаја" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Промени" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Статус" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Крај" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Комплетан INSERT (са именима поља)" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Неисправан назив табеле" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12210,7 +12236,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -12224,141 +12250,141 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Директне везе" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додај ново поље" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Уклони базу" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Повратни тип" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Дужина/Вредност*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опције табеле" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Врста упита" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Неисправан назив табеле" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозвољава извршавање сачуваних рутина." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12366,13 +12392,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -12398,44 +12424,44 @@ msgstr "Табела %s је одбачена" msgid "Edit trigger" msgstr "Додај новог корисника" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Окидачи" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Време" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Неисправан назив табеле" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Неисправан назив табеле" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Неисправан назив табеле" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Неисправан назив табеле" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12575,91 +12601,91 @@ msgstr "Карактер сетови и сортирање" msgid "Databases statistics" msgstr "Статистика базе" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Нема привилегија." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Дозвољава читање података." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Дозвољава измену података." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Дозвољава брисање података." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12669,133 +12695,105 @@ msgstr "" "Неопходно за већину административних опција као што су подешавање глобалних " "променљивих или прекидање процеса осталих корисника." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Дозвољава закључавање табела текућим процесима." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Дозвољава креирање и брисање кључева." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "нема" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "max. concurrent connections" msgid "Does not require SSL-encrypted connections." msgstr "макс. истовремених веза" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "max. concurrent connections" msgid "Requires SSL-encrypted connections." msgstr "макс. истовремених веза" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ограничења ресурса" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ограничава број упита које корисник може да упути серверу за сат." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12803,407 +12801,386 @@ msgstr "" "Ограничава број команди које мењају табеле или базе које корисник може да " "изврши на сат." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Ограничава број нових конекција које корисник може та отвори на сат." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Рутине" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Дозвољава измену и одбацивање сачуваних рутина." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Дозвољава извршавање сачуваних рутина." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Напомена: MySQL имена привилегија морају да буду на енглеском" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Администрација" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глобалне привилегије" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "глобално" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозвољава додавање корисника и привилегија без поновног учитавања табела " "привилегија." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Документација" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Промени лозинку" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Документација" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Подаци о пријави" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Име корисника" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Назив дневника" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Документација" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хеширање лозинке" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Забранили сте привилегије за %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Било који корисник" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База за корисника" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Направи базу са истим именом и додај све привилегије." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "Провери привилегије за базу \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници који имају приступ \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Поглед %s је одбачен" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Омогући" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Било који" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Уреди следећи ред" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… сачувај старе." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… обриши старе из табела корисника." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… обустави све привилегије старог корисника и затим га обриши." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… обриши старог из табеле корисника и затим поново учитај привилегије." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промени информације о пријави / Копирај корисника" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Направи новог корисника са истим привилегијама и …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегије везане за колоне" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Уклони изабране кориснике" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Обустави све активне привилегије корисника и затим их обриши." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Одбаци базе које се зову исто као корисници." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегије" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Преглед корисника" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13216,7 +13193,7 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13235,11 +13212,11 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Додали сте новог корисника." @@ -13541,13 +13518,13 @@ msgstr "Наредба" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Датотеке" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13576,12 +13553,12 @@ msgstr "у минуту" msgid "per second:" msgstr "у секунди" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13613,19 +13590,19 @@ msgstr "Прикажи отворене табеле" msgid "Related links:" msgstr "Релације" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13635,16 +13612,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13656,11 +13633,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13668,7 +13645,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13676,7 +13653,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13684,23 +13661,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13710,7 +13687,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13720,7 +13697,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13728,7 +13705,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13738,7 +13715,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13746,7 +13723,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13758,7 +13735,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13770,35 +13747,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Број слободних страна." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13808,7 +13785,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13820,11 +13797,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13832,7 +13809,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13840,11 +13817,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13852,7 +13829,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13866,55 +13843,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13922,35 +13899,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Број направљених страна." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13959,51 +13936,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Број записаних страна." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14011,7 +13988,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14019,7 +13996,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14029,17 +14006,17 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Формат датотека за увоз" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14049,26 +14026,26 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14078,17 +14055,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14096,39 +14073,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14140,7 +14117,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14148,19 +14125,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -14168,11 +14145,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -14180,7 +14157,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14188,15 +14165,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14204,11 +14181,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14216,12 +14193,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14231,23 +14208,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14259,7 +14236,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14269,11 +14246,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14285,13 +14262,13 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кеш кључева" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." @@ -14328,49 +14305,49 @@ msgstr "База за корисника" msgid "Table level tabs" msgstr "Коментари табеле" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Поглед" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Било који корисник" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Нема привилегија." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Имена колона" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Верзија сервера" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "База за корисника" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14481,7 +14458,7 @@ msgstr "Изврши SQL упит(е) на бази %s" msgid "Run SQL query/queries on table %s" msgstr "Изврши SQL упит(е) на бази %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14573,106 +14550,106 @@ msgstr "" msgid "Version" msgstr "Персијски" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 #, fuzzy msgid "Created" msgstr "Направи" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Ажурирано" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Направи релацију" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Извештај о праћењу" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Снимак структуре" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "активно" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "неактивно" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозвољава уметање и замену података." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "База не постоји" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, fuzzy, php-format msgid "Export as %s" msgstr "Тип извоза" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Подаци" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14680,80 +14657,80 @@ msgctxt "None for default" msgid "None" msgstr "нема" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Направи релацију" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 #, fuzzy msgid "Untracked tables" msgstr "Провери табелу" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Прати табелу" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 #, fuzzy msgid "Tracked tables" msgstr "Провери табелу" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 #, fuzzy msgid "Last version" msgstr "Направи релацију" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Дозвољава уметање и замену података." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Верзије" @@ -14763,7 +14740,7 @@ msgstr "Верзије" msgid "Manage your settings" msgstr "Опште особине релација" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14791,7 +14768,7 @@ msgstr "Грешка у ZIP архиви:" msgid "No files found inside ZIP archive!" msgstr "У ZIP архиви нема датотека!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14799,86 +14776,86 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin документација" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Увоз датотека" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Сачувај као датотеку" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14886,45 +14863,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Нема привилегија" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s је успешно прекинут." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14932,103 +14909,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Измене су сачуване" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Измене су сачуване" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Локални" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin документација" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 #, fuzzy msgid "Donate" msgstr "Подаци" @@ -15067,28 +15043,28 @@ msgstr "" msgid "Show form" msgstr "Прикажи боју" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -15103,12 +15079,12 @@ msgstr "База не постоји" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Табела %s већ постоји!" @@ -15121,35 +15097,35 @@ msgstr "Прикажи садржај (схему) табеле" msgid "Invalid table name" msgstr "Неисправан назив табеле" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Нема одабраних редова" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Нема одабраних редова" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15378,7 +15354,7 @@ msgid "List of available transformations and their options" msgstr "Доступне трансформације" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15404,7 +15380,7 @@ msgstr "" "пример '\\\\xyz' или 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15940,17 +15916,17 @@ msgid "Size" msgstr "Величина" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Направљено" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Последња измена" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Последња провера" @@ -15985,6 +15961,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Дозвољава уметање и замену података." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16007,10 +15989,47 @@ msgstr "Додај привилегије на следећој табели" msgid "Add privileges on the following table:" msgstr "Додај привилегије на следећој табели" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "нема" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Уклони изабране кориснике" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Обустави све активне привилегије корисника и затим их обриши." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Одбаци базе које се зову исто као корисници." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ограничења ресурса" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" @@ -16046,7 +16065,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -16235,7 +16254,7 @@ msgstr "Корисник" msgid "Comment:" msgstr "Коментари" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16273,30 +16292,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додај ограничења" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Унутрашње релације" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутрашње релације" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16362,13 +16381,13 @@ msgstr "Оригинална позиција" msgid "Replaced string" msgstr "Релације" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Репликација" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL упит" @@ -16456,7 +16475,7 @@ msgid "at beginning of table" msgstr "На почетку табеле" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16488,30 +16507,30 @@ msgstr "Дужина реда" msgid "Index length" msgstr "Дужина реда" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Позиција" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add new field" msgid "Edit partitioning" msgstr "Додај ново поље" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "За штампу" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Заузеће" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Ефективне" @@ -16541,33 +16560,33 @@ msgstr "Предложи структуру табеле" msgid "Track view" msgstr "Провери табелу" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Статистике реда" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "динамички" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Дужина реда" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Величина реда" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16581,52 +16600,52 @@ msgstr "Табела %s је одбачена" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Доступни MIME-типови" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Доступне трансформације" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Доступне трансформације" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "Промени" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Није Вам дозвољено да будете овде!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профил је промењен." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16700,7 +16719,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16724,19 +16743,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Није изабрана ни једна база." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16796,27 +16815,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "Табела %s је одбачена" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Шаблон имена датотеке" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На почетку табеле" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16833,10 +16852,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "На почетку табеле" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16882,7 +16907,7 @@ msgstr "" msgid "strict error" msgstr "Врста упита" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -18088,6 +18113,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "макс. истовремених веза" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Документација" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/sr@latin.po b/po/sr@latin.po index e7db2f8dc1..b9ac59dfc5 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -28,36 +28,36 @@ msgstr "" "Datoteka %s nije dostupna na ovom sistemu, molimo vas posetite www." "phpmyadmin.net za više informacija." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 #, fuzzy #| msgid "Click to sort" msgid "Click to sort." msgstr "Kliknite da bi ste sortirali" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1$s - %2$s." msgstr "Prikaz zapisa" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Komentar baze" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 #, fuzzy #| msgid "Table comments" msgid "Table comments:" msgstr "Komentari tabele" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -69,13 +69,13 @@ msgstr "Komentari tabele" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -86,9 +86,9 @@ msgstr "Komentari tabele" msgid "Column" msgstr "Kolona" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -99,12 +99,12 @@ msgstr "Kolona" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -116,9 +116,9 @@ msgstr "Kolona" msgid "Type" msgstr "Tip" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -129,15 +129,15 @@ msgstr "Tip" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -148,14 +148,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Podrazumevano" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -165,7 +165,7 @@ msgstr "Podrazumevano" msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -179,19 +179,19 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -199,13 +199,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -213,17 +213,17 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -232,13 +232,13 @@ msgstr "Ne" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -250,15 +250,15 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -267,8 +267,8 @@ msgid "Tables" msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -276,10 +276,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -292,30 +292,30 @@ msgstr "Struktura" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Podaci" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Izaberi sve" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %1$s has been renamed to %2$s." msgid "Database %1$s has been renamed to %2$s." msgstr "Baza %1$s je preimenovana u %2$s" -#: db_operations.php:149 +#: db_operations.php:150 #, fuzzy, php-format #| msgid "Database %1$s has been copied to %2$s." msgid "Database %1$s has been copied to %2$s." @@ -332,43 +332,43 @@ msgstr "" "Konfiguraciono skladište phpMyAmin-a je deaktivirano. Da biste saznali " "zašto, kliknite %sovde%s." -#: db_qbe.php:125 +#: db_qbe.php:126 #, 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 izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pređi na %svizuelnu izradu%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Pristup odbijen!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy #| msgid "Replication status" msgid "Tracking data deleted successfully." msgstr "Status replikacije" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Nije izabrana ni jedna baza." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Log baze podataka" @@ -404,141 +404,141 @@ msgstr "Pogrešan tip!" msgid "Bad parameters!" msgstr "Pogrešni parametri!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrednost za kolonu %s" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Iskoristi OpenStreetMaps kao osnovni sloj" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 #, fuzzy #| msgid "SRID" msgid "SRID:" msgstr "SRID" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, fuzzy, php-format #| msgid "Geometry" msgid "Geometry %d:" msgstr "Geometrija" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 #, fuzzy #| msgid "Point" msgid "Point:" msgstr "Tačka" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Tačka %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Dodaj tačku" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Linestring" msgid "Linestring %d:" msgstr "Linija teksta" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring:" msgstr "Spoljni prsten" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, fuzzy, php-format #| msgid "Inner Ring" msgid "Inner ring %d:" msgstr "Unutrašnji prsten" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Dodaj novu liniju teksta" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Dodaj unutrašnji prsten" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, fuzzy, php-format #| msgid "Polygon" msgid "Polygon %d:" msgstr "Poligon" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Dodaj poligon" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Dodaj geometriju" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Kreni" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Izlaz" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 #, fuzzy #| msgid "" #| "Choose \"GeomFromText\" from the \"Function\" column and paste the string " @@ -550,23 +550,23 @@ msgstr "" "Izaberi \"GeomFromText\" iz \"Funkcija\" kolone i nalepi ispod teksta u " "\"Vrednost\" polju" -#: import.php:63 +#: import.php:64 #, fuzzy #| msgid "Access denied!" msgid "Succeeded" msgstr "Pristup odbijen!" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "complete inserts" msgid "Incomplete params" msgstr "Kompletan INSERT" -#: import.php:195 +#: import.php:196 #, fuzzy, php-format #| msgid "" #| "You probably tried to upload too large file. Please refer to " @@ -578,15 +578,15 @@ msgstr "" "Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " "%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Obeleživač je upravo obrisan." -#: import.php:489 +#: import.php:486 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 " @@ -596,17 +596,17 @@ msgstr "" "ili veličina datoteke prevazilazi maksimalnu veličinu dozvoljenu u vašoj " "konfiguraciji PHP-a. Pogledajte. See [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "Napravljen marker %s" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -615,7 +615,7 @@ msgstr[0] "Uvoz je uspešno završen, izvršeno je %d upita." msgstr[1] "Uvoz je uspešno završen, izvršeno je %d upita." msgstr[2] "Uvoz je uspešno završen, izvršeno je %d upita." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -627,7 +627,7 @@ msgstr "" "Vreme izvršenja skripta je isteklo, ako želite da dovršite uvoz, molimo " "pošaljite istu datoteku i uvoz će se nastaviti." -#: import.php:632 +#: import.php:629 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." @@ -636,7 +636,7 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti da završi ovaj uvoz osim ako ne " "povećate vremenska ograničenja u PHP-u." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -644,19 +644,19 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Nazad" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy #| msgid "phpMyAdmin homepage" msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin početna stranica" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -664,47 +664,47 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General Settings" msgid "General settings" msgstr "Opšta podešavanja" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Promeni lozinku" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Način poređenja kod veze na server" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "Change settings" msgid "Appearance settings" msgstr "Izmeni podešavanja" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Dodatna podešavanja" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Server baze podataka" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 #, fuzzy #| msgid "Server port" msgid "Server type:" msgstr "Port na serveru" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -712,81 +712,81 @@ msgstr "Port na serveru" msgid "Server version:" msgstr "Verzija servera" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Protocol version" msgid "Protocol version:" msgstr "Verzija protokola" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Korisnik" -#: index.php:314 +#: index.php:315 #, fuzzy #| msgid "Server charset" msgid "Server charset:" msgstr "Server skup znakova" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "" -#: index.php:338 +#: index.php:339 #, fuzzy #| msgid "Database client version" msgid "Database client version:" msgstr "Verzija klijenta baze" -#: index.php:342 +#: index.php:343 #, fuzzy #| msgid "PHP extension" msgid "PHP extension:" msgstr "PHP proširenje" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "verzija PHP-a" -#: index.php:377 +#: index.php:378 #, fuzzy #| msgid "Version information" msgid "Version information:" msgstr "Informacije o verziji" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacija" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "phpMyAdmin veb sajt" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Doprinesi" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista izmena" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 " @@ -796,13 +796,13 @@ msgstr "" "skup znakova. Bez ekstenzije mbstring phpMyAdmin ne može ispravno da " "razdvaja stringove i to može dovesti do neočekivanih rezultata." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 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 " @@ -810,21 +810,21 @@ msgid "" "might expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:492 +#: index.php:493 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 "" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 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 " @@ -832,7 +832,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage is not completely configured, some " @@ -845,12 +845,12 @@ msgstr "" "dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde" "%s." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -859,7 +859,7 @@ msgstr "" "Verzija vaše PHP MySQL biblioteke %s se razlikuje od verzije vašeg MySQL " "servera %s. Ovo može dovesti do nepredvidljivog ponašanja." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1043,7 +1043,7 @@ msgid "Save & close" msgstr "Sačuvaj kao datoteku" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Poništi" @@ -1087,7 +1087,7 @@ msgstr "Dodaj indeks" msgid "Edit index" msgstr "Izmeni indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" @@ -1121,10 +1121,10 @@ msgstr "Dodaj %d kolona u indeks" msgid "You have to add at least one column." msgstr "Morate dodati barem jednu kolonu." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1140,7 +1140,7 @@ msgstr "u upitu" msgid "Matched rows:" msgstr "Zahvaćeni redovi:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1161,13 +1161,13 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -1175,8 +1175,8 @@ msgstr "Lozinke nisu identične!" msgid "Removing Selected Users" msgstr "Uklanjanje izabranih korisnika" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Zatvori" @@ -1204,19 +1204,19 @@ msgstr "Red je obrisan" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Ostalo" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1335,40 +1335,40 @@ msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1386,7 +1386,7 @@ msgstr "Pitanja" msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Podešavanja" @@ -1402,16 +1402,16 @@ msgid "Please add at least one variable to the series!" msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "nema" @@ -1606,20 +1606,20 @@ msgstr "Aniliziram…" msgid "Explain output" msgstr "Objasni izlaz" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Vreme" @@ -1708,10 +1708,10 @@ msgstr "" "podrazumevanu konfiguraciju…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Uvoz" @@ -1790,7 +1790,7 @@ msgstr "Pogrešni parametri!" msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" @@ -1838,8 +1838,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." @@ -1887,7 +1887,7 @@ msgstr "Kopiranje baze" msgid "Changing charset" msgstr "Izmena seta znakova" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1918,75 +1918,80 @@ msgstr "Pregledanje" msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Obriši rezultate pretrage za %s tabelu?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicija uskladištene funkcije mora imati RETURN iskaz!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Izvoz" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Vrednosti za kolonu %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Vrednosti za novu kolonu" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Unesi svaku vrednost u posebno polje" -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Imajte u vidu: Ako datoteka sadrži više tabela, one će biti kombinovane u " "jednu." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Sakrij okvir sa upitima" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Prikažiokvir sa upitima" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1994,108 +1999,108 @@ msgstr "Prikažiokvir sa upitima" msgid "Edit" msgstr "Promeni" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Obriši" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Promenljiva" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nema odabranih redova" -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pretraživanje baze" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Slobodna memorija" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Doprinesi" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primarni ključ je upravo dodat %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Izveštaj o praćenju" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2103,271 +2108,271 @@ msgstr "" msgid "End of step" msgstr "Na kraju tabele" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Gotovo" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Sakrij kriterijume za pretragu" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Prikaži kriterijume za pretragu" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Pretraga tabele" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Imena kolona: " -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Imena kolona: " -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maksimalan broj tabela" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maksimalan broj tabela" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Sakrij kriterijume za pretragu" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Prikaži kriterijume za pretragu" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Svaka tačka pretsavlja jedan red podataka." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Ako zadržite kursor miša iznad tačke biće prikazan opis." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Da bi ste uvećali prikaz, izaberite deo prikaza sa mišem." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Klikni na tačku sa podacima da bi video ili eventualno izmenio red podataka." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Veličina prikaza može da se promeni ako ga uhvatite i povučete mišem u " "donjem desnom uglu." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Izaberi dve kolone" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Izaberite dve različite kolone" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Sadržaj tačke podataka" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Tačka" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linija teksta" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Unutrašnji prsten" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Spoljni prsten" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Izaberi kolonu za prikaz" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2375,95 +2380,95 @@ msgstr "" "Niste snimili izmene u raspored. Biće izgubljene ako ih ne snimite. Da li " "želite da nastavite?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Ime strane" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "Izaberi stranu" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "Izaberi stranu" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Slobodne strane" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Izaberi stranu" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Jedinica" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Nije ispravan broj porta" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Uredi ili izvezi relacionu shemu" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Dodaj opciju za kolonu " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Pošalji" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "Prtisni escape da otkažeš uređivanje" -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2471,49 +2476,49 @@ msgstr "" "Izmenili ste neke podatke i izmene nisu sačuvane. Da li ste sigurni da " "želite da napustite ovu stranu pre nego što snimite podatke?" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "Povucite da bi ste promenili redosled" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Kliknite da postavite/skinete oznaku" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Copy column name" msgid "Double-click to copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:588 +#: js/messages.php:589 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Kliknite strelici na dole
da bi ste izmenili vidljivost kolone" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2522,60 +2527,60 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Originalna pozicija" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Otkaži" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Podrazumevane opcije uvoza" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Štampaj" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2584,7 +2589,7 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2593,72 +2598,72 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Idi na link" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Generiši lozinku" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generiši" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Još" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Sakrij indekse" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u levom okviru" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Prilagođavanje glavnog okvira" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Prilagođavanje glavnog okvira" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2668,124 +2673,124 @@ msgstr "" "nadogradnji. Najnovije verzija je %s, objavljena %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", poslednja stabilna verzija:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "Ažurno" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Napravi pogled" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Port na serveru" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Port na serveru" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Izmeni podešavanja" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tabele" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Da li stvarno hoćete da izvršite \"%s\"?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Izvršeni upiti" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sakrij tezultate pretrage" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2794,385 +2799,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiraj bazu u" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Zameni prefix tabele" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zameni prefix tabele" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tabelu sa prefiksom" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Danas" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Januar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Februar" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Mart" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "April" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Maj" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Jun" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Jul" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Avgust" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Septembar" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Oktobar" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Novembar" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Decembar" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Nedelja" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Ponedeljak" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Utorak" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Sreda" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Četvrtak" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Petak" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Sr" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Če" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Su" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Vk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalendar-mesec-godina" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Čas" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minut" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekund" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Nije ispravan broj porta" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Nije ispravan broj porta" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nije ispravan broj porta" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nije ispravan broj porta" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nije ispravan broj porta" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nije ispravan broj porta" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Nije ispravan broj porta" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Nije ispravan broj porta" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nije ispravan broj porta" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Nije ispravan broj porta" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Nije ispravan broj porta" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Nije ispravan broj porta" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nije ispravan broj porta" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nije ispravan broj porta" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Greška" @@ -3234,20 +3259,20 @@ msgid "Charset" msgstr "Karakter set" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Sortiranje" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binarni" @@ -3444,7 +3469,7 @@ msgid "Czech-Slovak" msgstr "Češko-slovački" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "nepoznat" @@ -3500,7 +3525,7 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3508,25 +3533,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Obriši relaciju" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "Okvir sa SQL upitima" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Neuspelo čitanje iz konfiguracione datoteke" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3534,25 +3559,25 @@ msgstr "" "Nema odgovora sa servera (ili priključak lokalnog servera nije ispravno " "podešen)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Server ne odgovara." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Nedostaje parametar:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, " @@ -3662,67 +3687,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Izvrši SQL upit" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Pretraživanje" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Obriši relaciju" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Obriši relaciju" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Prikazivanje markera" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Obriši relaciju" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "bar jednu od reči" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "sve reči" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "tačan izraz" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "kao regularni izraz" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3730,7 +3755,7 @@ msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodak" msgstr[2] "Ukupno: %s pogodaka" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3739,48 +3764,43 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Pregled" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Obriši rezultate pretrage za %s tabelu?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Pretraživanje baze" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Traži:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Reči se odvajaju razmakom (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Unutar tabela:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ništa" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Unutar kolone::" @@ -3804,30 +3824,30 @@ msgstr "Filteri" msgid "Search this table" msgstr "Pretraživanje baze" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Sledeća" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Kraj" @@ -3836,7 +3856,7 @@ msgstr "Kraj" msgid "All" msgstr "Sve" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Broj redova:" @@ -3845,8 +3865,8 @@ msgstr "Broj redova:" msgid "Sort by key" msgstr "Sortiraj po ključu" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3868,10 +3888,10 @@ msgstr "Sortiraj po ključu" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Opcije" @@ -3913,35 +3933,35 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Red je obrisan" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL upit je uspešno izvršen" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3950,80 +3970,80 @@ msgstr "" "Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte " "%sdokumentaciju%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ukupno" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Označi sve" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Veza nije pronađena" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Nema" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4031,29 +4051,29 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "Peviše poruka o greškama, neke nisu prikazane." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Uvoz" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatically create versions" msgid "Automatically send report next time" msgstr "Automatski kreiraj verzije" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Datoteka nije upload-ovana datoteka." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Poslata datoteka prevazilazi vrednost promenljive upload_max_filesize u php." "ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4061,37 +4081,37 @@ msgstr "" "Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je " "navedena u HTML formi." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Poslata datoteka je samo delimično primljena." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Nedostaje privremeni direktorijum." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Neuspelo upisivanje datoteke na disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Prijem datoteke zaustavljen zbog ekstenzije." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Datoteku nije moguće pročitati" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4099,17 +4119,17 @@ msgstr "" "Greška u premeštanju primljene datoteke, pogledajte [doc@faq1-11]FAQ 1.11[/" "doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Greška kod premeštanja primljene datoteke." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Nije moguće pročitati (premeštenu) primljenu datoteku." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4118,30 +4138,30 @@ msgstr "" "Pokušali ste da uvezete datoteku sa kompresijom koja nije podržana (%s). Ili " "podrška za nju nije implementirana, ili je isključena u vašoj konfiguraciji." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Informacije o verziji" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Za štampu" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4152,20 +4172,20 @@ msgid "No index defined!" msgstr "Indeks nije definisan!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4175,59 +4195,59 @@ msgstr "Indeksi" msgid "Action" msgstr "Akcija" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Pakovano" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Komentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Primarni ključ je obrisan." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s je obrisan." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Odbaci" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4236,19 +4256,19 @@ msgstr "" "Indeksi %1$s and %2$s izgleda da su jednaki i jedan od njih verovatno može " "da se ukloni." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Broj strane:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Jezik" @@ -4272,11 +4292,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4295,14 +4315,15 @@ msgid "View" msgstr "Pogled" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4311,8 +4332,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4320,45 +4341,45 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Pretraživanje" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4374,16 +4395,16 @@ msgstr "Okidači" msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4391,22 +4412,22 @@ msgstr "Rutine" msgid "Events" msgstr "Događaji" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Kolone tekstulanih polja" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Baze" @@ -4417,39 +4438,39 @@ msgid "User accounts" msgstr "Korisnici" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binarni dnevnik" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Promenljive" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Skladištenja" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4457,7 +4478,7 @@ msgstr[0] "%1$d red zahvaćen." msgstr[1] "%1$d redova zahvaćeno." msgstr[2] "%1$d redova zahvaćeno." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4465,7 +4486,7 @@ msgstr[0] "%1$d red obrisan." msgstr[1] "%1$d redova obrisano." msgstr[2] "%1$d redova obrisano." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4530,31 +4551,31 @@ msgstr "Promenljive" msgid "Favorites" msgstr "Promenljive" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "Missing information to save the bookmarked search." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "Korisnik %s već postoji!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4618,7 +4639,7 @@ msgstr "Prikaži otvorene tabele" msgid "Show slave hosts" msgstr "Prikaži podređene server" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Prikaži status master servera" @@ -4674,80 +4695,80 @@ msgstr[0] "%d minut" msgstr[1] "%d minuta" msgstr[2] "%d minuta" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je dostupan na ovom MySQL serveru." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogućen na ovom MySQL serveru." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr "Nepoznat status tabele: " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Nije pronađena tema %s!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Neispravna baza podataka" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Neispravan naziv tabele" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Greška pri preimenovanju tabele %1$s u %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promenjeno ime u %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "Nije bilo moguće saćuvati podešavanja korisničkog interfejsa tabele" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4756,7 +4777,7 @@ msgstr "" "Neuspelo brisanje podešavanja korisničkog interfejsa tabele (pogledajte " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4767,19 +4788,19 @@ msgstr "" "neće biti trajne nakon osveženja ove strane. Molimo vas da proverite da li " "je struktura tabele izmenjena." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnog ključa mora da bude \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Delovi ključa nisu definisani!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5053,7 +5074,7 @@ msgid "Date and time" msgstr "Napravi novi ključ" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5072,72 +5093,72 @@ msgstr "Ukupno" msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statički podaci" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "bez PHP koda" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izvrši SQL upit" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Napravi PHP kod" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Osveži" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilisanje" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5145,66 +5166,66 @@ msgid "Edit inline" msgstr "Uredi indeks" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Nedostaje parametar:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Pređi na bazu \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Pretražite vaš kompjuter:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Izaberi iz direkorijuma otpremljenih datoteka %s na web serveru:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Direktorijum koji ste izabrali za slanje nije dostupan." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Nema datoteka za otpremanje" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Korisnici" @@ -5218,7 +5239,7 @@ msgstr "u minutu" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "po satu" @@ -5226,14 +5247,14 @@ msgstr "po satu" msgid "per day" msgstr "po danu" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Pretraživanje" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5241,7 +5262,7 @@ msgstr "Pretraživanje" msgid "Description" msgstr "Opis" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Koristi ovu vrednost" @@ -5282,22 +5303,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Ime" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Dužina/Vrednost*" @@ -5308,7 +5329,7 @@ msgstr "Dužina/Vrednost*" msgid "Attribute" msgstr "Atributi" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5329,13 +5350,13 @@ msgstr "Dodaj kolonu" msgid "Select a column." msgstr "Izaberi dve kolone" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column" msgid "Add new column" msgstr "Dodaj kolonu" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5343,7 +5364,7 @@ msgstr "Dodaj kolonu" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5353,27 +5374,27 @@ msgstr "" "opcija je nekompatibilna sa phpMyAdmin i može dovesti do grešaka u nekim " "podacima!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5381,20 +5402,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "moguća zloupotreba" @@ -6019,7 +6040,7 @@ msgid "Compress on the fly" msgstr "Kompresija u letu" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfiguraciona datoteka" @@ -6149,13 +6170,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Maksimalno vreme izvršavanja" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Dodaj %s iskaz" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Sačuvaj kao datoteku" @@ -6165,7 +6186,7 @@ msgstr "Karakter set datoteke" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6300,7 +6321,7 @@ msgid "Save on server" msgstr "Snimi na server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" @@ -6315,7 +6336,7 @@ msgid "Remember file name template" msgstr "Zapamti šablon imena datoteke" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" @@ -6324,7 +6345,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Stavi imena tabela i kolona u komentar" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" @@ -6358,7 +6379,7 @@ msgstr "Nedostaju phpMyAdmin skladišne tabele" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -6563,7 +6584,7 @@ msgid "Customize the navigation tree." msgstr "Prilagođavanje navigacionog okvira" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serveri" @@ -7616,7 +7637,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Podešavanje autentikacije" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8291,7 +8312,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8299,10 +8320,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8457,25 +8478,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Pogled %s je odbačen" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8490,12 +8511,12 @@ msgid "Position" msgstr "Pozicija" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Vrsta događaja" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID servera" @@ -8504,7 +8525,7 @@ msgid "Original position" msgstr "Originalna pozicija" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Informacije" @@ -8518,16 +8539,16 @@ msgstr "Prikaži skraćene upite" msgid "Show Full Queries" msgstr "Prikaži kompletne upite" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Baza ne postoji" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -8536,26 +8557,26 @@ msgstr[0] "%s baza je uspešno odbačeno." msgstr[1] "%s baza je uspešno odbačeno." msgstr[2] "%s baza je uspešno odbačeno." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Redova" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Ukupno" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Prekoračenje" @@ -8584,35 +8605,35 @@ msgstr "" msgid "Enable statistics" msgstr "Uključi statistike" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Serverske promenljive i podešavanja" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Neuspelo podešavanje promenljive" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "Nema podataka" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabela %1$s je uspešno izmenjena." @@ -8670,7 +8691,7 @@ msgstr "Izabrani korisnici su uspešno obrisani." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Greška u upitu" @@ -8688,12 +8709,12 @@ msgstr "Promeni" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Ključ" @@ -8716,13 +8737,13 @@ msgstr "Tekst ključ" msgid "Distinct values" msgstr "Pregledaj različite vrednosti" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmena" @@ -8744,189 +8765,193 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Lozinka:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Ponovite unos" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Heširanje lozinke" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Izvoz baza sa tekućeg servera" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Izvoz tabela iz \"%s\" baze" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Izvoz redova iz \"%s\" tabele" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Tip izvoza" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Šablon imena datoteke:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Naziv tabele" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Napravi" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Šablon imena datoteke:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "Stopa upotrebe privremenog diska" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Ažurirano" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Izaberi tabele" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Način izvoza" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Prilagođeni prikaz svih mogućih opcija" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Baze" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tabele" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Opcije specifične za format:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Konverzija kodiranja:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Redovi:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Izbaci neke redove" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Red da počne na:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Izbaci sve redove" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Sačuvaj na server u direktorijum %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Šablon imena datoteke:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8938,115 +8963,115 @@ msgstr "" "transformacije: %3$s. Preostali tekst će ostati kako jeste. Čogledaj %4$sFAQ" "%5$s za detalje." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Karakter set datoteke:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Kompresija:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zipovano" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "spakovano gzip-om" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Pogledaj izlaz kao tekst" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export databases as separate files" msgstr "Izvoz redova iz \"%s\" tabele" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Sačuvaj izlaz u datoteku" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Izaberi tabele" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Izaberi tabele" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database name" msgid "New database name" msgstr "Naziv baze" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "Ime nove strane: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "Kopiraj ime kolone" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "Kopiraj ime kolone" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nije moguće učitati dodatke za izvoz, molimo proverite svoju instalaciju!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Napravi relaciju" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Napravi relaciju" @@ -9482,13 +9507,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9496,74 +9521,74 @@ msgstr "" "Datoteka %s već postoji na serveru, promenite ime datoteke ili uključite " "opciju prepisivanja." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Idi na bazu: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Idi na tabelu: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9574,82 +9599,83 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Kreiraj indeks na  %s kolonama" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funkcija" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Zbog njene veličine,
ova kolona možda neće moći da se izmeni" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ili" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direktorijum za slanje veb servera" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Uredi/Umetni" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Nastavi umetanje sa %s redova" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "i onda" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Prikaži insert upit" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9659,8 +9685,8 @@ msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9671,31 +9697,31 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Samo struktura" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktura i podaci" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Samo podaci" @@ -9706,14 +9732,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Dodaj ograničenja" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9772,8 +9798,8 @@ msgstr "Procedure" msgid "Views:" msgstr "Pogledi" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Prikaži" @@ -9821,19 +9847,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Sačuvaj kao datoteku" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9849,7 +9875,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Nije moguće snimiti konfiguraciju" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9870,7 +9896,7 @@ msgstr "" msgid "Database operations" msgstr "Opcije za izvoz baze" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9973,13 +9999,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "Izaberi dve kolone" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10234,8 +10260,8 @@ msgid "Rename database to" msgstr "Preimenuj bazu u" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10283,183 +10309,183 @@ msgstr "(po jednom polju)" msgid "Move table to (database.table)" msgstr "Pomeri tabelu u (baza.tabela)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Promeni ime tabele u" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Komentari tabele" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Opcije tabele" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Pogon skladištenja" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopiraj tabelu u (baza.tabela)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Proveri tabelu" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Proveri tabelu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentiraj tabelu" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s je osvežena." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Snimi sve baferovane izmene nad tabelom (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Popravi tabelu" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Brisanje podataka ili tabele" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Brisanje tabele (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Provera" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Popravi" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Zatvori" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Održavanje particija" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Ne mogu da premestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s je pomerena u %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomerena u %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Ovaj format nema opcije" @@ -10488,18 +10514,18 @@ msgstr "Prikaži boju" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Ne mogu da se povežem: neispravna podešavanja." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10508,7 +10534,7 @@ msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10520,7 +10546,7 @@ msgstr "" "php i uverite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10547,15 +10573,15 @@ msgstr "Korisničko ime:" msgid "Server Choice:" msgstr "Izbor servera" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10618,7 +10644,7 @@ msgstr "Opcije za izvoz podataka" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10627,7 +10653,7 @@ msgstr "Prikaz podataka tabele" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Događaji" @@ -10635,8 +10661,8 @@ msgstr "Događaji" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definicija" @@ -10730,7 +10756,7 @@ msgstr "Stavi imena kolona u prvi red" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11291,7 +11317,7 @@ msgstr "Sadržaj" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Dodatno" @@ -11698,18 +11724,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "nema opisa" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11717,41 +11743,41 @@ msgid "" "configuration storage there." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11760,312 +11786,312 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Molimo vas izaberite baze:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "maks. istovremenih veza" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Kompletan start" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Kompletan stop" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Pokreni samo SQL nit" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Pokreni samo UI nit" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Lozinka" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Port" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Status Mastera" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Status podređenog" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Promenljiva" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Domaćin" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Ponovite unos" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Generiši lozinku" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Status replikacije" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Status replikacije" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Greška" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "Master server uspešno promenjen u %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12086,7 +12112,7 @@ msgstr "Događaj %1$s je izmenjen." msgid "Event %1$s has been created." msgstr "Događaj %1$s je kreiran." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12095,77 +12121,77 @@ msgstr "" msgid "Edit event" msgstr "Izmeni događaj" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Ime događaja" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Promeni u %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Izvrrši svaki" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Početak" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Kraj" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Po okončanju sačuvaj" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide an event name!" msgstr "Morate uneti ispravno ime tabele" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -12188,7 +12214,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Vraća" @@ -12200,122 +12226,122 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Izmena rutine" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Neispravan tip rutine: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Routina %1$s je kreirana." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Routina %1$s je modifikovana." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Routina %1$s je modifikovana." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Ime rutine" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Pravac" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Ukloni poslednji parametar" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Povratni tip" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Vrati dužina/vrednosti" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Povratne opcije" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Tip sigurnosti" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a routine name!" msgstr "Morate uneti ispravno ime tabele" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Rezultat izvršavanja rutine %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12323,13 +12349,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Parametri rutine" @@ -12351,40 +12377,40 @@ msgstr "Okidač %1$s je kreiran." msgid "Edit trigger" msgstr "Izmeni okidač" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Ime okidača" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Vreme" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a trigger name!" msgstr "Morate uneti ispravno ime tabele" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Morate uneti ispravno ime tabele" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid event for the trigger!" msgstr "Morate uneti ispravno ime tabele" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "Morate uneti ispravno ime tabele" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12511,91 +12537,91 @@ msgstr "Karakter setovi i sortiranje" msgid "Databases statistics" msgstr "Statistika baze" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Nema privilegija." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12605,132 +12631,106 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "Omogućava kreiranje i brisanje okidača" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Nema" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Trajne veze" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Trajne veze" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ograničenja resursa" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12738,404 +12738,383 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutine" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administracija" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globalne privilegije" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "globalno" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "Autentikacija" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Promeni lozinku" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authentication" -msgid "Native MySQL Authentication" -msgstr "Autentikacija" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Podaci o prijavi" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Ime korisnika" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Naziv dnevnika" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentikacija" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Heširanje lozinke" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza za korisnika" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Dodeli sva prava pristupa za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Korisnik je dodat." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Ni jedan korisnik nije pronađen." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Uredi sledeći red" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Ukloni izabrane korisnike" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Odbaci baze koje se zovu isto kao korisnici." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Korisnici" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13148,7 +13127,7 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13167,11 +13146,11 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -13452,12 +13431,12 @@ msgstr "Naredba" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filteri" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13486,12 +13465,12 @@ msgstr "u minutu" msgid "per second:" msgstr "u sekundi" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13515,17 +13494,17 @@ msgstr "Prikaži neformatirane vrednosti" msgid "Related links:" msgstr "ovezani linkovi:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj neuspelih pokušaja povezivanja na MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13535,16 +13514,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13556,11 +13535,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13568,7 +13547,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13576,7 +13555,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13584,23 +13563,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13610,7 +13589,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13620,7 +13599,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13628,7 +13607,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13638,7 +13617,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13646,7 +13625,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13658,7 +13637,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13670,35 +13649,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13708,7 +13687,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13720,11 +13699,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13732,7 +13711,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13740,11 +13719,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13752,7 +13731,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13766,55 +13745,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13822,35 +13801,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13859,52 +13838,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13912,7 +13891,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13920,7 +13899,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13930,17 +13909,17 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format datoteka za uvoz" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13950,26 +13929,26 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13979,17 +13958,17 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13997,39 +13976,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14041,7 +14020,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14049,19 +14028,19 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -14069,11 +14048,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -14082,7 +14061,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14090,15 +14069,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14106,11 +14085,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14118,12 +14097,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14133,23 +14112,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14161,7 +14140,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14171,11 +14150,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14187,13 +14166,13 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Praćenje nije aktivno." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." @@ -14230,49 +14209,49 @@ msgstr "Server baze podataka" msgid "Table level tabs" msgstr "Komentari tabele" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Pogledi" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Dodaj korisnika" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Nema privilegija." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Imena kolona: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Verzija servera" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Server baze podataka" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14401,7 +14380,7 @@ msgstr "Izvrši SQL upit(e) na bazi %s" msgid "Run SQL query/queries on table %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Obriši" @@ -14491,178 +14470,178 @@ msgstr "" msgid "Version" msgstr "Verzija" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Kreirano" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Ažurirano" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Kreiraj verziju" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Izveštaj o praćenju" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Snimak strukture" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktivno" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "neaktivno" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Obriši red sa podacima o praćenju iz izveštaja" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Nema podataka" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Izvezi kao %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Korisničko ime" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ništa" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Praćenje je aktivno." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Praćenje je aktivno." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Napravi relaciju" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Nepraćene tabele" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Prati tabelu" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Praćene tabele" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Poslednja verzija" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Brisanje podataka o praćenju" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Verzije" @@ -14670,7 +14649,7 @@ msgstr "Verzije" msgid "Manage your settings" msgstr "Upravljanje podešavanjima" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfiguracija je sačuvana." @@ -14694,7 +14673,7 @@ msgstr "Greška u ZIP arhivi:" msgid "No files found inside ZIP archive!" msgstr "U ZIP arhivi nema datoteka!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14702,82 +14681,82 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Nije moguće uvesti konfiguraciju" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Uvoz iz datoteke" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Sačuvaj kao datoteku" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14785,45 +14764,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Nema privilegija" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspešno prekinut." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14831,99 +14810,98 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Podešavanja su sačuvana." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Podešavanja su sačuvana." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Učitavanje" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin početna stranica" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Doniraj" @@ -14959,28 +14937,28 @@ msgstr "" msgid "Show form" msgstr "Prikaži formu" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14993,12 +14971,12 @@ msgstr "Pogrešan podatak" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s već postoji!" @@ -15011,36 +14989,36 @@ msgstr "Prikaži sadržaj (shemu) tabele" msgid "Invalid table name" msgstr "Neispravan naziv tabele" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "Praćenje je aktivno." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15261,7 +15239,7 @@ msgid "List of available transformations and their options" msgstr "Dostupne transformacije" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15287,7 +15265,7 @@ msgstr "" "primer '\\\\xyz' ili 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15810,17 +15788,17 @@ msgid "Size" msgstr "Veličina" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Napravljeno" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Poslednja izmena" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Poslednja provera" @@ -15855,6 +15833,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "Brisanje podataka o praćenju" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15877,10 +15861,45 @@ msgstr "Dodaj privilegije na sledećoj tabeli" msgid "Add privileges on the following table:" msgstr "Dodaj privilegije na sledećoj tabeli" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Nema" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Ukloni izabrane korisnike" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Odbaci baze koje se zovu isto kao korisnici." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ograničenja resursa" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" @@ -15913,7 +15932,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "onemogućeno" @@ -16085,7 +16104,7 @@ msgstr "Korisnik" msgid "Comment:" msgstr "Komentar" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16125,28 +16144,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dodaj ograničenja" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Unutrašnje relacije" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Unutrašnja relacija" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16210,13 +16229,13 @@ msgstr "Originalna pozicija" msgid "Replaced string" msgstr "Srodne veze" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "Replikovano" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Dodatni kreterijum za pretragu" @@ -16297,7 +16316,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16329,28 +16348,28 @@ msgstr "Dužina reda" msgid "Index length" msgstr "Dužina reda" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Pozicija" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit index" msgid "Edit partitioning" msgstr "Uredi indeks" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Uredi pogled" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Zauzeće" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Efektivne" @@ -16381,33 +16400,33 @@ msgstr "Predloži strukturu tabele" msgid "Track view" msgstr "Prati tabelu" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Statistike reda" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamički" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Dužina reda" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Veličina reda" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16420,50 +16439,50 @@ msgstr "Kolona %s je obrisana." msgid "Click to toggle" msgstr "Kliknite da biste zamenili" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Dostupni MIME-tipovi" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Dostupne transformacije" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Dostupne transformacije" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Izveštaj o praćenju" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovde!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil je promenjen." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16538,7 +16557,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16563,19 +16582,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Nije izabrana ni jedna baza." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16636,29 +16655,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Događaj %1$s je kreiran." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Šablon imena tabele" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16675,10 +16694,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Na početku tabele" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16725,7 +16750,7 @@ msgstr "" msgid "strict error" msgstr "Prikupljanje grešaka" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17865,6 +17890,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je postavljeno na 0" +#, fuzzy +#~| msgid "Authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autentikacija" + #, fuzzy #~| msgid "Allow logins without a password" #~ msgid "Try to connect without password." diff --git a/po/sv.po b/po/sv.po index 916cb0086d..bb2bbc3b7a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-18 10:33+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Swedish " -"\n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,31 +27,31 @@ msgstr "" "Filen %s är inte tillgänglig i detta system, gå till www.phpmyadmin.net för " "mer information." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Huvudförteckningen över kolumner i den aktuella databasen är tom." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Klicka för att sortera." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Visar raderna %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Databaskommentar" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Tabellkommentarer:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -63,13 +63,13 @@ msgstr "Tabellkommentarer:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -80,9 +80,9 @@ msgstr "Tabellkommentarer:" msgid "Column" msgstr "Kolumn" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -93,12 +93,12 @@ msgstr "Kolumn" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -110,9 +110,9 @@ msgstr "Kolumn" msgid "Type" msgstr "Typ" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -123,15 +123,15 @@ msgstr "Typ" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "nolläge" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -142,14 +142,14 @@ msgstr "nolläge" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Standardvärde" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -159,7 +159,7 @@ msgstr "Standardvärde" msgid "Links to" msgstr "Länkar till" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -173,19 +173,19 @@ msgstr "Länkar till" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Primär" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -193,13 +193,13 @@ msgstr "Primär" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -207,17 +207,17 @@ msgstr "Primär" msgid "No" msgstr "Nej" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -226,13 +226,13 @@ msgstr "Nej" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -244,15 +244,15 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Visa dumpschema från databasen" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -261,8 +261,8 @@ msgid "Tables" msgstr "Tabeller" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -270,10 +270,10 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,27 +286,27 @@ msgstr "Struktur" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Data" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Välj alla" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Databasen %1$s har bytt namn till %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Databasen %1$s har kopierats till %2$s." @@ -317,37 +317,37 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "PhpMyAdmins konfigurationslagring har inaktiverats. %sSe varför%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Du måste välja minst en kolumn som ska visas!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Växla till %sgrafisk modellerare%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Åtkomst nekad!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Radering av Spårningsdata lyckades." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "Version %1$s är skapad, spårning är aktiverad." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Inga tabeller markerade." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Databas-logg" @@ -386,131 +386,131 @@ msgstr "Dålig typ!" msgid "Bad parameters!" msgstr "Felaktiga parametrar!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Värde för kolumn \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Använd OpenStreetMaps som baslager" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometri %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Lägg till en punkt" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Linjesträng %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Yttre ring:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Inre ring %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Lägg till ny linestring" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Lägg till ny inre ring" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Polygon %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Addera polygon" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Addera geometri" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Kör" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Utdata" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -518,19 +518,19 @@ msgstr "" "Välj \"GeomFromText\" i kolumnen \"Funktion\" och klistra in strängen i " "fältet \"Värde\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Lyckades" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Misslyckades" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Ofullständig parametrar" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -539,15 +539,15 @@ msgstr "" "Du försökte ladda upp en fil som är för stor. Se %sdocumentation%s för att " "gå runt denna begränsning." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Bokmärket har tagits bort." -#: import.php:489 +#: import.php:486 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 " @@ -557,24 +557,24 @@ msgstr "" "översteg filens storlek den maximalt tillåtna storleken i din PHP-" "konfiguration. Se [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Kunde inte läsa in insticksprogram för import, kontrollera din installation!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Bokmärket %s har skapats." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Importen har slutförts korrekt, %d förfrågan genomförd." msgstr[1] "Importen har slutförts korrekt, %d förfrågningar genomförda." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -583,7 +583,7 @@ msgstr "" "Timeout för skript passerade, om du vill avsluta import, vänligen %sresubmit " "samma fil%s och import kommer att återupptas." -#: import.php:632 +#: import.php:629 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." @@ -592,7 +592,7 @@ msgstr "" "att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s " "tidsbegränsningar." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-satser är inaktiverade." @@ -600,17 +600,17 @@ msgstr "\"DROP DATABASE\"-satser är inaktiverade." msgid "Could not load the progress of the import." msgstr "Kunde inte läsa av status på import." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Återgå" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Demoserver för phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -621,107 +621,107 @@ msgstr "" "användarna root, debian-sys-maint och pma. Mer information finns tillgänglig " "på %s." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Generella inställningar" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Byt lösenord" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Serveranslutning kollationering" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Anpassa utseende" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Fler inställningar" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Databas-server" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Server:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Servertyp:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Serverversion:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protokollversion:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Användare:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Serverns teckenuppsättning:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Webbserver" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Databasens klientversion:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP-tillägg:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP-version:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Versionsinformation:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentation" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "officiella hemsida" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Bidra" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Support" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Lista över ändringar" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Licens" -#: index.php:443 +#: index.php:444 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 " @@ -731,7 +731,7 @@ msgstr "" "flerbitars teckenuppsättning. phpMyAdmin kan inte dela upp strängar korrekt " "utan tillägget mbstring, vilket kan resultera i oväntade resultat." -#: index.php:458 +#: index.php:459 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." @@ -740,7 +740,7 @@ msgstr "" "av detta är vissa funktioner, som felrapportering och versionskontroll, " "avstängda." -#: index.php:473 +#: index.php:474 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 " @@ -752,7 +752,7 @@ msgstr "" "cookie-giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din " "inloggning upphöra tidigare än vad som är konfigurerat i phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -761,16 +761,16 @@ msgstr "" "phpMyAdmin, på grund av detta kommer dina inloggningsuppgifter upphöra att " "gälla tidigare än konfigurerats i phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" "Den hemliga lösenordsfrasen i konfigurationen (blowfish_secret) är för kort." -#: index.php:528 +#: index.php:529 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 " @@ -782,7 +782,7 @@ msgstr "" "den när phpMyAdmin har konfigurerats. I annat fall kan din servers säkerhet " "hotas av obehöriga som laddar ner din konfiguration." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -791,14 +791,14 @@ msgstr "" "phpMyAdmin-konfigurationen är inte fullständigt konfigurerad, vissa utökade " "funktioner har inaktiverats. För att ta reda på varför klicka %shär%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Eller alternativt gå till \"Drift\" fliken i någon databas till sätta den " "upp där." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -807,7 +807,7 @@ msgstr "" "Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " "%s. Detta kan orsaka oförutsägbara beteenden." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -974,7 +974,7 @@ msgid "Save & close" msgstr "Avsluta och Spara" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Återställ" @@ -1006,7 +1006,7 @@ msgstr "Lägg till index" msgid "Edit index" msgstr "Redigera register" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Lägg till %s kolumn(er) till index" @@ -1031,10 +1031,10 @@ msgstr "Välj kolumner för indexet." msgid "You have to add at least one column." msgstr "Du måste lägga till åtminstone en kolumn." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Förhandsgranska SQL" @@ -1046,7 +1046,7 @@ msgstr "Simulera körning" msgid "Matched rows:" msgstr "Matchande rader:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL-fråga:" @@ -1063,13 +1063,13 @@ msgstr "Värdnamnet är tomt!" msgid "The user name is empty!" msgstr "Användarnamnet saknas!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Lösenordet saknas!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" @@ -1077,8 +1077,8 @@ msgstr "Lösenorden överensstämmer inte!" msgid "Removing Selected Users" msgstr "Tar bort valda användare" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Stäng" @@ -1100,19 +1100,19 @@ msgstr "Mallen har tagits bort." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Annan" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1218,40 +1218,40 @@ msgid "Processes" msgstr "Processer" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "kB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mb" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1269,7 +1269,7 @@ msgstr "Frågor" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Inställningar" @@ -1283,16 +1283,16 @@ msgid "Please add at least one variable to the series!" msgstr "Lägg till minst en variabel till serien!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Inget" @@ -1485,20 +1485,20 @@ msgstr "Analyserar…" msgid "Explain output" msgstr "Förklara utdata" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Tid" @@ -1586,10 +1586,10 @@ msgstr "" "Återställer till ursprunglig konfiguration…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Importera" @@ -1662,7 +1662,7 @@ msgstr "Inga parametrar funna!" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Sida-relaterade inställningar" @@ -1702,8 +1702,8 @@ msgid "Error text: %s" msgstr "Felmeddelande: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Inga databaser markerade." @@ -1741,7 +1741,7 @@ msgstr "Kopiera databas" msgid "Changing charset" msgstr "Ändrar teckenuppsättning" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Inaktivera kontroll av främmande nycklar" @@ -1769,72 +1769,77 @@ msgstr "Bläddrar bland" msgid "Deleting" msgstr "Raderar" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Ta bort resultat som matchar %s tabellen?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Definitionen av en sparad funktion måste innehålla en RETURN-programsats!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Exportera" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "Ingen rutin är exporterbar. Nödvändiga privilegier kan saknas." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Värden för kolumn %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Värden för ny kolumn" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Mata in varje värde i separat fält." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Lägg till %d värde(n)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Obs: Om filen innehåller multipla tabeller, kommer de förenas till en." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Göm sök-rutan" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Visa frågerutan" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1842,53 +1847,53 @@ msgstr "Visa frågerutan" msgid "Edit" msgstr "Redigera" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Radera" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Ingen auto-sparad fråga" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Miljövariabeln %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Välj" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Kolumnväljaren" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Sök i denna lista" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1897,15 +1902,15 @@ msgstr "" "Inga kolumner i huvud listan. Kontrollera att huvudlistan för databasen %s " "har kolumner som inte finns i den aktuella tabellen." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Se mer" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Är du säker?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1913,51 +1918,51 @@ msgstr "" "Den här åtgärden kan ändra några av kolumnerna definitionen.
Är du " "säker på att du vill fortsätta?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Fortsätt" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Lägg till primär nyckel" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "En primär nyckel har lagts till för %s." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Tar dig till nästa steg…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Det första steget av normalisering är klar för tabellen '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Delslut" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Andra steget av normalisering (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Klart" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Bekräfta partiellt beroenden" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Valda partiell beroenden är följande:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1965,19 +1970,19 @@ msgstr "" "Obs: a, b-> d f innebär värden i kolumner a och b tillsammans kan bestämma " "värdena i kolumn d och f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Inga partiella beroenden valda!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Visa mig möjliga partiella beroenden baserat på data i tabellen" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Dölj partiella beroende-listan" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1985,179 +1990,179 @@ msgstr "" "Bara lugn! Det kan ta några sekunder beroende på data och kolumn räkna i " "tabellen." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Steg" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Följande åtgärder utförs:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "RADERA kolumner %s från tabellen %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Skapa följande tabell" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Tredje steget i normalisering (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Bekräfta transitiva beroenden" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Valda beroenden är följande:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Inga beroenden valda!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Spara" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Dölj sökkriterier" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Sökområde" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Högsta kolumn:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Minsta kolumn:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Minsta värde:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Högsta värdet:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Dölj sök och ersätt kriterierna" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Visa sök och ersätt kriterierna" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Varje punkt representerar en dataserie." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Hovring över en punkt kommer visa dess etikett." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "För att zooma in, välj en del av grafen med musen." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Klicka på återställningsknappen för att komma tillbaka till ursprungsläget." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Klicka på en datapunkt för att visa och eventuellt redigera dataraden." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Kan ändra storlek genom att dra den längs nedre högra hörnet." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Välj två kolumner" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Välj två olika kolumner" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Innehåll för datapunkt" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopiera" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Punkt" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Inre ringen" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Yttre ring" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Vill du kopiera krypteringsnyckeln?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Krypteringsnyckel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2165,24 +2170,24 @@ msgstr "" "Anger att du har gjort ändringar på denna sida; du uppmanas att bekräfta " "bortdöende från förändringar" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Välj den primära nyckeln eller en unik nyckel!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Välj kolumn att visa" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2190,76 +2195,76 @@ msgstr "" "Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte " "sparar dem. Vill du fortsätta?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Sidnamn" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Spara sidan" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Spara sidan som" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Öppen sida" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Radera sida" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Namnlöst" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Välj en sida för att fortsätta" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Vänligen ange ett giltigt sidnamn" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Vill du spara ändringarna i den aktuella sidan?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Raderingen av sidan lyckades" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Exportera relationsschema" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lägg till ett alternativ för kolumnen \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d objekt skapade." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Sänd" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Tryck Escape för att avbryta redigeringen." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2267,15 +2272,15 @@ msgstr "" "Du har redigerat en del data och de har inte sparats. Är du säker på att du " "vill lämna denna sida innan du sparar uppgifterna?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Dra för att ändra ordning." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Klicka på sortera efter den här kolumnen." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2285,26 +2290,26 @@ msgstr "" "växla ASC/DESC.
-Ctrl-klicka eller Alt-klicka (Mac: Skift+Alt+klicka) " "för att ta bort kolumnen från SORTERA VID-instruktionen" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Klicka för att markera/avmarkera." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Dubbelklicka för att kopiera kolumnnamn." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klicka på pilen
för att växla kolumnens synlighet." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Visa alla" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2313,113 +2318,113 @@ msgstr "" "nätet redigera, kryssruta, redigera, kopiera och radera-länkar kanske inte " "fungerar när du har sparat." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Ange en giltig hexadecimal sträng. Giltiga tecken är 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" "Vill du se alla rader? För en stor tabell kan detta krasch webbläsaren." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Ursprunglig längd" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "Avbryt" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avbrutna" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Lyckades" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Släpp filer här" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Markera databasen först" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Skriv ut" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Du kan även redigera de flesta värden
genom att dubbelklicka direkt på " "dessa." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Du kan även redigera de flesta värden
genom att klicka direkt på dessa." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Gå till länk:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Kopiera kolumnnamn." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Högerklicka på kolumnnamnet för att kopiera det till urklipp." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generera" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Mera" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Visa panel" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Dölj Panel" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Visa dolda navigationsträdsobjekt." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Länka med huvudpanelen" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Avlänka från huvudpanelen" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Den begärda sidan hittades inte i historien, den kan ha upphört." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2429,49 +2434,49 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", senaste stabila version:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "aktuell" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Skapa vy" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Skicka felrapport" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Skicka felrapport" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Ett allvarligt JavaScript-fel har uppstått. Vill du skicka en felrapport?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Ändra rapportinställningar" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Visa rapportdetaljer" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Din export är inkomplett på grund av en låg exekveringstidsgräns på PHP-nivå!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2481,58 +2486,58 @@ msgstr "" "kan några av fälten ignoreras på grund av max_input_vars-inställningen för " "PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Fel har påträffats på servern!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Titta längst ned i fönstret." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ignorera alla" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Enligt dina inställningar, ha tålamod." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Köra den här frågan igen?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Vill du verkligen ta bort detta bokmärke?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Vissa fel uppstod när SQL inhämtade felinformation." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s frågor körs %s gånger i %s sekunder." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s argument utförda" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Visa argument" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Dölja argument" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Tidsåtgång:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2547,349 +2552,369 @@ msgstr "" "webbinnehåll och användardata\" kan hjälpa. I Safari orsakas dylika problem " "oftast av \"Privat läge\"." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Kopiera tabeller till" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Lägg till tabellprefix" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Ersätt tabell med prefix" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Föregående" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Idag" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "januari" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "februari" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "mars" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "april" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "maj" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "augusti" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "september" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "november" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Måndag" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Fredag" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Vecka" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "kalender-månad-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Timmar" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Minuter" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Sekunder" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Detta fältet är obligatoriskt" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Var vänlig och rätta detta fält" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Ange en giltig e-postadress" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Skriv in en giltig webbadress (URL)" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Ange ett giltigt datum" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Ange ett giltigt datum (ISO)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Var vänlig ange ett giltigt nummer" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Skriv in ett giltigt kreditkortsnummer" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Ange endast siffror" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Skriv in samma värde igen" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Ange inte mer än {0} tecken" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Ange minst {0} tecken" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ange ett värde som är {0} eller {1} tecken långt" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Ange ett värde mellan {0} och {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Ange ett värde som är mindre än eller lika med {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Ange ett värde större än eller lika med {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Ange ett giltigt datum eller tid" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Skriv in en giltig Hexadecimalt värde" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Fel" @@ -2952,20 +2977,20 @@ msgid "Charset" msgstr "Teckenuppsättning" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Kollationering" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binär" @@ -3160,7 +3185,7 @@ msgid "Czech-Slovak" msgstr "Tjeckisk-Slovakisk" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "okänd" @@ -3213,26 +3238,26 @@ msgstr "" msgid "Font size" msgstr "Teckenstorlek" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "Visar %1$d bokmärke (både privata och delade)" msgstr[1] "Visar %1$d bokmärken (både privata och delade)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Inga bokmärken" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL-frågeruta" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Kunde inte applicera den konfigurerade sorteringsanslutningen!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3240,25 +3265,25 @@ msgstr "" "Servern svarar inte (eller den lokala serverns socket är inte korrekt " "konfigurerad)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Servern svarar inte." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Kontrollera privilegierna för katalogen som innehåller databasen." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Saknade parametrar:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Uppkoppling för kontrollanvändare enligt din konfiguration misslyckades." @@ -3353,110 +3378,105 @@ msgstr "Infoga:" msgid "Del:" msgstr "Radera:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-fråga i databas %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Skicka fråga" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Sparade bokmärkta sökningar:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Nytt bokmärke" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Skapa bokmärke" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Uppdatera bokmärke" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Ta bort bokmärke" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "minst ett av orden" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "alla ord" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "den exakta frasen" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "som reguljärt uttryck" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Sök resultat för \"%s\"%s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s träff" msgstr[1] "Totalt: %s träffar" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s träff i %2$s" msgstr[1] "%1$s träffar i %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Bläddra" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Ta bort resultat som matchar %s tabellen?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Sök i databas" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller värden att söka efter (jokertecken: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Hitta:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Ord separeras av ett mellanslag (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Inuti tabeller:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Avmarkera alla" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Inuti kolumnen:" @@ -3476,30 +3496,30 @@ msgstr "Filtrera rader" msgid "Search this table" msgstr "Sök i denna tabell" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Starta" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Föregående" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Nästa" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Slut" @@ -3508,7 +3528,7 @@ msgstr "Slut" msgid "All" msgstr "Alla" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Antal rader:" @@ -3517,8 +3537,8 @@ msgstr "Antal rader:" msgid "Sort by key" msgstr "Sortera efter nyckel" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3540,10 +3560,10 @@ msgstr "Sortera efter nyckel" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Alternativ" @@ -3583,102 +3603,102 @@ msgstr "Välkänd text" msgid "Well Known Binary" msgstr "Välkänd binär" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Raden har raderats." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Döda" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kan vara ungefärligt. Se [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-fråga utfördes korrekt." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Visar raderna %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d totalt, %2$d i fråga" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d totalt" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Frågan tog %01.4f sekunder." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Med markerade:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Markera alla" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Kopiera till urklipp" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Visa diagram" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Visualisera GIS-data" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Länken hittades inte!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Inget" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Konvertera till Kana" @@ -3686,24 +3706,24 @@ msgstr "Konvertera till Kana" msgid "Too many error messages, some are not displayed." msgstr "För många felmeddelanden, en del kommer inte visas." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Rapport" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Skicka rapport automatiskt nästa gång" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Filen var inte en uppladdad fil." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3711,47 +3731,47 @@ msgstr "" "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " "i HTML-formuläret." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen blev endast delvis uppladdad." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Saknar en temporär katalog." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Misslyckades att skriva fil till disk." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Filuppladdning stoppades av tillägg." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Okänt fel i filuppladdning." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Filen är en symbolisk länk" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Filen kunde inte läsas!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Fel vid flytt av uppladdad fil, se [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Fel vid flytt av uppladdad fil." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Kan inte läsa uppladdad fil." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3760,28 +3780,28 @@ msgstr "" "Du försökte ladda en fil med en komprimering (%s) som inte stöds. Antingen " "är detta inte implementerat, eller inaktiverat i din konfiguration." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Kör nu Git version %1$s fron grenen %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git-information saknas!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Klicka på bommen för att förflytta dig till toppen av sidan" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript måste vara aktiverat efter detta!" @@ -3790,20 +3810,20 @@ msgid "No index defined!" msgstr "Inga index är definierade!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Index" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3813,59 +3833,59 @@ msgstr "Index" msgid "Action" msgstr "Åtgärd" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Nyckelnamn" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Packad" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Den primära nyckeln har tagits bort." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Index %s har tagits bort." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Radera" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3874,19 +3894,19 @@ msgstr "" "Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " "bort." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sida nummer:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Ignorera kod från icke-supportrade språk." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Språk" @@ -3910,11 +3930,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3933,14 +3953,15 @@ msgid "View" msgstr "Vy" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3949,8 +3970,8 @@ msgid "Table" msgstr "Tabell" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3958,45 +3979,45 @@ msgstr "Tabell" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Sök" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Lägg till" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Spårning" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4012,16 +4033,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Fråga" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4029,20 +4050,20 @@ msgstr "Rutiner" msgid "Events" msgstr "Händelser" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Huvud-kolumner" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Databaser" @@ -4051,53 +4072,53 @@ msgid "User accounts" msgstr "Användarkonton" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binär logg" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikering" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motorer" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Insticksprogram" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d rad påverkad." msgstr[1] "%1$d rader påverkade." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d rad borttagen." msgstr[1] "%1$d rader borttagna." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4145,27 +4166,27 @@ msgstr "Favorittabeller" msgid "Favorites" msgstr "Favoriter" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Ange ett namn för denna bokmärkta sökning." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Saknar information för att spara den bokmärkta sökningen." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "En post med detta namn existerar redan." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Saknar information för att ta bort sökningen." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Saknar information för att läsa in sökningen." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Fel då sökningen lästes in." @@ -4227,7 +4248,7 @@ msgstr "Visa öppna tabeller" msgid "Show slave hosts" msgstr "Visa slav-värdar" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Visa master-status" @@ -4281,71 +4302,71 @@ msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuter" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Det finns ingen detaljerad statusinformation tillgänglig för denna " "lagringsmotor." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardmotorn för denna MySQL-server." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s är tillgänglig på denna MySQL-server." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har inaktiverats på denna MySQL-server." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Okänd tabellstatus:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Källdatabas `%s` hittades inte!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Måldatabas `%s` hittades inte!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Ogiltig databas:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Ogiltigt tabellnamn:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Kunde inte byta namn på tabell %1$s till %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabell %1$s har döpts om till %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Kunde inte spara gränssnittsinställningarna för tabellen!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4354,7 +4375,7 @@ msgstr "" "Misslyckades med att rensa gränssnittsinställningar för tabell (se " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4365,19 +4386,19 @@ msgstr "" "beständiga efter att du uppdaterar denna sida. Kontrollera om tabellens " "struktur har förändrats." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primärnyckelns namn måste vara \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Kan inte byta namn på index till \"PRIMARY\"!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Inga delar av index är definierade!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" @@ -4700,7 +4721,7 @@ msgid "Date and time" msgstr "Datum och tid" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Sträng" @@ -4715,126 +4736,126 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Statisk analys:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "%d fel hittades under analys." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analysförklaring Analysförklaringpå %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Utan PHP-kod" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Skicka fråga" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Skapa PHP-kod" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Uppdatera" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profilering" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Redigera infogade" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Sön" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Saknade parametrar:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Hoppa till databas \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Välj från webbserverns uppladdningskatalog %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Katalogen du ställt in för uppladdning kan inte nås." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Det finns inga filer att ladda upp!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Töm" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Utför" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Användare" @@ -4848,7 +4869,7 @@ msgstr "per minut" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "per timme" @@ -4856,12 +4877,12 @@ msgstr "per timme" msgid "per day" msgstr "per dag" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Sök:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4869,7 +4890,7 @@ msgstr "Sök:" msgid "Description" msgstr "Beskrivning" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Använd detta värde" @@ -4911,22 +4932,22 @@ msgstr "JA" msgid "NO" msgstr "NEJ" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Namn" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Längd/Värden" @@ -4935,7 +4956,7 @@ msgstr "Längd/Värden" msgid "Attribute" msgstr "Egenskaper" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4952,11 +4973,11 @@ msgstr "Lägg till kolumn" msgid "Select a column." msgstr "Välj en kolumn." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Lägg till ny kolumn" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4964,7 +4985,7 @@ msgstr "Lägg till ny kolumn" msgid "Attributes" msgstr "Attribut" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4974,26 +4995,26 @@ msgstr "" "alternativ är inkompatibelt med phpMyAdmin och kan leda till att data kan " "skadas!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Ogiltigt serverindex: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för verifiering angiven i konfiguration:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5005,20 +5026,20 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin för närvarande används " "standardtidszonen på databasservern." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du bör uppgradera till %s %s eller senare." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Fel: Token matchningsfel" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Överskrivningsförsök av GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "möjlig exploatering" @@ -5610,7 +5631,7 @@ msgid "Compress on the fly" msgstr "Komprimera i farten" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfigurationsfil" @@ -5716,12 +5737,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximal exekveringstid" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Använd %s uttalande" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Spara som fil" @@ -5731,7 +5752,7 @@ msgstr "Filens teckenuppsättning" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -5856,7 +5877,7 @@ msgid "Save on server" msgstr "Spara på server" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Skriv över befintlig(a) fil(er)" @@ -5869,7 +5890,7 @@ msgid "Remember file name template" msgstr "Kom ihåg mall för filnamn" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" @@ -5878,7 +5899,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Använd citattecken runt tabell- och fältnamn" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetsläge" @@ -5908,7 +5929,7 @@ msgstr "Exportera relaterade metadata från sparade inställningar i phpMyAdmin" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Lägg till %s" @@ -6080,7 +6101,7 @@ msgid "Customize the navigation tree." msgstr "Anpassa navigeringspanelen." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Servrar" @@ -6972,7 +6993,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Autentiseringsmetod att använda." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Autentiseringstyp" @@ -7704,7 +7725,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Aktivera fliken Utvecklare i inställningar" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Sök efter senaste version" @@ -7712,10 +7733,10 @@ msgstr "Sök efter senaste version" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Aktivera kontroll efter senaste version på phpMyAdmins hemsida." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versionskontroll" @@ -7861,24 +7882,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument-text" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Favoritlistan är full!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Tabellen %s har tömts." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Vyn %s har tagits bort." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Tabellen %s har tagits bort." @@ -7892,12 +7913,12 @@ msgid "Position" msgstr "Position" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Händelsetyp" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server ID" @@ -7906,7 +7927,7 @@ msgid "Original position" msgstr "Ursprunglig position" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Information" @@ -7920,42 +7941,42 @@ msgstr "Korta av visade frågor" msgid "Show Full Queries" msgstr "Visa fullständiga frågor" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Inga databaser" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databas har framgångsrikt tagits bort." msgstr[1] "%1$d databaser har framgångsrikt tagits bort." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Rader" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Totalt" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Outnyttjat" @@ -7982,34 +8003,34 @@ msgstr "" msgid "Enable statistics" msgstr "Aktivera Statistik" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Inte tillräckliga privilegier för att visa servervariabler och " "inställningar. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Inställning av variabeln misslyckades" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Ingen SQL-fråga var inställd på att hämta data." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Det finns inga numeriska kolumner att plotta i tabellen." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Ingen data att visa" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Tabellen %1$s har ändrats." @@ -8052,7 +8073,7 @@ msgstr "Kolumnerna har flyttats framgångsrikt." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Sökningsfel" @@ -8069,12 +8090,12 @@ msgstr "Ändra" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8095,13 +8116,13 @@ msgstr "Fulltext" msgid "Distinct values" msgstr "Distinkta värden" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Tillägget %s saknas. Vänligen kontrollera din PHP-konfiguration." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen förändring" @@ -8123,31 +8144,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Kunde inte läsa in insticksprogram, kontrollera din installation!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Inget lösenord" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Lösenord:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Skriv igen:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Hashning av lösenord:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8157,83 +8182,83 @@ msgstr "" "anslutning som krypterar lösenordet med hjälp av RSA'; vid anslutning " "till servern." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Exportera databaser från den aktuella servern" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Exportera tabeller från databasen \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Exportera rader från tabellen \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Exportera mallar:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Ny mall:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Mallens namn" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Skapa" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Befintliga mallar:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Mall:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Uppdatera" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Välj Mall" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Exportmetod:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Snabb - visa endast minimala alternativ" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Anpassad - visa alla möjliga alternativ" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Databaser:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tabeller:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Format:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Format-specifika alternativ:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8241,52 +8266,52 @@ msgstr "" "Bläddra nedåt för att fylla i alternativen för det valda formatet och " "ignorera alternativ för andra format." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Omkodning:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Rader:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Skippa några rader" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Rad att börja på:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Ta bort alla rader" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Utdata:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Spara på servern i katalogen %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Filnamnsmall:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@Server@ kommer bli servernamnet" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ kommer bli databasnamnet" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ kommer bli tabellnamnet" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8297,99 +8322,99 @@ msgstr "" "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " "text behålls som den är.Se %4$sFAQ%5$s för detaljer." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "använd detta för framtida exporter" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Teckenuppsättning för filen:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Komprimering:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zippad" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzippad" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Visa utdata som text" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Exportera databaser som separata filer" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Exportera tabeller som separata filer" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Byt namn på exporterade databaser/tabeller/kolumner" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Spara utdata till en fil" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Hoppa över tabeller större än" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Välj databas" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Välj tabell" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Nytt Databasnamn" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Nytt tabellnamn" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Tidigare kolumnnamn" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Nytt kolumnnamn" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Kunde inte läsa in insticksprogram för export. Kontrollera din installation!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s från grenen %2$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "ingen gren" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git version:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "inlagd %1$s av %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "skriven den %1$s av %2$s" @@ -8843,13 +8868,13 @@ msgstr "" "Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" "%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Otillräckligt utrymme för att spara filen %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8857,76 +8882,76 @@ msgstr "" "Filen %s finns redan på servern, ändra filnamnet eller kontrollera " "ersättningsalternativet." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webbservern har inte behörighet att spara filen %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har sparats till filen %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ÅTERTOG tidigare version]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Följande strukturer har antingen skapats eller ändrats. Du kan:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Visa en strukturs innehåll genom att klicka på namnet." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Ändra någon av dess inställningar genom att klicka på motsvarande " "\"Alternativ\"-länk." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Redigera strukturen genom att följa länken \"Struktur\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Gå till databas: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Redigera inställningar för %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Gå till tabell: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Struktur för %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Gå till vy: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Endast entabells-UPDATE och DELETE-körningar simuleras." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8939,86 +8964,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Skapa ett index för  %s kolumn(er)" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Dölj" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funktion" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "På grund av sin längd,
är denna kolumn kanske inte redigerbar." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Eller" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "Uppladdningskatalog på webbserver:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Redigera / Infoga" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "och sedan" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Visa insert-fråga" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9029,31 +9055,31 @@ msgstr "" msgid "Value" msgstr "Värde" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad-id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Lyckades!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Enbart struktur" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Struktur och data" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Enbart data" @@ -9062,14 +9088,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Lägg till AUTO INCREMENT-värde" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Lägg till restriktioner" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ändra privilegier" @@ -9114,8 +9140,8 @@ msgstr "Procedurer:" msgid "Views:" msgstr "Vyer:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Visa" @@ -9158,17 +9184,17 @@ msgid_plural "%s results found" msgstr[0] "%s resultat hittat" msgstr[1] "%s resultat hittade" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Skriv för att filtrera, Retur för att söka i alla" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Rensa snabbfilter" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Dölj alla" @@ -9184,7 +9210,7 @@ msgstr "Ogiltigt klassnamn \"%1$s\", använder standard \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "Kunde inte lägga till kolumner!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Expandera/Vik ihop" @@ -9203,7 +9229,7 @@ msgstr "Ny" msgid "Database operations" msgstr "Databasoperationer" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Visa dolda objekt" @@ -9305,11 +9331,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Välj en…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Ingen sådan kolumn" @@ -9579,8 +9605,8 @@ msgid "Rename database to" msgstr "Byt namn på databasen till" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9626,177 +9652,177 @@ msgstr "(var för sig)" msgid "Move table to (database.table)" msgstr "Flytta tabellen till (databas.tabell)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Döp om tabellen till" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tabellkommentarer" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tabellalternativ" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Ändra alla kolumners sortering" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Kopiera tabellen till (databas.tabell)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Byt till kopierad tabell" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tabellunderhåll" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Analysera tabell" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Kontrollera tabell" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Kontrollsumma tabell" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Defragmentera tabell" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Tabellen %s har rensats." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Rensa tabellen (flush)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Optimera tabell" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Reparera tabell" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Ta bort data eller tabell" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Töm tabellen (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Ta bort tabellen (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Analysera" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Kontrollera" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimera" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Återskapa" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Reparera" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Avkorta" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Sammanfogning" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Underhåll av partition" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Ta bort partitionering" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Kan inte flytta tabell till samma en!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Kan inte kopiera tabell till samma en!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Registret %s har flyttats till %s., privilegier har justerats." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Registret %s har kopierats till %s., privilegier har justerats." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har flyttats till %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s har kopierats till %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tabellnamnet är tomt!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Detta format har inga alternativ" @@ -9825,18 +9851,18 @@ msgstr "Visa färg" msgid "Only show keys" msgstr "Visa endast nycklar" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Kan ej skapa förbindelse: ogiltiga inställningar." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Välkommen till %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9845,7 +9871,7 @@ msgstr "" "Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " "%1$suppsättningsskript%2$s för att skapa denna." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9857,7 +9883,7 @@ msgstr "" "konfiguration och förvissa dig om att de stämmer överens med informationen " "från administratören av MySQL-servern." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Försök ansluta igen" @@ -9882,15 +9908,15 @@ msgstr "Användarnamn:" msgid "Server Choice:" msgstr "Serverval:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Angivet captcha är fel, försök igen!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Ange korrekt captcha!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Du har inte befogenhet att logga in till denna MySQL server!" @@ -9951,7 +9977,7 @@ msgstr "Dumpningsalternativ för data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumpning av Data i tabell" @@ -9960,7 +9986,7 @@ msgstr "Dumpning av Data i tabell" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Händelse" @@ -9968,8 +9994,8 @@ msgstr "Händelse" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Definition" @@ -10055,7 +10081,7 @@ msgstr "Sätt kolumnnamn på första raden:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Värd:" @@ -10589,7 +10615,7 @@ msgstr "Innehållsförteckning" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Extra" @@ -10979,18 +11005,18 @@ msgstr "" "Logga in igen till phpMyAdmin för att ladda den uppdaterade " "konfigurationsfilen." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "ingen beskrivning" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -10999,39 +11025,39 @@ msgstr "" "%sCreate%s en databas heter \"phpmyadmin\" och installera phpMyAdmin " "konfiguration lagring där." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sCreate%s phpMyAdmin konfiguration lagring i den aktuella databasen." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sCreate%s saknade phpMyAdmin konfiguration lagringstabeller." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Master-replikering" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Denna server är konfigurerad som master i en replikerings-process." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Visa anslutna slavar" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Lägg till användare för slav replikering" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Master-konfiguration" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11045,19 +11071,19 @@ msgstr "" "eller så kan du välja att ignorera alla databaser som standard och endast " "tillåta att vissa databaser speglas. Välj inställning:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Replikera alla databaser; Ignorera:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ignorera alla databaser; Replikera:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Välj databaser:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11065,7 +11091,7 @@ msgstr "" "Nu, lägg till följande rader i slutet av [mysqld]-sektionen i din my.cnf och " "starta om MySQL-servern efteråt." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11075,69 +11101,69 @@ msgstr "" "ett meddelande som informerar dig om att denna server är konfigurerad " "som master." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slav-replikering" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Huvudanslutning:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Slav SQL tråden exekveras inte!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slav IO tråden exekveras inte!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Servern är konfigurerad som slav i en replikeringsprocess. Vill du:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Se slavtabell status" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Kontroll slav:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Full start" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Full stopp" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Återställ slav" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Starta endast SQL-tråd" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Stoppa endast SQL-tråd" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Starta endast IO-tråd" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Stoppa endast IO-tråd" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Ändra eller konfigurera om master-server" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11146,24 +11172,24 @@ msgstr "" "Denna server är inte konfigurerad som slav i en replikeringsprocess. Vill du " "konfigurera den?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Felhantering:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Hoppa över fel kan leda till osynkroniserad master och slav!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Hoppa över nuvarande fel" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Hoppa över nästa %s fel." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11172,11 +11198,11 @@ msgstr "" "Denna server är inte konfigurerad som master i en replikerings-process. Vill " "du konfigurera den?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slavkonfiguration" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11184,92 +11210,92 @@ msgstr "" "Säkerställ att du har unikt server-id i din konfigurationsfil (my.cnf). Om " "inte, lägg till följande rad i [mysqld]-sektionen:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Användarnamn:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Användarnamn" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Lösenord" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Port:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Master-status" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slav-status" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabel" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Värd" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" "Endast slavar startade med valet --report-host=host_name syns i denna lista." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Denna värd" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Vilken användare som helst" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Använd textfältet:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11277,77 +11303,77 @@ msgstr "" "När värdtabellen används ignoreras detta fält och värden lagrade i " "värdtabellen används istället." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Skriv igen" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Skapa lösenord:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Replikering startade framgångsrikt." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Fel vid start av replikering." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Replikering stoppades framgångsrikt." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Fel vid stoppande av replikering." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Replikering återställdes framgångsrikt." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Fel vid återställning av replikering." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Lyckades." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Fel." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Okänt fel" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Kan inte ansluta till master %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Det går inte att läsa position för master-logg. Möjligt privilegieproblem på " "master." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Kan inte ändra master!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Huvudservern har ändrats till %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11368,7 +11394,7 @@ msgstr "Händelsen %1$s har ändrats." msgid "Event %1$s has been created." msgstr "Händelsen %1$s har skapats." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Ett eller flera fel har inträffat under hanteringen av din begäran:" @@ -11377,75 +11403,75 @@ msgstr "Ett eller flera fel har inträffat under hanteringen av din begäran:" msgid "Edit event" msgstr "Redigera händelse" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Detaljer" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Händelsenamn" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Ändra till %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Utför vid" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Utför varje" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Slut" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Vid avslut, bevara" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Definierare" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Definieraren måste vara i formatet: \"användarnamn@hostname\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Du måste ange ett händelsenamn!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Du måste ange ett giltigt intervallvärde för händelsen." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Du måste ange en giltig exekveringstid för händelsen." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Du måste ange en giltig typ för händelsen." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Du måste ange en händelsedefinition." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Fel i processbegäran:" @@ -11466,7 +11492,7 @@ msgstr "Status för händelsehanteraren" msgid "The backed up query was:" msgstr "Den säkerhetskopierade frågan var:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Returnerar" @@ -11482,72 +11508,72 @@ msgstr "" "misslyckas!![/strong] Använd den förbättrade \"mysqli\" utvidgningen för att " "undvika eventuella problem." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Redigera rutin" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ogiltig rutintyp: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Rutinen %1$s har skapats." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Tyvärr, vi lyckades inte återställa den slängda rutinen." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Rutin %1$s har ändrats. Privilegier har justerats." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutinen %1$s har modifierats." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Rutinnamn" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametrar" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Riktning" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Lägg till parameter" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Ta bort senaste parametern" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Returtyp" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Returnera längd/värden" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Return alternativ" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Är deterministisk" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11555,25 +11581,25 @@ msgstr "" "Du har inte tillräckliga privilegier för att utföra åtgärden; Se " "dokumentationen för mer information" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Säkerhetstyp" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL dataaccess" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Du måste ange ett rutinnamn!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ogiltig riktning \"%s\" angiven för parameter." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11581,37 +11607,37 @@ msgstr "" "Du måste ange längd/värden för rutinparametrar av typen ENUM, SET, VARCHAR " "och VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Du måste ange ett namn och en typ för varje rutinparameter." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Du måste ange en giltig returtyp för händelsen." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Du måste ange en rutindefinition." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Exekveringsresultat av rutin %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 rad berörs av det sista uttrycket inom proceduren." msgstr[1] "%d rader berörs av det sista uttrycket inom proceduren." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Utför rutin" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Rutinparametrar" @@ -11633,32 +11659,32 @@ msgstr "Triggern %1$s har skapats." msgid "Edit trigger" msgstr "Redigera trigger" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Triggernamn" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tidpunkt" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Du måste ange ett triggernamn!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Du måste ange en giltig tidsgräns för triggern!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Du måste ange en giltig händelse för triggern!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Du måste ange ett giltigt tabellnamn!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Du måste ange en triggerdefinition." @@ -11783,91 +11809,91 @@ msgstr "Teckenuppsättningar och kollationeringar" msgid "Databases statistics" msgstr "Databas-statistik" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Inga privilegier." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier förutom GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Tillåter läsning av data." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Tillåter ändring av data." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Tillåter visning av processer för alla användare." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denna version av MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11877,128 +11903,101 @@ msgstr "" "Nödvändig för de flesta administrativa funktioner, som att sätta globala " "variabler eller döda andra användares trådar." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Tillåter skapande av händelser för händelseschemaläggaren." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Tillåter skapande och borttagning av triggers." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Inget" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Användargrupp" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Bestående anslutningar" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Kräver SSL-krypterade anslutningar." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Kräver ett giltigt X509 -certificate." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Kräver att en specifik metod att användas för en anslutning." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Kräver att ett giltigt X509-intyg från denna Certifikatutfärdare presenteras." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Kräver att ett giltigt X509-certifikat presenteras." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Resursbegränsningar" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12006,122 +12005,117 @@ msgstr "" "Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som " "användaren kan utföra per timme." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Rutiner" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Tillåter ändring och borttagning av lagrade rutiner." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Tillåter utförande av lagrade rutiner." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Obs: privilegienamn i MySQL uttrycks på engelska." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administration" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Globala privilegier" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillåter inläggning av användare och privilegier utan omladdning av " "privilegietabeller." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "MySQL-autentisering" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 lösenordsautentisering" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "MySQL-autentisering" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Inloggningsinformation" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12129,136 +12123,136 @@ msgstr "" "Ett konto existerar redan med samma användarnamn men möjligen ett annat " "värdnamn." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Värdnamn:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Värdnamn" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Insticksmodul-verifiering" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Hashning av lösenord" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har upphävt privilegierna för %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Lägg till användar" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Databas för användarkonto" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Skapa databas med samma namn och tilldela alla privilegier." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Bevilja alla privilegier för databas \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Användare som har tillgång till \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "En användare har skapats." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Bevilja" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Inte tillräckligt privilegier för att visa användare." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Ingen användare hittades." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Vem som helst" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "databasspecifik" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "jokertecken" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "tabellspecifik" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Redigera behörigheter" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Upphäv" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Redigera användargrupp" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… behåll den gamla." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… ta bort den gamla från användartabellerna." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… upphäv alla aktiva privilegier från den gamla och ta bort den efteråt." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12266,92 +12260,79 @@ msgstr "" "… ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Ändra information om inloggning / kopiera användarkonto" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Skapa ett nytt användarkonto med samma privilegier och…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolumnspecifika privilegier" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Ta bort markerade användarkonton" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Användargrupp" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Ta bort databaserna med samma namn som användarna." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "De valda användarna har tagits bort." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Privilegier för %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Användare" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Ny" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Redigera behörigheter:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Användarkonto" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12359,18 +12340,18 @@ msgstr "" "Obs: Du försöker redigera behörigheter för den användare som du är inloggad " "som." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Översikt användarkonto" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12383,7 +12364,7 @@ msgstr "" "behörigheter servern använder, om manuella ändringar har gjorts. Är så " "fallet bör du %sladda om behörigheterna%s innan du fortsätter." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12397,11 +12378,11 @@ msgstr "" "fallet bör du ladda om behörigheterna innan du fortsätter, du har dock inte " "privilegierna för detta." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." @@ -12708,12 +12689,12 @@ msgstr "Kommando" msgid "Progress" msgstr "Framsteg" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Filter" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Visa endast aktiva" @@ -12734,12 +12715,12 @@ msgstr "per minut:" msgid "per second:" msgstr "per sekund:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Uppgifter" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12763,7 +12744,7 @@ msgstr "Visa oformaterade värden" msgid "Related links:" msgstr "Liknande länkar:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12771,11 +12752,11 @@ msgstr "" "Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " "anslutningen ordentligt." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12785,16 +12766,16 @@ msgstr "" "överskred värdet binlog_cache_size och använde en temporär fil för att lagra " "satser från transaktionen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Antalet transaktioner som använde den temporära binära loggcachen." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12806,11 +12787,11 @@ msgstr "" "kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " "lagras i minne istället för på disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12818,7 +12799,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12826,7 +12807,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12834,23 +12815,23 @@ msgstr "" "Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " "använder INSERT DELAYED får sin egen tråd." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Antalet gånger en rad togs bort från en tabell." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12860,7 +12841,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12870,7 +12851,7 @@ msgstr "" "tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " "FROM foo, under förutsättning att col1 är indexerad." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12879,7 +12860,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12889,7 +12870,7 @@ msgstr "" "värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " "gör en indexavsökning." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12897,7 +12878,7 @@ msgstr "" "Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " "läsmetod används huvudsakligen för att optimera ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12909,7 +12890,7 @@ msgstr "" "Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " "eller du har föreningar som inte använder nycklar på rätt sätt." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12921,35 +12902,35 @@ msgstr "" "dina tabeller inte är riktigt indexerade eller att dina frågor inte är " "skrivna för att dra nytta av de index du har." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12959,7 +12940,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12971,11 +12952,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12983,7 +12964,7 @@ msgstr "" "Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " "när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -12991,11 +12972,11 @@ msgstr "" "Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " "InnoDB gör en sekventiell avsökning av en hel tabell." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13003,7 +12984,7 @@ msgstr "" "Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " "fick göra en enkelsidig läsning." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13017,51 +12998,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Antalet sidor som har skrivits för doublewrite transaktioner." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13069,35 +13050,35 @@ msgstr "" "Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " "att den skulle rensas innan kunde fortsätta." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Antalet förfrågningar att skriva till logg." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13105,51 +13086,51 @@ msgstr "" "Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " "sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Antalet radlås som för närvarande väntas på." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Antalet gånger ett radlås behövde väntas på." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13157,7 +13138,7 @@ msgstr "" "Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " "till disk. Det brukade vara känt som Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13165,7 +13146,7 @@ msgstr "" "Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " "avgöra hur stor del av nyckelcachen som används." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13174,15 +13155,15 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Andel av använd nyckelcache (beräknat värde)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13192,7 +13173,7 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13200,20 +13181,20 @@ msgstr "" "Misslyckad nyckelcache beräknas som andelen fysiska läsningar jämfört med " "läsbegäran (beräknat värde)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "Andel fysiska skrivningar jämfört med läsbegäran (beräknat värde)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13224,7 +13205,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13232,11 +13213,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13244,19 +13225,19 @@ msgstr "" "Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " "förmodligen ditt tabellcache-värde för litet." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13265,19 +13246,19 @@ msgstr "" "Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " "vilket kan lösas genom att köra ett FLUSH QUERY CACHE-kommando." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13289,7 +13270,7 @@ msgstr "" "storleken på frågecachen. Frågecachen använder strategin minst nyligen " "använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13297,19 +13278,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13317,11 +13298,11 @@ msgstr "" "Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " "noggrant kontrollera index för dina tabeller." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13330,7 +13311,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13338,17 +13319,17 @@ msgstr "" "Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " "inte kritiskt även om detta är stort.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" "Antalet kopplingar som gjorde en fullständig genomsökning av den första " "tabellen." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13356,25 +13337,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denna är ON ifall denna server är en slav som är förbunden till en " "huvudserver." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13384,23 +13365,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13412,7 +13393,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13422,11 +13403,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13438,11 +13419,11 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Trådad cache träffrekvens (beräknat värde)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." @@ -13471,37 +13452,37 @@ msgstr "Flikar på databasnivå" msgid "Table level tabs" msgstr "Flikar på tabellnivå" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Visa användare" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Lägg till användargrupp" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Redigera användargrupp: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Menytilldelningar för användargrupp" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Gruppnamn:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Flikar på servernivå" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Flikar på databasnivå" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Flikar på tabellnivå" @@ -13602,7 +13583,7 @@ msgstr "Kör SQL-fråga/frågor i databasen %s" msgid "Run SQL query/queries on table %s" msgstr "Kör SQL-fråga/frågor i tabellen %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Rensa" @@ -13687,112 +13668,112 @@ msgstr "Deaktivera nu" msgid "Version" msgstr "Version" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Skapad" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Uppdaterad" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Ta bort version" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Spårningsrapport" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Ögonblicksbild på strukturen" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "inaktiv" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Spårning av uppgifter" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Ta bort spårning för denna rapport" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Inget data" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Visa %1$s med datum från %2$s till %3$s av användare %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL-dump (filnedladdning)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL-dump" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Denna alternativ kommer att ersätta din tabell och ingående data." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL-exekvering" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Exportera som %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Data manipulation redogörelse" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Data definition redogörelse" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Användarnamn" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s ögonblicksbild (SQL-kod)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Inget" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Spårningsdata har tagits bort" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Spårningsdata manipulation har tagits bort" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13800,61 +13781,61 @@ msgstr "" "Du kan dumpa genom att skapa och använda en tillfällig databas. Se till att " "du har behörighet att göra det." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Kommentera bort dessa två rader om du inte behöver dem." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-satser exporteras. Kopiera dump eller verkställ." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Spårning av rapport för tabell `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Spårning av %1$s aktiverades vid version %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Spårning av %1$s deaktiverades vid version %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s %2$s togs bort." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s är skapad, spårning för %2$s är aktiv." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Ej spårade tabeller" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Spåra tabell" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Spårade tabeller" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Senaste versionen" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Ta bort spårning" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Versioner" @@ -13862,7 +13843,7 @@ msgstr "Versioner" msgid "Manage your settings" msgstr "Hantera dina inställningar" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Konfigurationen har sparats." @@ -13888,7 +13869,7 @@ msgstr "Fel i ZIP-arkiv:" msgid "No files found inside ZIP archive!" msgstr "Inga filer hittades i ZIP-arkivet!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Oåterkalleligt fel: Navigering kan endast nås via AJAX" @@ -13896,57 +13877,57 @@ msgstr "Oåterkalleligt fel: Navigering kan endast nås via AJAX" msgid "Cannot save settings, submitted form contains errors!" msgstr "Kan inte spara inställningar, sänt formulär innehåller fel!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Saknade phpMyAdmin konfiguration lagringstabeller" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Kan inte importera konfiguration" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguration innehåller felaktiga data för vissa fält." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Vill du importera återstående inställningar?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Har sparat på: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Importera från fil" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Importera från webbläsaren" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Inställningar kommer att importeras från webbläsaren." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Du har inga sparade inställningar!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Denna funktion stöds inte av din webbläsare" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Slå samman med nuvarande konfiguration" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13955,25 +13936,25 @@ msgstr "" "Du kan ställa in fler inställningar genom att ändra config.inc.php, t ex. " "genom att använda %sSetup script%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Spara som fil" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Spara till webbläsaren" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Inställningarna kommer att sparas i din webbläsare." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Befintliga inställningar kommer skrivas över!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Du kan återställa alla inställningar och återföra dem till standardvärdena." @@ -13982,12 +13963,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Visa dump (schema) för databaser" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Inga privilegier" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13995,35 +13976,35 @@ msgstr "" "Användarnamn och hostname ändra inte. Om du bara vill ändra lösenordet, bör " "'Ändra lösenord' -flik användas." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Inte tillräckliga privilegier för att visa serverstatus." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Inte tillräckliga privilegier för att visa vägledning." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråden %s dödades med framgång." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Inte tillräcklig behörighet för att visa fråge-statistik." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Inte tillräckliga privilegier för att visa status-variabler." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Ladda ner" @@ -14032,11 +14013,11 @@ msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" "Felaktigt formset, kontrollera arrayen $formsets i setup/frames/form.inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Kan inte läsa in eller spara konfiguration" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14046,7 +14027,7 @@ msgstr "" "huvudkatalog som beskrivs i [doc@setup_script]documentationen[/doc]. Annars " "kommer du enbart kunna hämta eller visa den." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14054,24 +14035,27 @@ msgstr "" "Du använder inte en säker anslutning; all data (inklusive potentiellt " "känslig information, som lösenord) överförs okrypterat!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Om din server även är konfigurerad för att acceptera HTTPS-förfrågningar, " "följ [a@%s]denna länk[/a] för att använda en säker anslutning." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Osäker anslutning" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Konfigurationen sparad." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14080,61 +14064,61 @@ msgstr "" "phpMyAdmin, kopiera den till huvudnivån och radera katalogen config för att " "använda den." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Konfigurationen sparad." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Översikt" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Visa dolda meddelanden (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Det finns inga konfigurerade servrar" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Ny server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Förvalt språk" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "låt användaren välja" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ingen -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Förvald server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Radslut" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Visa" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Läs in" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin:s hemsida" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Donera" @@ -14170,7 +14154,7 @@ msgstr "Ignorera fel" msgid "Show form" msgstr "Visa formulär" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14178,15 +14162,15 @@ msgstr "" "Lyckades ej läsa version. Du är kanske offline, eller så svarar inte " "uppgraderingsservern." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Ogiltig versionssträng från servern" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Ej analyserbar versionssträng" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14195,7 +14179,7 @@ msgstr "" "Du använder Git-versionen, kör [kbd]git pull[/kbd] :-) [br] Den senaste " "stabila versionen är %s, släppt den %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Ingen nyare stabil version finns tillgänglig" @@ -14208,12 +14192,12 @@ msgstr "Felaktigt data" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Databasen '%s' existerar inte." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Tabell %s finns redan!" @@ -14226,29 +14210,29 @@ msgstr "Visa SQL-satser för tabellen" msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rad: %1$s, kolumn: %2$s, fel: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Ingen rad vald." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Spårning av %s är aktiverad." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Spårningsversioner raderades." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Ingen version vald." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL-satser exekverade." @@ -14450,7 +14434,7 @@ msgid "List of available transformations and their options" msgstr "Lista över tillgängliga omvandlingar och deras alternativ" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Webbläsaromvandling" @@ -14472,7 +14456,7 @@ msgstr "" "\\xyz' eller 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Transformation av indata" @@ -14908,17 +14892,17 @@ msgid "Size" msgstr "Storlek" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Skapande" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Senaste uppdatering" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Senaste kontroll" @@ -14963,6 +14947,12 @@ msgstr "" "Din webbläsare har en phpMyAdmin-konfiguration för denna domän. Vill du " "importera den för nuvarande session?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Ta bort spårning" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Lägg till privilegier till följande databas(er):" @@ -14983,10 +14973,45 @@ msgstr "Lägg till privilegier till följande tabell:" msgid "Add privileges on the following table:" msgstr "Lägg till privilegier till följande tabell:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Ny" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Inget" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Ta bort markerade användarkonton" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Ta bort databaserna med samma namn som användarna." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Resursbegränsningar" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Välj binär logg att visa" @@ -15017,7 +15042,7 @@ msgstr "Insticksprogram" msgid "Author" msgstr "Författare" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "inaktiverad" @@ -15176,7 +15201,7 @@ msgstr "Parser:" msgid "Comment:" msgstr "Kommentar:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Dra om du vill ändra ordning" @@ -15208,20 +15233,20 @@ msgstr "Endast kolumner med index visas. Du kan definiera ett index nedan." msgid "Foreign key constraint" msgstr "Begränsning av främmande nyckel" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Lägg till villkor" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Interna relationer" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Intern relation" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15229,7 +15254,7 @@ msgstr "" "En intern relation är inte nödvändig när en motsvarande FOREIGN KEY relation " "finns." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Välj kolumn att visa:" @@ -15282,11 +15307,11 @@ msgstr "Ursprunglig sträng" msgid "Replaced string" msgstr "Ersatt sträng" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Ersatt" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Ytterligare sökkriterier" @@ -15356,7 +15381,7 @@ msgid "at beginning of table" msgstr "I början av tabellen" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Partitioner" @@ -15382,28 +15407,28 @@ msgstr "Datalängd" msgid "Index length" msgstr "Index längd" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "partitionerad" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Ta bort partitionering" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Redigera vy" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Använt utrymme" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektiv" @@ -15428,31 +15453,31 @@ msgstr "Förbättra tabellstruktur" msgid "Track view" msgstr "Spårvisning" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Radstatistik" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statisk" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dynamisk" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "partitionerad" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Radlängd" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Radstorlek" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Nästa autoindex" @@ -15465,44 +15490,44 @@ msgstr "Kolumnen %s har tagits bort." msgid "Click to toggle" msgstr "Klicka för att växla" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Hämta fler teman!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Tillgängliga MIME-typer" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Tillgängliga transformationer av webbläsareutseende" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Tillgängliga transformationer av indata" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivning" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Tar dig till målwebbplatsen." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har inte tillräcklig behörighet för att vara här nu!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profilen har uppdaterats." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15579,7 +15604,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15602,17 +15627,17 @@ msgid "Unrecognized data type." msgstr "Okänd datatyp." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Ett alias förväntades." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Ett alias hittades tidigare." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Oväntad punkt." @@ -15665,24 +15690,24 @@ msgstr "" msgid "Expected delimiter." msgstr "Förväntade avgränsare." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Slut citat %1$s förväntades." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Variabel namn förväntades." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Oväntad början av satsen." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Okänd uttryckstyp." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Ingen transaktion startades tidigare." @@ -15699,10 +15724,16 @@ msgstr "Oväntad token." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Okänt nyckelord." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Oväntad början av satsen." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Namnet på entiteten förväntades." @@ -15745,7 +15776,7 @@ msgstr "" msgid "strict error" msgstr "Samla fel" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17027,6 +17058,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "MySQL-autentisering" + #~ msgid "Try to connect without password." #~ msgstr "Försök ansluta utan lösenord." diff --git a/po/ta.po b/po/ta.po index f007e5aa08..772b472f3d 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-10-10 19:29+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil       அல்லது மாற்றாக எதேனும் தரவுத்தளத்தின் " "'செயல்பாடுகள்' தத்தலுக்கு சென்று அங்கு அமைத்தத்தல்." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -829,7 +829,7 @@ msgstr "" "உங்கள் PHP MySQL நிரல்கோவையின் பதிப்பும் %s MySQL வழங்கியின் பதிப்பும் %s வேறுபடுகின்றன." "இது எதிர்பாரா விளைவுகளுக்கு காரணமாகலாம்." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -997,7 +997,7 @@ msgid "Save & close" msgstr "சேமிக்க & மூடுக" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "மீட்டமைக்கவும்" @@ -1033,7 +1033,7 @@ msgstr "சுட்டுதொகுப்புக்குறி சேர msgid "Edit index" msgstr "சுட்டுதொகுப்புக்குறி திருத்துக" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "%s நிரல்வரிசை(களை) சுட்டுதொகுப்புக்குறியில் சேர்க்க" @@ -1058,10 +1058,10 @@ msgstr "சுட்டுதொகுப்புக்குறியில் msgid "You have to add at least one column." msgstr "நீங்கள் குறைந்தது ஒரு நெடுவரிசையையாவது சேர்க்க வேண்டும்." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQLஐ முன்பார்வையிடு" @@ -1073,7 +1073,7 @@ msgstr "வினவலை பாவித்து காண்பி" msgid "Matched rows:" msgstr "பொருந்திய நிரல்வரிசைகள்:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL வினவல்:" @@ -1092,13 +1092,13 @@ msgstr "வழங்கியின் பெயர் வெறுமையா msgid "The user name is empty!" msgstr "பயனர் பெயர் வெறுமையாக உள்ளது!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "கடவுச்சொல் வெறுமையாக உள்ளது!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "கடவுச்சொற்கள் பொருந்தவில்லை!" @@ -1106,8 +1106,8 @@ msgstr "கடவுச்சொற்கள் பொருந்தவில msgid "Removing Selected Users" msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர்கள் நீக்கப்படுகின்றனர்" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "மூடுக" @@ -1131,19 +1131,19 @@ msgstr "இந்நிரைவரிசை அழிக்கப்பட் #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "ஏனையவை" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1259,40 +1259,40 @@ msgid "Processes" msgstr "செயலாக்கங்கள்" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "து" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1310,7 +1310,7 @@ msgstr "வினாக்கள்" msgid "Traffic" msgstr "போக்குவரத்து" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "அமைவுகள்" @@ -1324,16 +1324,16 @@ msgid "Please add at least one variable to the series!" msgstr "தயவுசெய்து குறைந்தது ஒரு மாறியை\\ தொடரில் சேர்க்க!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "எதுவுமில்லை" @@ -1526,20 +1526,20 @@ msgstr "ஆராயப்படுகிறது…" msgid "Explain output" msgstr "வெளியீட்டை விளக்குக" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "நிகழ்நிலை" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "நேரம்" @@ -1626,10 +1626,10 @@ msgstr "" "மீட்டமைக்கப்படுகிறது…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "தரவிறக்கம்" @@ -1706,7 +1706,7 @@ msgstr "ஒவ்வாத பண்புகூறுகள்!" msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" @@ -1756,8 +1756,8 @@ msgid "Error text: %s" msgstr "பிழை செய்தி: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "எந்த தரவுத்தளமும் தேர்ந்தெடுக்கப்படவில்லை." @@ -1805,7 +1805,7 @@ msgstr "தரவுத்தளம் நகல் எடுக்கபடு msgid "Changing charset" msgstr "எழுத்துத்தொகுதி மாற்றப்படுகின்றது" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Foreign key check:" msgid "Enable foreign key checks" @@ -1835,71 +1835,76 @@ msgstr "உலாவுதல்" msgid "Deleting" msgstr "அழித்தல்" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "சேமிக்கபட்ட செயல்கூற்றின் வரையறையில் ஓர் RETURN கூற்று கண்டிப்பாக இருக்கவேண்டும்!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "தரவேற்றுக" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/கணம் தொகுப்பான்" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "நெடுவரிசை %sகான மதிப்பு.கள்" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "புதிய நிரல்வரிசைக்கான மதிப்புகள்" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "ஒவ்வொரு மதிப்பையும் தனித்தனி கலங்களில் உள்ளிடுக." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "%d மதிப்பு(களை) சேர்க்க" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "குறிப்பு: கோப்பில் பல்வேறு அட்டவணைகள் இருப்பின், அவை ஒன்றிணைக்கபடும்." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "வினவல் பெட்டியை மறை" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "வினவல் பெட்டியை காண்பி" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1907,54 +1912,54 @@ msgstr "வினவல் பெட்டியை காண்பி" msgid "Edit" msgstr "தொகு" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "அழி" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d என்பது சரியான நிரைவரிசை எண் அல்ல." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "அயல் குறியெண் மதிப்புகளை உலவு" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variables" msgid "Variable %d:" msgstr "மாறிகள்" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "தேர்ந்தெடுக்கவும்" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "நிரல்வரிசை தெரிவு" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "இந்த பட்டியலில் தேடுக" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1963,15 +1968,15 @@ msgstr "" "முதன்மை பட்டியலில் பத்திகள் ஏதுமில்லை. %s தரவுத்தளத்திற்கான முதன்மை பட்டியலில் தற்போதைய " "அட்டவணையில் இல்லாத பத்திகள் உள்ளதை உறுதிசெய்க." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "மேலும் பார்க்க" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "உறுதியாகவா?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1979,51 +1984,51 @@ msgstr "" "இந்த நடவடிக்கை பத்திகளின் வரையறையில் சிலவற்றை மாற்றலாம்.
நீங்கள் உறுதியாக தொடர " "விரும்புகிறீர்களா?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "தொடர்க" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "முதனிலை குறிப்பெழுத்து சேர்க்க" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "முதனிலை குறிப்பெழுத்து சேர்க்கப்பட்டது." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "அடுத்த படிநிலைக்கு செல்கிறோம்…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "'%s' அட்டவணையின் சீராக்கலின் முதல் படிநிலை நிறைவுற்றது." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "செயல்முறையின் முடிவு" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "சீராக்கலின் இரண்டாம் படிநிலை (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "முடிந்த" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "பகுதியளவு சார்புகளை உறுதிசெய்க" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "தேர்ந்தெடுக்கப்பட்ட பகுதியளவு சார்புகளை பின்வருமாறு:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2031,224 +2036,224 @@ msgstr "" "குறிப்பு: அ,ஆ->இ,ஈ என்பது அ மற்றும் ஆ நெடுவரிசைகளின் மதிப்புகள் கூட்டாக இ,ஈ " "நெடுவரிசைகளின் மதிப்புகளை முடிவுசெய்கிறது என்பதை குறிக்கிறது." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "எந்த பகுதியளவு சார்புகளும் தேர்ந்தெடுக்கப்படவில்லை!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "அட்டவணையிலுள்ள தரவின் அடிப்படையில் ஏற்படகூடிய பகுதியளவு சார்புகளை காட்டுக" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "பகுதியளவு சார்பு பட்டியலை மறைக்க" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "பொறுத்திருங்கள்!தரவின் அளவு,நெடுவரிசை எண்ணிக்கையை பொருத்தது சில நொடிகள் ஆகலாம்." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "படிநிலை" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "பின்வரும் நடவடிக்கைகள் செயல்படுத்தப்படும்:" -#: js/messages.php:461 +#: js/messages.php:462 #, fuzzy, php-format #| msgid "DROP columns %1s from the table %2s" msgid "DROP columns %s from the table %s" msgstr "%1s நிரல்வரிசைகளை %2s அட்டவணையிலிருந்து கைவிடுக" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "பின்வரும் அட்டவணையை உருவாக்குக" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "சீராக்கலின் மூன்றாம் படிநிலை (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "நிலைபெறா சார்புகளை உறுதிசெய்க" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "தேர்ந்தெடுக்கப்பட்ட சார்புகளை பின்வருமாறு:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "எந்த சார்புகளும் தேர்ந்தெடுக்கப்படவில்லை!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "சேமி" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "தேடுதல் கட்டளை விதியை மறை" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "தேடுதல் கட்டளை விதியை காண்பி" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "வரம்பு தேடல்" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "நெடுவரிசையில் மீயளவு:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "நெடுவரிசையில் மீச்சிற்றளவு:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "மீச்சிற்றளவு:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "மீப்பெருவளவு:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "தேடிமாற்று நிபந்தனையை மறை" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "தேடிமாற்று நிபந்தனையை காண்பி" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "ஒவ்வொரு புள்ளியும் ஒரு தரவு வரிசையை குறிக்கிறது." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "ஒவ்வொரு புள்ளியின் மேற்செல்லும் போதும் அதற்கான சிட்டை தெரியும்." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "அணுக்கதிற்கு, வரைபடத்தின் ஒரு பகுதியை சுட்டியால் தெரிவுசெய்க." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "மெய்நிலைக்கு வர மீள்அணுக்கம் பொத்தானை சொடுக்கவும்." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "ஒரு தரவுவரிசையை பார்க்கவும் திருத்தவும் அதன் தரவுபுள்ளியை சொடுக்கவும்." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "வரைவின் வலது கீழ் மூலையில் அழுத்தி இழுப்பதன் மூலம் அளவை மாற்றலாம்." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "இரு நெடுவரிசைகளை தேர்ந்தெடுக்கவும்" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "இரு வெவ்வேறு நெடுவரிசைகளை தேர்ந்தெடுக்கவும்" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "தரவுப்புள்ளி உள்ளடக்கம்" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "படியெடு" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "புள்ளி" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "வரிச்சரம்" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "பல்கோணி" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "கேத்திர கணிதம்" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "உள்ப்புற வளையம்" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "வெளிப்புற வளையம்:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "மறைகுறியாக்க குறிப்பெழுத்தை படியெடுக்க வேண்டுமா?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "மறைகுறியாக்க குறிப்பெழுத்து" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "மேற்கோள்காட்டப்பட்ட குறிப்பெழுத்தை தேர்ந்தெடுக்க" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "அயல் குறிப்பெழுத்தை தேர்ந்தெடுக்க" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "முதனிலை குறிப்பெழுத்து அல்லது தனித்த குறிப்பெழுத்தை தேர்ந்தெடுக்க!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "காட்டுவதற்க்கான நிரல்வரிசையை தேர்ந்தெடுக்க" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2256,78 +2261,78 @@ msgstr "" "நீங்கள் திட்டஅமைப்பில் செய்த மாற்றங்களை சேமிக்கவில்லை.எனவே அவற்றை இழக்கநேரிடும். " "தொடரவேண்டுமா?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "பக்கத்தின் பெயர்" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "பக்கத்தை சேமிக்க" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "பக்கத்தை சேமிக்க" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "பக்கத்தை திறக்க" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "பக்கத்தை அழிக்க" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "பெயரிடாதது" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "தொடர்வதற்கு ஒரு பக்கத்தை தேர்ந்தெடுக்க" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "இப்பக்கத்தில் செய்த மாற்றங்களை சேமிக்கவேண்டுமா?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "பக்கம் நீக்கப்பட்டது" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "தொடர்புசார் ஒழுங்கமைப்பை தரவேற்றுக" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "மாற்றங்களை சேமிக்க" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "நெடுவரிசை \"%s\" க்கு ஒரு விருப்பத்தை சேர்க்க." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d கருப்பொதிவு(கள்) உருவாக்கப்பட்டன." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "தொகுப்பதை நிறுத்த Esc அழுத்தவும்." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2335,15 +2340,15 @@ msgstr "" "நீங்கள் சில தரவுகளை தொகுத்துள்ளீர்கள். தரவை செமிக்காமல் இப்பக்கத்தைவிட்டு வெளியேறவேண்டுமா " "என உறுதிசெய்க?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "மறுவரிசைப்படுத்த இழுக்கவும்." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "இந்நெடுவரிசையை பொருத்து முடிவுகளை வரிசைப்படுத்த சொடுக்குக." -#: js/messages.php:581 +#: js/messages.php:582 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2356,26 +2361,26 @@ msgstr "" "இந்நெடுவரிசையை ORDER BY உறுப்புரையில் சேர்க்க அல்லது ASC/DESCஐ மாற்ற shift" "+சொடுக்கவும்.
- ORDER BY உறுப்புரையிலிருந்து நீக்க Ctrl+சொடுக்கவும்" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "சேர்க்க/நீக்க சொடுக்கவும்." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்க இருமுறை சொடுக்குக." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "நிரல்வரிசையின் காட்சிப்பண்பை
மாற்ற கீழிறங்கு குறியை சொடுக்குக." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "அனைத்தையும் காட்டு" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2383,115 +2388,115 @@ msgstr "" "இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, " "தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "சரியான அறுபதின்ம சரத்தை உள்ளிடவும்.௦-9,A-F ஆகியவை ஏற்ற உள்ளீடுகள்." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "மெய் சரம்" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "விலக்கு" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "கைவிடப்பட்டது" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "வெற்றி" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "தரவிறக்க நிலை" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "கோப்புகளை இங்கு விடுக" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "ஒரு தரவுத்தளத்தை முதலில் தேர்வுசெய்க" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "அச்சிடுக" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை இருமுறை-சொடுக்குக." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை சொடுக்குக." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "இணைப்புக்கு செல்:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்கவும்." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "நிரல்வரிசை பெயரை இடைபிடிப்புக்கு படியெடுக்க வலமுறை-சொடுக்குக." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "கடவுச்சொல்லை இயற்று" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "இயற்று" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "மேலும்" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "பலகத்தை காட்டு" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "பலகத்தை மறை" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "மறைத்துள்ள வழிசெலுத்தல் படிமுறை உருப்படிகளை காண்பி." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "முதன்மை பலகத்துடன் இணைக்க" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "முதன்மை பலகத்திலிருந்து பிரிக்க" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "நீங்கள் கோரிய பக்கம் வரலாற்றில் இல்லை, அது செல்லுபடி இல்லாமல் போயிருக்கலாம்." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2501,57 +2506,57 @@ msgstr "" "கருத்தில் கொள்ளவும்.மிக அண்மைய பதிப்பு %s,%s அன்று வெளியிடப்பட்டது." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", புதிய நிலைப்பதிப்பு:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "இன்றுவரை" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "விவரபார்வையை உருவாக்குக" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Send Error Report" msgid "Send error report" msgstr "பிழை அறிக்கை அனுப்புக" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "பிழை அறிக்கை அளிக்க" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "ஒரு ஆபத்தான ஜாவா ஸ்க்ரிப்ட் பிழை நிகழ்ந்துள்ளது. பிழை அறிக்கை அளிக்க விரும்புகிறீர்களா?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "அறிக்கை அமைப்புக்களை மாற்றுக" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "அறிவிக்கை விவரங்களை காட்டுக" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "PHPயின் நிலையில் குறைந்த செயலாக்கநேர வரம்பின் விளைவாக உங்கள் தரவேற்றம் முடிவுறவில்லை!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2560,62 +2565,62 @@ msgstr "" "எச்சரிக்கை: இப்பக்கத்திலுள்ள ஒரு படிவத்தில் %dஐ விட அதிகமான கலங்கள் உள்ளன.PHPயின் " "max_input_vars அமைப்பாக்கத்தின் விளைவாக அனுப்பும்போது சில கலங்கள் விடப்படலாம்." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "சேவையகத்தில் சில பிழைகள் கண்டறியப்பட்டுள்ளன!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "இச்சாளரத்தின் கீழ்பக்கம் பார்க்கவும்." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "அனைத்தையும் புறக்கணி" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "உங்கள் அமைவுகளின்படி,தற்பொழுது அவை அனுப்பபட்டுகொண்டிருக்கிறன.காத்திருக்கவும்." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "இந்த வினவலை மீண்டும் செயல்படுத்த வேண்டுமா?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "உங்களுக்கு உண்மையிலேயே புத்தகக்குறியை நீக்க வேண்டுமா?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2624,385 +2629,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "தரவுதளத்தை இப்படி படியெடுக்க" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "அட்டவணையின் முன்னொட்டு சேர்க்க:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "அட்டவணை முன்னொட்டை பதிலிடு" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "பின்" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "அடுத்த" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "இன்று" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "ஜனவரி" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "பெப்ரவரி" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "மார்ச்" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "ஏப்ரல்" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "மே" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "ஜூன்" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "ஜூலை" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "ஆகஸ்ட்" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "செப்டம்பர்" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "அக்டோபர்" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "நவம்பர்" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "டிசம்பர்" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "மே" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "புதன்" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "வியாழன்" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "சனி" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "திங்" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "புத" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "வியா" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "ஞாயி" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "திங்" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "செவ்" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "புத" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "வியா" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "வெள்" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "கிழமை" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "நாள்காட்டி-மாதம்-ஆண்டு" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "எதுவுமில்லை" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "மணித்தியாலம்" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "நிமிடம்" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "வினாடிகள்" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field:" msgid "Please fix this field" msgstr "உரைபுலத்தின் மூலமாக:" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "வலு" @@ -3067,20 +3092,20 @@ msgid "Charset" msgstr "எழுத்துக்கணம்" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "அடுக்கு" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3277,7 +3302,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3324,51 +3349,51 @@ msgstr "" msgid "Font size" msgstr "எழுத்துரு அளவு" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "புத்தகக்குறிகள் இல்லை" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL வினவல் காட்சிமுனையம்" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "வழங்கி பதிலளிக்கவில்லை(அல்லது உள்வழங்கியின் இணைவுக்கொள்குழி சரியாக அமைக்கப்படவில்லை)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "வழங்கி பதிலளிக்கவில்லை." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "தரவுத்தளத்தை கொண்டுள்ள அடைவின் உரிமைகளை சரிபார்க்க." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "தகவல்கள்…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "மதிப்புருக்கள் காணப்படவில்லை:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "அமைப்பாக்கத்தில் உள்ளவாறு அமைத்த கட்டுபாட்டுபயனருக்கான இணைப்பு தோல்வியடைந்தது." @@ -3464,112 +3489,107 @@ msgstr "செருகுக:" msgid "Del:" msgstr "நீக்குக:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "தரவுத்தளம் %sன் மீது SQL வினவல்:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "வினவலை சமர்ப்பி" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "சேமித்த புத்தகக்குறியிடப்பட்ட தேடல்:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "புது புத்தகக்குறி" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "புத்தகக்குறி இடுக" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "புத்தகக்குறி புதுப்பிக்க" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "புத்தகக்குறியை அழிக்க" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "குறைந்தபட்சம் ஒரு சொல்லையாவது" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "அனைத்து சொற்களும்" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "சரியான சொற்றொடர்" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "வழக்கமான வெளிப்பாடு" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s இற்கான தேடல் முடிவுகள்:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "மொத்தம்: %s பொருத்தம்" msgstr[1] "மொத்த: %s பொருத்தங்கள்" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s அட்டவணையில் பொருந்தியவை %2$s " msgstr[1] "%1$s அட்டவணையில் பொருந்தியவைகள் %2$s " -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "உலாவு" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "தரவுத்தளத்தில் தேடு" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "தேட வார்த்தைகள் அல்லது மதிப்புகள் (குழுக்குறி: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "கண்டறி:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "சொற்கள் ஓர் இடைவெளி எழுத்தால் (\" \") பிரிக்கப்பட்டிருக்கும்." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "அட்டவணைகளில்:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "அனைத்தையும் தெரிவுநீக்கு" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "நிரல் உள்ளே:" @@ -3589,30 +3609,30 @@ msgstr "நிறைவரிசைகளை வடிகட்டு" msgid "Search this table" msgstr "இந்த அட்டவணையில் தேடுக" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "ஆரம்பம்" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "முந்தைய" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "அடுத்து" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "முடிவு" @@ -3621,7 +3641,7 @@ msgstr "முடிவு" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "நிரைவரிசைகளின் எண்ணிக்கை:" @@ -3630,8 +3650,8 @@ msgstr "நிரைவரிசைகளின் எண்ணிக்கை:" msgid "Sort by key" msgstr "குறிப்பெழுத்தின்படி வரிசைபடுத்துக" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3653,10 +3673,10 @@ msgstr "குறிப்பெழுத்தின்படி வரிச #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "விருப்பத்தேர்வுகள்" @@ -3698,29 +3718,29 @@ msgstr "நன்கறிந்த உரை" msgid "Well Known Binary" msgstr "நன்கறிந்த இருமதரவு" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "இந்நிரைவரிசை அழிக்கப்பட்டது." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "கொல்க" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "அண்ணளவாக இருக்கலாம்.[doc@faq3-11]FAQ 3.11[/doc]ஐ காண்க." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "உங்கள் SQL வினவல் வெற்றிகரமாக நிறைவேற்றப்பட்டது." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3728,75 +3748,75 @@ msgid "" msgstr "" "இவ்விவரபார்வை குறைந்தளவு இத்தனை நிரைவரிசைகள் கொண்டிருக்கலாம். %sஆவணச்சான்றை%s காண்க." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s - %2s நிரைவரிசைகள் காட்டப்படுகின்றன" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "இவ்வினவலில் %1$d மொத்தம், - %2$d" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "%d மொத்தம்" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "வினவல் %01.4f நொடிகள் எடுத்துக்கொண்டது." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "அனைத்தையும் தெரி" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "வினவலின் பயன்முடிவுகளின் செயல்பாடுகள்" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "விளக்கப்படத்தை காட்டுக" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "GIS தரவை காட்சிப்படுத்துக" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "இணைப்பை காணவில்லை!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3804,69 +3824,69 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "பல்வேறு பிழை செய்திகள், சிலவற்றை காட்டவில்லை." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "அறிவிக்கை" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "அடுத்தமுறை தன்னிச்சையாகவே அறிவிக்கையை அனுப்புக" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "ஓர் தற்காலிக அடைவை காணவில்லை." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "கோப்பை வாசிக்க இயலவில்லை!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3875,28 +3895,28 @@ msgstr "" "நீங்கள் நினைவேற்ற முயன்ற கோப்பு ஆதரவற்ற சுருக்கமுறைமை (%s) கொண்டது. அதற்கான ஆதரவு " "நடைமுறைப்படுத்தப்படாமலிருக்கலாம் அல்லது உள்ளமைப்பால் முடக்கப்பட்டிருக்கலாம்." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "தற்போது Git %2$s கிளையிலிருந்து %1$s திருத்தபதிப்பு இயங்குகிறது." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git தகவல் காணவில்லை!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "அச்சுப் பார்வை" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3905,20 +3925,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "சுட்டுகள்" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3928,78 +3948,78 @@ msgstr "சுட்டுகள்" msgid "Action" msgstr "செயல்" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "முக்கியபெயர்" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "தனித்தன்மை" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "பொதிக்கப்பட்டது" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "கருத்துரை" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "அழி" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "பக்க எண்:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "மொழி" @@ -4023,11 +4043,11 @@ msgstr "வழங்கி" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4046,14 +4066,15 @@ msgid "View" msgstr "நோக்கு" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4062,8 +4083,8 @@ msgid "Table" msgstr "அட்டவணை" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4071,45 +4092,45 @@ msgstr "அட்டவணை" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "தேடு" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "செருகு" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "செயல்பாடுகள்" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4125,16 +4146,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4142,20 +4163,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "மைய நெடுவரிசைகள்" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "தரவுத்தளங்கள்" @@ -4166,53 +4187,53 @@ msgid "User accounts" msgstr "பயனர் குழுக்கள்" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "படியெடுத்தல்" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "மாறிகள்" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "எழுத்துக்கணங்கள்" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "செயல்பொறிகள்" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது." msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது." msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4260,27 +4281,27 @@ msgstr "விருப்பமான அட்டவணைகள்" msgid "Favorites" msgstr "விருப்பமானவைகள்" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4342,7 +4363,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4396,76 +4417,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "தெரியாத அட்டவணை நிலை:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "செல்லாத தரவுத்தளம்:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "செல்லாத அட்டவணைப் பெயர்:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "அட்டவணை %1$sஐ %2$s என மறுபெயரிடுதல் தோல்வியடைந்தது!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s அட்டவணையானது %2$s ஆக பெயர் மாற்றப்பட்டது." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4473,19 +4494,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "தொகுப்புக்குறிகாட்டியை முதனிலையாக பெயர்மாற்றம் செய்யமுடியவில்லை!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4752,7 +4773,7 @@ msgid "Date and time" msgstr "நாள் மற்றும் நேரம்" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4767,72 +4788,72 @@ msgstr "வெளி சார்பு" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "நிலையான தரவு" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL சொன்னது: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP நிரல் இல்லாமல்" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "வினவலை சமர்ப்பி" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP குறிமுறை உருவாக்கு" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "புதுப்பி" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "பகுமுறையிடல்" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit view" msgctxt "Inline edit query" @@ -4840,63 +4861,63 @@ msgid "Edit inline" msgstr "தொகுப்பு பார்வை" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "ஞாயிறு" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y இல் %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s நொடிகள்" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "மதிப்புருக்கள் காணப்படவில்லை:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "தரவுத்தளம் தாவி செல்லவும் \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s செயல்பாடு எதுவென்று தெரிந்த ஓர் பிழையால் பாதிக்கப்பட்டுள்ளது, %sஐ பார்க்க" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "உமது கணினியிலிருந்து:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "வலை சேவையகத்தின் பதிவேற்ற அடைவுகளிலிருந்து %s தேர்ந்தெடுங்கள்:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "பதிவேற்றத்திற்காக நீங்கள் தேர்வு செய்த அடைவை எட்டமுடியவில்லை." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "பதிவேற்றுவதற்கு எந்த கோப்புகளும் இல்லை!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "வெறுமை" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "செயலாக்குக" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "பயனர்கள்" @@ -4910,7 +4931,7 @@ msgstr "ஒவ்வொரு நிமிடத்திற்கும்" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "ஒவ்வொரு மணிக்கும்" @@ -4918,12 +4939,12 @@ msgstr "ஒவ்வொரு மணிக்கும்" msgid "per day" msgstr "ஒரு நாளைக்கு" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "தேடுக:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4931,7 +4952,7 @@ msgstr "தேடுக:" msgid "Description" msgstr "சிறுகுறிப்பு" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "இம்மதிப்பை பயன்படுத்துக" @@ -4968,22 +4989,22 @@ msgstr "ஆம்" msgid "NO" msgstr "இல்லை" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "பெயர்" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "நீளம்/மதிப்புகள்" @@ -4994,7 +5015,7 @@ msgstr "நீளம்/மதிப்புகள்" msgid "Attribute" msgstr "பங்களிப்பு" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5011,11 +5032,11 @@ msgstr "நெடுவரிசையை சேர்க்க" msgid "Select a column." msgstr "ஒரு நெடுவரிசையை தேர்ந்தெடுக்கவும்." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "புதிய நெடுவரிசையை சேர்க்க" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5023,7 +5044,7 @@ msgstr "புதிய நெடுவரிசையை சேர்க்க" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5032,26 +5053,26 @@ msgstr "" "உங்கள் PHP அமைப்பாக்க கோப்பில் mbstring.func_overload அமைவை இயலசெய்துள்ளீர். " "இவ்விருப்பம் PHPMyAdminஉடன் இணக்கமற்றது மேலும் சில தரவுகள் வீணாகலாம்!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "வழங்கி %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5059,20 +5080,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5615,7 +5636,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5717,13 +5738,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add statements:" msgid "Use %s statement" msgstr "கூற்றுகளை சேர்க்க:" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "கோப்பாக சேமிக்க" @@ -5733,7 +5754,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5858,7 +5879,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5873,7 +5894,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்" @@ -5882,7 +5903,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5912,7 +5933,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" @@ -6084,7 +6105,7 @@ msgid "Customize the navigation tree." msgstr "வழிசெலுத்தல் பலகத்தை தனிப்பயனாக்குக" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6946,7 +6967,7 @@ msgstr "" msgid "Authentication method to use." msgstr "உறுதிப்படுத்துதல் பயன்முறைமை." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7595,7 +7616,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "புதிய பதிப்பை பார்வையிடவும்" @@ -7603,10 +7624,10 @@ msgstr "புதிய பதிப்பை பார்வையிடவு msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7741,24 +7762,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "கட்டற்றஆவண உரை" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "விருப்பமானவை பட்டியல் நிரம்பிவிட்டது!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s அட்டவணை வெறுமையாக்கப்பட்டது." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "நோக்குநிலை %s கைவிடப்பட்டது." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "அட்டவணை %s கைவிடப்பட்டது." @@ -7772,12 +7793,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7786,7 +7807,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7800,42 +7821,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d தரவுத்தளம் வெற்றிகரமாக கைவிடப்பட்டது." msgstr[1] "%1$d தரவுத்தளங்கள் வெற்றிகரமாக கைவிடப்பட்டன." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "நிரைவரிசைகள்" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "மொத்தம்" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "பயனீட்டளவு" @@ -7862,33 +7883,33 @@ msgstr "" msgid "Enable statistics" msgstr "வினவல் புள்ளிவிவரவியல்" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "சேவையக மாறிகள் மற்றும் அமைப்புக்கள்" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "மாறி அமைப்பு தோல்வியடைந்தது" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "காட்டுவதற்கு தரவு இல்லை" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7939,7 +7960,7 @@ msgstr "நெடுவரிசைகள் வெற்றிகரமாக #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "வினவல் வழு" @@ -7956,12 +7977,12 @@ msgstr "மாற்று" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "சுட்டுதொகுப்புக்குறி" @@ -7982,13 +8003,13 @@ msgstr "" msgid "Distinct values" msgstr "தனித்த மதிப்புகள்" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8010,179 +8031,183 @@ msgstr "" "சரிபார்க்கவும்!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "கடவுச்சொல்:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "மீண்டும் உள்ளிடு:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "கடவுச்சொல் கூளமாக்கள்:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export contents" msgid "Export templates:" msgstr "உள்ளடக்கத்தை தரவேற்றுக" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "New page" msgid "New template:" msgstr "புது பக்கம்" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Page name" msgid "Template name" msgstr "பக்கத்தின் பெயர்" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "புதுப்பிக்கப்பட்டது" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "ஒரு அட்டவணையை தேர்வுசெய்க" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export schema" msgid "Export method:" msgstr "ஒழுங்கமைவை தரவேற்றுக" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "தரவுத்தளங்கள்" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "அட்டவணைகள்:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ ஆனது வழங்கியின் பெயராக கொள்ளப்படும்" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8190,102 +8215,102 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "விவரபார்வையை அட்டவணையாக தரவாக்குக" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "அட்டவணை தலைப்புகளை தரவேற்றுக" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "வெளியீட்டை ஒரு கோப்பாக சேமிக்க" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "ஒரு தரவுத்தளத்தை தேர்வுசெய்க" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "அட்டவணையை தேர்வுசெய்க" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "தரவுத்தளத்தின் புதிய பெயர்" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "அட்டவணையின் புதிய பெயர்" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "பழைய நிரல்வரிசையின் பெயர்" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "புதிய நிரல்வரிசையின் பெயர்" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git திருத்தபதிப்பு:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%1$s அன்று %2$s ஆல் உறுதியளிக்கப்பட்டது" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%1$s அன்று %2$s ஆல் இயற்றப்பட்டது" @@ -8688,13 +8713,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "கோப்பை சேமிக்குமளவு இடமில்லை %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8702,74 +8727,74 @@ msgstr "" "வழங்கியில் கோப்பு %s முன்னரே உள்ளது, கோப்பின் பெயரை மாற்றுக அல்லது மேலெழுதும்படி " "குறிக்க." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "வழங்கிக்கு கோப்பு %s சேமிக்க அனுமதி இல்லை." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "தரவு %s கோப்பாக சேமிக்கப்பட்டுள்ளது." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "தரவுத்தளம்: %s க்கு செல்க" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8780,84 +8805,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "செயல்கூறு" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "அல்லது" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8868,31 +8894,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "கட்டமைப்பை மட்டும்" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "கட்டமைப்பு மற்றும் தரவுகள்" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "தரவுகளை மட்டும்" @@ -8903,14 +8929,14 @@ msgid "Add AUTO INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "கட்டுப்பாடுகளை சேர்க்க" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges:" @@ -8959,8 +8985,8 @@ msgstr "செயல்முறைகள்:" msgid "Views:" msgstr "விவரபார்வைகள்:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "காண்பி" @@ -9005,17 +9031,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9031,7 +9057,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "நிரல்வரிசைகளை சேர்க்க முடியவில்லை!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9050,7 +9076,7 @@ msgstr "புதியது" msgid "Database operations" msgstr "தரவுதள நடவடிக்கைகள்" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "மறைக்கப்பட்ட உருப்படிகளை காட்டு" @@ -9149,11 +9175,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "ஒன்றை தேர்ந்தெடுக்கவும்…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "அதுபோல் நிரல்வரிசை இல்லை" @@ -9387,8 +9413,8 @@ msgid "Rename database to" msgstr "தரவுத்தளத்தைப் இப்படி மறுபெயரிடுக" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9432,181 +9458,181 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "அட்டவணை தெரிவுகள்" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "அட்டவணை பராமரிப்பு" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "அட்டவணையை பகுப்பாய்" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "அட்டவணையை சரிபார்" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "அட்டவணையை சரிபார்" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "அட்டவணையை ஒருங்கமை" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "அட்டவணையை உகப்பாக்கு" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "அட்டவணையை திருத்து" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "தரவை அல்லது அட்டவணையை அழி" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "அட்டவணையை வெறுமையாக்கு (காலி)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "அட்டவணையை அழி (அழி)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "ஆரய்தல்" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "சரிபார்" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "உகப்பாக்கு" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "மீள்வாகு" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "திருத்து" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "சுருக்கு" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "பிரிவினை பராமரிப்பு" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "பிரிவினை %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9633,18 +9659,18 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%sக்கு வருக" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9653,7 +9679,7 @@ msgstr "" "நீங்கள் அமைப்பாக்க கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$sநிரல்கோவையை%2$s " "பயன்படுத்த வேண்டும்." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9664,7 +9690,7 @@ msgstr "" "சேவர், பயனாளர் பெயர், கடவுச் சொல் என்பவை MySql நிர்வாகியால் வழங்கப்பட்ட தரவுகளுடன் " "பொருந்துகின்றதா என சரி பாருங்கள்." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9689,15 +9715,15 @@ msgstr "பயனாளர்:" msgid "Server Choice:" msgstr "விருப்பமான வழங்கி:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -9760,7 +9786,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9769,7 +9795,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9777,8 +9803,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9864,7 +9890,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10380,7 +10406,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "மிகை" @@ -10714,57 +10740,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10773,297 +10799,297 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "பாதுகாப்பற்ற இணைப்பு" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "பயனர் பெயர்:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "தலைமை நிகழ்நிலை" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "துணைநிலை நிகழ்நிலை" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "உரைபுலத்தின் மூலமாக:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "கடவுச்சொல்லை இயற்று" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "வழு." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11084,7 +11110,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11093,75 +11119,75 @@ msgstr "" msgid "Edit event" msgstr "நிகழ்வை தொகுக்க" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "வேண்டுகோள் செயலாக்கதில் பிழை:" @@ -11182,7 +11208,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "செயல்கள்->திருப்பியளிப்பது" @@ -11194,132 +11220,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "செயல்->திசைப்பாடு" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "மதிப்புருவை சேர்க்க" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "கடைசி மதிப்புருவை நீக்குக" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "செயல்கள்->திருப்பியளிதல் விருப்பங்கள்" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "மதிப்புருபுக்கு தகா வழிமதிப்பு \"%s\" அளிக்கப்பட்டுள்ளது." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11341,32 +11367,32 @@ msgstr "" msgid "Edit trigger" msgstr "புதிய பயனாளரை சேர்க்க->செயல்தூண்டியை தொகுக்க" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11487,602 +11513,555 @@ msgstr "எழுத்து கணங்கள் மற்றும் அட msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Rate of aborted connections" msgid "Does not require SSL-encrypted connections." msgstr "கைவிடப்பட்ட இணைப்புகளின் வீதம்" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Rate of aborted connections" msgid "Requires SSL-encrypted connections." msgstr "கைவிடப்பட்ட இணைப்புகளின் வீதம்" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "routine" msgid "Routine" msgstr "%s களத்தை சேர்க்க->செயல்முறை" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "உலகளாவிய" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "உறுதிப்படுத்தல்" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "கடவுச்சொல்லை மாற்றவும்" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authentication" -msgid "Native MySQL Authentication" -msgstr "உறுதிப்படுத்தல்" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "புகுபதிவு தகவல்" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "பயனர் பெயர்:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Constraint name" msgid "Host name" msgstr "கட்டுப்பாட்டின் பெயர்" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "உறுதிப்படுத்தல்" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "கடவுச்சொல் கூளமாக்கள்:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "பயனர்குழுவை சேர்க்க" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database operations" msgid "Database for user account" msgstr "தரவுதள நடவடிக்கைகள்" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" தரவுத்தளத்தின் தனிசலுகைகளை சரிபார்க்க." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "புதிய பயனாளரை சேர்க்க->தனிச்சலுகையை தொகுக்க:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "பயனர் குழுவை தொகுக்க" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "தனிசலுகைகளை சரிபார்க்க" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Removing Selected Users" -msgid "Remove selected user accounts" -msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர்கள் நீக்கப்படுகின்றனர்" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "புதியது" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "புதிய பயனாளரை சேர்க்க->தனிச்சலுகையை தொகுக்க:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User groups" msgid "User account" msgstr "பயனர் குழுக்கள்" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "பயனர்கள் கண்ணோட்டம்" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12091,7 +12070,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12100,11 +12079,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்." @@ -12377,12 +12356,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "வடிகட்டிகள்" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -12405,12 +12384,12 @@ msgstr "மணித்துளி வீதம்:" msgid "per second:" msgstr "நொடி வீதம்:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12434,33 +12413,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12468,78 +12447,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12547,7 +12526,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12555,42 +12534,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12598,33 +12577,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12633,242 +12612,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12876,99 +12855,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12976,18 +12955,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12995,11 +12974,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13028,37 +13007,37 @@ msgstr "தரவுத்தள படிநிலைமட்ட தாவல msgid "Table level tabs" msgstr "அட்டவணை படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "பயனர்களை காட்டுக" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "பயனர்குழுவை சேர்க்க" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "பயனர்குழுவின் பெயர்:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "வழங்கி-படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "தரவுத்தள-படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "அட்டவணை-படிநிலைமட்ட தாவல்கள்" @@ -13164,7 +13143,7 @@ msgstr "SQL வினவலை/களை %s தரவுத்தளத்தி msgid "Run SQL query/queries on table %s" msgstr "SQL வினவலை/களை %s தரவுத்தளத்தில் செயலாக்குக" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "அகற்று" @@ -13252,175 +13231,175 @@ msgstr "" msgid "Version" msgstr "பதிப்பு" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "உருவாக்கப்பட்டது" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "புதுப்பிக்கப்பட்டது" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "பதிப்பை உருவாக்கு" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "கண்காணிப்பு அறிக்கை" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "கட்டமைப்பு நிகழ்காப்புப்பிரதி" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "செயற்படு" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "செயல்பாடற்ற" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "தரவு இல்லை" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "%s ஆக தரவேற்றுக" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "திகதி" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "ஒன்றுமில்லாத" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s ன் %1$s பதிப்பை உருவாக்குக" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "கண்காணிக்கபடாத அட்டவணைகள்" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "அட்டவணையை கண்காணி" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "கவனிக்கப்படும் அட்டவணைகள்" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "இறுதி பதிப்பு" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "கண்காணிப்பு தரவுகள் அழிக்கப்படுகின்றன" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "பதிப்புக்கள்" @@ -13428,7 +13407,7 @@ msgstr "பதிப்புக்கள்" msgid "Manage your settings" msgstr "உங்கள் அமைவுகளை கையாளுக" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13454,7 +13433,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13462,57 +13441,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "அமைப்புருவாக்கத்தை சேமிக்க முடியவில்லை, அளிக்கப்பட்ட படிவத்தில் பிழைகள் உள்ளன!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin ஆவணச்சான்று" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "கோப்பிலிருந்து தரவிறக்குக" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "உலாவியின் உள்சேமிப்பிலிருந்து தரவிறக்குக" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "உங்கள் உலாவியின் உள்சேமிப்பிலிருந்து அமைப்புகளை தரவிறக்குக." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "நீங்கள் அமைவுகள் எதுவும் சேமித்து வைத்திருக்கவில்லை!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "தற்போதைய அமைப்பாக்கத்துடன் இணைக்கவும்" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13521,25 +13500,25 @@ msgstr "" "நீங்கள் config.inc.phpஐ மாற்றுவதன் மூலம் மேலும் அதிக அமைவுகளை அமைக்கலாம், எகா. " "%sநிறுவல்கோவை%s மூலம்." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "கோப்பாக சேமிக்க" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "உலவியின் நினைவகத்துள் சேமிக்க" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "அமைப்புகள் உங்கள் உலவியின் உள்நினைவகத்துள் சேமிக்கப்படும்." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "நீங்கள் உங்கள் அனைத்து அமைப்புக்களையும் அவற்றின் இயல்நிலை மதிப்புக்கு மீட்டமைக்கலாம்." @@ -13547,45 +13526,45 @@ msgstr "நீங்கள் உங்கள் அனைத்து அமை msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "பதிவிறக்கம்" @@ -13593,99 +13572,98 @@ msgstr "பதிவிறக்கம்" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "பாதுகாப்பற்ற இணைப்பு" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "உள்ளமைவு சேமிக்கப்பட்டது." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "உள்ளமைவு சேமிக்கப்பட்டது." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "இறுதிப்பர்வை" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "மறைத்த செய்திகளை காட்டு (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "புதிய சேவையகம்" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "முன்னிருப்பு மொழி" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ஒன்றுமில்லை -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "முன்னிருப்பு சேவையகம்" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "முடிவுக்கோடு" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "காட்டுக" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "ஏற்று" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin அகப்பக்கம்" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "நன்கொடை" @@ -13721,28 +13699,28 @@ msgstr "வழுக்களை நிராகரி" msgid "Show form" msgstr "படிவத்தை காட்டு" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "புதிய நிலையான பதிப்புகள் ஏதுமில்லை" @@ -13755,12 +13733,12 @@ msgstr "தவறான தரவு" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s இந்த அட்டவணை ஏற்கனவே உள்ளது!" @@ -13773,35 +13751,35 @@ msgstr "" msgid "Invalid table name" msgstr "தகுதியற்ற அட்டவணைப் பெயர்" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The columns have been moved successfully." msgid "Tracking versions deleted successfully." msgstr "நெடுவரிசைகள் வெற்றிகரமாக நகர்த்தப்பட்டன." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13999,7 +13977,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -14017,7 +13995,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "உள்ளிடு மாற்றுருவாக்கம்" @@ -14479,17 +14457,17 @@ msgid "Size" msgstr "அளவு" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "உருவாக்கம்" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "முந்தைய நிகழ்நிலையாக்கம்" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "கடைசி சரிபார்ப்பு" @@ -14524,6 +14502,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "கண்காணிப்பு தரவுகள் அழிக்கப்படுகின்றன" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "பின்வரும் தரவுத்தள(ங்களின்)த்தின் மீதான தனிச்சலுகைகளை சேர்க்க:" @@ -14542,10 +14526,45 @@ msgstr "பின்வரும் அட்டவணையின் மீத msgid "Add privileges on the following table:" msgstr "பின்வரும் அட்டவணையின் மீதான தனிச்சலுகையை சேர்க்க:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "புதியது" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Removing Selected Users" +msgid "Remove selected user accounts" +msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர்கள் நீக்கப்படுகின்றனர்" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14578,7 +14597,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "முடக்கப்பட்டது" @@ -14740,7 +14759,7 @@ msgstr "பயனர்:" msgid "Comment:" msgstr "கருத்துரை:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14772,26 +14791,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+கட்டுப்பாட்டை சேர்க்க" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "உள்ளமை உறவுமுறைகள்" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "காட்சிப்படுத்த நிரல்வரிசையை தேர்ந்தெடுக்கவும்:" @@ -14844,11 +14863,11 @@ msgstr "மெய் சரம்" msgid "Replaced string" msgstr "பதிலிடப்பட்ட சரம்" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "பதிலிடு" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14921,7 +14940,7 @@ msgid "at beginning of table" msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -14953,28 +14972,28 @@ msgstr "நிரல் நீளம்" msgid "Index length" msgstr "நிரல் நீளம்" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Partition %s" msgid "Partition table" msgstr "பிரிவினை %s" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit view" msgid "Edit partitioning" msgstr "தொகுப்பு பார்வை" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "தொகுப்பு பார்வை" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "பயனுடைய" @@ -14999,31 +15018,31 @@ msgstr "அட்டவணை கட்டமைப்பை மெருகே msgid "Track view" msgstr "விவரபார்வையை கண்காணி" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "வரிசை புள்ளிவிவரங்கள்" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "மாறா" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "இறக்காற்றல்" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "நிரல் நீளம்" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "நிரல் அளவு" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15036,46 +15055,46 @@ msgstr "" msgid "Click to toggle" msgstr "பிறழ்வதற்கு சொடுக்குக" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "கிடைக்கபெறும் உலவியின் காட்சித்தெரிவு மாற்றமைப்புகள்" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "விவரிப்பு" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "அடுத்த படிநிலைக்கு செல்கிறோம்…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15150,7 +15169,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15175,19 +15194,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "எந்த தரவுத்தளமும் தேர்ந்தெடுக்கப்படவில்லை." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15246,26 +15265,26 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "Rate of table open" msgid "Unexpected beginning of statement." msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15284,10 +15303,16 @@ msgstr "%sம் வரியில் எதிர்பாராத எழு msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Rate of table open" +msgid "Unexpected ordering of clauses." +msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15332,7 +15357,7 @@ msgstr "" msgid "strict error" msgstr "வினவல் வழு" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16390,6 +16415,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "உறுதிப்படுத்தல்" + #~ msgid "Show PHP information" #~ msgstr "PHP தகவலைக் காட்டுக" diff --git a/po/te.po b/po/te.po index e8b360cd9c..60d765b218 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu Are you sure you " "want to continue?" msgstr "" # మొదటి అనువాదము -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Add into comments" msgid "Continue" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" # మొదటి అనువాదము -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "మార్చుము" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" # మొదటి అనువాదము -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2052,268 +2057,268 @@ msgstr "" msgid "End of step" msgstr "వాక్యాంతము" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "భద్రపరచు" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "శోధించు" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Comments" msgid "Column maximum:" msgstr "వ్యాఖ్యలు" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Comments" msgid "Column minimum:" msgstr "వ్యాఖ్యలు" -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "గరిష్ఠ పట్టికలు" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "గరిష్ఠ పట్టికలు" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "విషయ సూచిక" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "పుట పేరు" # మొదటి అనువాదము -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Create a page" @@ -2321,14 +2326,14 @@ msgid "Save page" msgstr "పుటని సృష్టించు" # మొదటి అనువాదము -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Create a page" msgid "Save page as" msgstr "పుటని సృష్టించు" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2336,238 +2341,238 @@ msgstr "పుటని సృష్టించు" msgid "Open page" msgstr "పుటలు" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "తొలగించు" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Title" msgid "Untitled" msgstr "శీర్షిక" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Export method" msgid "Export relational schema" msgstr "ఎగుమతి పద్ధతి" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "%s నిలువు వరుసకు విలువలు" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "దాఖలుచేయి" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "అన్నీ చూపించు" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "అసలు స్థానం" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "రద్దుచేయి" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "దిగుమతి" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "ముద్రించు" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "అన్నీ చూపించు" # మొదటి అనువాదము -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide/Show all" msgid "Hide panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show" msgid "Show hidden navigation tree items." msgstr "చూపించు" # మొదటి అనువాదము -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Hide/Show all" msgid "Link with main panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Hide/Show all" msgid "Unlink from main panel" msgstr "అన్నింటిని చూపుము/దాచుము" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2575,114 +2580,114 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" # మొదటి అనువాదము -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Basic settings" msgid "Change report settings" msgstr "ప్రాధమిక అమరికలు" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show more actions" msgid "Show report details" msgstr "మరిన్ని చర్యలను చూపించు" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2691,30 +2696,50 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Display table filter" msgid "Add table prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Display table filter" msgid "Replace table with prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + # మొదటి అనువాదము -#: js/messages.php:757 +#: js/messages.php:765 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -2722,7 +2747,7 @@ msgid "Prev" msgstr "గత" # మొదటి అనువాదము -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2730,149 +2755,149 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "జనవరి" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "మార్చి" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "మే" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "జూన్" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "జూలై" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "నవంబర్" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2880,183 +2905,183 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "వారం" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ఏమీలేదు" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "క్షణం" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" # మొదటి అనువాదము -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "పొరపాటు" @@ -3118,20 +3143,20 @@ msgid "Charset" msgstr "అక్షరమాల" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3339,7 +3364,7 @@ msgid "Czech-Slovak" msgstr "ఛెక్-స్లోవాక్" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "తెలియని" @@ -3387,7 +3412,7 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3395,47 +3420,47 @@ msgstr[0] "" msgstr[1] "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "శోధించు" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Server configuration" msgid "Failed to set configured collation connection!" msgstr "సేవకి స్వరూపణం" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "వివరాలు…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Server configuration" msgid "Missing connection parameters!" msgstr "సేవకి స్వరూపణం" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3548,130 +3573,125 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "క్వెరీ ని సమర్పించు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "శోధించు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "శోధించు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "శోధించు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Search" msgid "Update bookmark" msgstr "శోధించు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "శోధించు" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "కనీసం ఒక్క పదం" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "అన్ని పదాలూ" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "మొత్తం: %s పోలిక" msgstr[1] "మొత్తం: %s పోలికలు" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" # మొదటి అనువాదము -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "వెతుకు:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Use Tables" msgid "Inside tables:" msgstr "పట్టికల్ని వాడు" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "అన్నీ ఎంచుకోవద్దు" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3698,8 +3718,8 @@ msgid "Search this table" msgstr "ఈ విలువని ఉపయోగించు" # మొదటి అనువాదము -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -3707,8 +3727,8 @@ msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3718,8 +3738,8 @@ msgid "Previous" msgstr "క్రితము" # మొదటి అనువాదము -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3728,8 +3748,8 @@ msgctxt "Next page" msgid "Next" msgstr "తదుపరి" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3741,7 +3761,7 @@ msgstr "ముగింపు" msgid "All" msgstr "అన్నీ" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3750,8 +3770,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3773,10 +3793,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "ఎంపికలు" @@ -3820,111 +3840,111 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "Database %s has been dropped." msgid "The row has been deleted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "మొత్తం" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Use Tables" msgid "Check all" msgstr "పట్టికల్ని వాడు" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "ఏమీలేదు" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3932,101 +3952,101 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "దిగుమతి" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "సంచిక సమాచారం" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -4035,20 +4055,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4058,78 +4078,78 @@ msgstr "" msgid "Action" msgstr "చర్య" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "కీలకపదం" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "వ్యాఖ్య" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "పుట సంఖ్య:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "భాష" @@ -4154,11 +4174,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4178,14 +4198,15 @@ msgid "View" msgstr "చూపుము" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4194,8 +4215,8 @@ msgid "Table" msgstr "పట్టిక" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4204,45 +4225,45 @@ msgid "SQL" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "శోధించు" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4258,16 +4279,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4275,22 +4296,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Table comments" msgid "Central columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -4301,53 +4322,53 @@ msgid "User accounts" msgstr "వాడుకరి" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4422,29 +4443,29 @@ msgstr "పట్టికను సృష్టించు" msgid "Favorites" msgstr "పట్టికను సృష్టించు" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4506,7 +4527,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4565,87 +4586,87 @@ msgid_plural "%d minutes" msgstr[0] "నిమిషం" msgstr[1] "నిమిషం" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show all" msgid "Unknown table status:" msgstr "అన్నీ చూపించు" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Rename database to" msgid "Invalid database:" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Use Tables" msgid "Invalid table name:" msgstr "పట్టికల్ని వాడు" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "More settings" msgid "Failed to rename table %1$s to %2$s!" msgstr "మరిన్ని అమరికలు" # మొదటి అనువాదము -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Page has been created." msgid "Table %1$s has been renamed to %2$s." msgstr "పుటను సృష్టించడమైనది" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Server configuration" msgid "Could not save table UI preferences!" msgstr "సేవకి స్వరూపణం" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4653,19 +4674,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4940,7 +4961,7 @@ msgid "Date and time" msgstr "పుటని సృష్టించు" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4957,72 +4978,72 @@ msgstr "మొత్తం" msgid "Max: %s%s" msgstr "గరిష్ఠం: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" # మొదటి అనువాదము -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Create a page" msgid "Without PHP code" msgstr "పుటని సృష్టించు" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "క్వెరీ ని సమర్పించు" # మొదటి అనువాదము -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create a page" msgid "Create PHP code" msgstr "పుటని సృష్టించు" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add a new User" msgctxt "Inline edit query" @@ -5030,64 +5051,64 @@ msgid "Edit inline" msgstr "క్రొత్త వాడుకరిని చేర్చు" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "ఆది" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" # మొదటి అనువాదము -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ఖాళీ" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5103,7 +5124,7 @@ msgstr "నిమిషానికి" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "గంటకి" @@ -5112,14 +5133,14 @@ msgid "per day" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "శోధించు" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5127,7 +5148,7 @@ msgstr "శోధించు" msgid "Description" msgstr "వివరణ" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "ఈ విలువని ఉపయోగించు" @@ -5168,22 +5189,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "పేరు" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "పొడవు/విలువలు" @@ -5192,7 +5213,7 @@ msgstr "పొడవు/విలువలు" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5217,13 +5238,13 @@ msgid "Select a column." msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" # మొదటి అనువాదము -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add into comments" msgid "Add new column" msgstr "స్పందనలకు చేర్చు" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5231,34 +5252,34 @@ msgstr "స్పందనలకు చేర్చు" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Security" msgid "Server %d" msgstr "భద్రత" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5266,20 +5287,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5837,7 +5858,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5946,13 +5967,13 @@ msgid "Maximum execution time" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add into comments" msgid "Use %s statement" msgstr "స్పందనలకు చేర్చు" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5962,7 +5983,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -6087,7 +6108,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -6102,7 +6123,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -6111,7 +6132,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -6143,7 +6164,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s జతచేయి" @@ -6316,7 +6337,7 @@ msgid "Customize the navigation tree." msgstr "చూపించు" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -7212,7 +7233,7 @@ msgstr "" msgid "Authentication method to use." msgstr "అధీకరణ అమరికలు" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7877,7 +7898,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7885,10 +7906,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8035,25 +8056,25 @@ msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000" msgid "OpenDocument Text" msgstr "ఓపెన్ డాక్యుమెంట్" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been dropped." @@ -8068,12 +8089,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -8082,7 +8103,7 @@ msgid "Original position" msgstr "అసలు స్థానం" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "సమాచారం" @@ -8096,16 +8117,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s డేటాబేసు సృష్టించబడింది." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8113,26 +8134,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s డేటాబేస్ తుడిచివేయడమైనది" msgstr[1] "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "వరుసలు" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "మొత్తం" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -8159,34 +8180,34 @@ msgstr "" msgid "Enable statistics" msgstr "గణాంకాలని చేతనంచేయి" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "data" msgid "No data to display" msgstr "భోగట్టా" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8239,7 +8260,7 @@ msgstr "%s డేటాబేస్ తుడిచివేయడమైనద #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -8258,12 +8279,12 @@ msgstr "మార్చుము" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -8286,13 +8307,13 @@ msgstr "పూర్తిపాఠ్యం" msgid "Distinct values" msgstr "ఈ విలువని ఉపయోగించు" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8312,190 +8333,194 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "సంకేతపదం లేదు" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "సంకేతపదం:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "మళ్ళీ టైపుచెయ్యండి" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "సంకేతపదం:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "ఎగుమతి రకం" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "New name" msgid "New template:" msgstr "కొత్త పేరు" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "పట్టిక పేరు" # మొదటి అనువాదము -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "సృష్టించు" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s పట్టిక" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Update Query" msgid "Update" msgstr "క్వెరీ ని మార్చు" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "అన్నీ ఎంచుకో" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "ఎగుమతి పద్ధతి" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" # మొదటి అనువాదము -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Database" msgid "Databases:" msgstr "డేటాబేస్" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "పట్టికలు" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8503,116 +8528,116 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Table name" msgid "Export databases as separate files" msgstr "పట్టిక పేరు" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export method" msgid "Export tables as separate files" msgstr "ఎగుమతి పద్ధతి" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "అన్నీ ఎంచుకో" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "అన్నీ ఎంచుకో" # మొదటి అనువాదము -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "డేటాబేస్" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New page name: " msgid "New table name" msgstr "కొత్త పుట పేరు: " -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Comments" msgid "Old column name" msgstr "వ్యాఖ్యలు" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Comments" msgid "New column name" msgstr "వ్యాఖ్యలు" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "More settings" msgid "committed on %1$s by %2$s" msgstr "మరిన్ని అమరికలు" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "More settings" msgid "authored on %1$s by %2$s" @@ -9018,88 +9043,88 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "నిర్మాణం మాత్రమే" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9111,88 +9136,89 @@ msgid "Create an index on  %s columns" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "దాచు" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "లేదా" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "మరియు తరువాత" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9203,31 +9229,31 @@ msgstr "" msgid "Value" msgstr "విలువ" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "డేటా మాత్రమే" @@ -9236,14 +9262,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Add a new User" @@ -9300,8 +9326,8 @@ msgid "Views:" msgstr "చూపుము" # మొదటి అనువాదము -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "చూపించు" @@ -9348,17 +9374,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9374,7 +9400,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "సేవకి స్వరూపణం" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9398,7 +9424,7 @@ msgid "Database operations" msgstr "పట్టిక ఎంపికలు" # మొదటి అనువాదము -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show" msgid "Show hidden items" @@ -9502,13 +9528,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete columns" msgid "Select one…" msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Table comments" msgid "No such column" @@ -9764,8 +9790,8 @@ msgid "Rename database to" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9812,184 +9838,184 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "పట్టిక ఎంపికలు" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Use Tables" msgid "Checksum table" msgstr "పట్టికల్ని వాడు" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" # మొదటి అనువాదము -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "విశదీకరించు" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "మూసివేయి" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10016,25 +10042,25 @@ msgstr "రంగుని చూపించు" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%sకి స్వాగతం" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10042,7 +10068,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10071,15 +10097,15 @@ msgstr "వాడుకరి పేరు:" msgid "Server Choice:" msgstr "డేటాబేస్ తొలగించండి" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -10142,7 +10168,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10151,7 +10177,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -10159,8 +10185,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10254,7 +10280,7 @@ msgstr "వ్యాఖ్యలు" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10812,7 +10838,7 @@ msgstr "విషయ సూచిక" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -11158,57 +11184,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "వివరణ లేదు" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11217,305 +11243,305 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "అనుసంధానాలు" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "వాడుకరి పేరు" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "వాడుకరి పేరు" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "సంకేతపదం" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "స్థానిక" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "మళ్ళీ టైపుచెయ్యండి" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Change Password" msgid "Generate password:" msgstr "సంకేతపదాన్ని మార్చు" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "పొరపాటు" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11539,7 +11565,7 @@ msgstr "%s డేటాబేస్ తుడిచివేయడమైనద msgid "Event %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11550,85 +11576,85 @@ msgstr "" msgid "Edit event" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "వివరాలు…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "New name" msgid "Event name" msgstr "కొత్త పేరు" # మొదటి అనువాదము -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "మార్చుము" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "మొదలుపెట్టు" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "ముగింపు" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -11649,7 +11675,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -11663,149 +11689,149 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Page has been created." msgid "Routine %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Routine %1$s has been modified." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "వ్యాఖ్యలు" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "నేరు లంకెలు" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "డేటాబేస్ తొలగించండి" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "పొడవు/విలువలు" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "పట్టిక ఎంపికలు" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "భద్రత" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11832,36 +11858,36 @@ msgstr "పుటను సృష్టించడమైనది" msgid "Edit trigger" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "User name" msgid "Trigger name" msgstr "వాడుకరి పేరు" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "సమయం" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11994,609 +12020,562 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "ఏమీలేవు" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "అనుసంధానాలు" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "అనుసంధానాలు" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add into comments" msgid "Routine" msgstr "స్పందనలకు చేర్చు" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "పరిపాలన" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "Global value" msgid "Global" msgstr "సార్వత్రిక విలువ" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Server configuration" msgid "Native MySQL authentication" msgstr "సేవకి స్వరూపణం" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "సంకేతపదాన్ని మార్చు" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Server configuration" -msgid "Native MySQL Authentication" -msgstr "సేవకి స్వరూపణం" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "వాడుకరి పేరు" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Comments" msgid "Host name" msgstr "వ్యాఖ్యలు" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "అధీకరణ" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "సంకేతపదం:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Table options" msgid "Database for user account" msgstr "పట్టిక ఎంపికలు" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "Database %s has been dropped." msgid "User has been added." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "వాడుకరి కనబడలేదు." # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "ఏదైనను" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Add a new User" msgid "Edit privileges" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… పాతదే ఉంచుము." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Add a new User" msgid "Routine-specific privileges" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Table name" -msgid "Remove selected user accounts" -msgstr "పట్టిక పేరు" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "వాడుకరి" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Add a new User" msgid "Edit privileges:" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "వాడుకరి" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Overview" msgid "User accounts overview" msgstr "అవలోకనం" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12605,7 +12584,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12614,12 +12593,12 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." @@ -12913,12 +12892,12 @@ msgstr "ఆజ్ఞ" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -12945,12 +12924,12 @@ msgstr "నిమిషానికి" msgid "per second:" msgstr "క్షణానికి" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12976,33 +12955,33 @@ msgstr "" msgid "Related links:" msgstr "సంబంధాలు" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13010,78 +12989,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13089,7 +13068,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13097,42 +13076,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13140,33 +13119,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13175,245 +13154,245 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" # మొదటి అనువాదము -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య." # మొదటి అనువాదము -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13421,99 +13400,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13521,18 +13500,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13540,11 +13519,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13583,49 +13562,49 @@ msgid "Table level tabs" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "చూపుము" # మొదటి అనువాదము -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Comments" msgid "Group name:" msgstr "వ్యాఖ్యలు" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Last version" msgid "Server-level tabs" msgstr "చివరి కూర్పు" # మొదటి అనువాదము -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database" msgid "Database-level tabs" msgstr "డేటాబేస్" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13734,7 +13713,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -13824,179 +13803,179 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "చివరి కూర్పు" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "data" msgid "No data" msgstr "భోగట్టా" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "తేదీ" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "వాడుకరిపేరు" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "ఏమీలేదు" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "More settings" msgid "Version %1$s of %2$s was deleted." msgstr "మరిన్ని అమరికలు" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "చివరి కూర్పు" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete" msgid "Delete tracking" msgstr "తొలగించు" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -14006,7 +13985,7 @@ msgstr "" msgid "Manage your settings" msgstr "ప్రాధమిక అమరికలు" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Server configuration" msgid "Configuration has been saved." @@ -14034,7 +14013,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14042,82 +14021,82 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Server configuration" msgid "Could not import configuration" msgstr "సేవకి స్వరూపణం" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "సేవకి స్వరూపణం" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14125,46 +14104,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" # మొదటి అనువాదము -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "దించుకొనుము" @@ -14172,102 +14151,101 @@ msgstr "దించుకొనుము" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Server configuration" msgid "Configuration saved." msgstr "సేవకి స్వరూపణం" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Server configuration" msgid "Configuration not saved!" msgstr "సేవకి స్వరూపణం" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "అవలోకనం" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "అప్రమేయ భాష" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "వాడుకరిని ఎంచుకోనివ్వు" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ఏమీలేదు -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" # మొదటి అనువాదము -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "వాక్యాంతము" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14303,28 +14281,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14339,12 +14317,12 @@ msgstr "భోగట్టా" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s అనే పట్టిక ఇప్పటికే ఉంది!" @@ -14357,35 +14335,35 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "Table name" msgid "No row selected." msgstr "పట్టిక పేరు" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "Table name" msgid "No versions selected." msgstr "పట్టిక పేరు" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14591,7 +14569,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Version information" msgid "Browser display transformation" @@ -14613,7 +14591,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Information" msgid "Input transformation" @@ -15141,17 +15119,17 @@ msgid "Size" msgstr "పరిమాణం" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "సృష్టి" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "చివరి మార్పు" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "చివరి చూపు" @@ -15186,6 +15164,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete" +msgid "Delete settings " +msgstr "తొలగించు" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -15202,10 +15186,45 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "ఏమీలేవు" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Table name" +msgid "Remove selected user accounts" +msgstr "పట్టిక పేరు" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15242,7 +15261,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disable Statistics" msgid "disabled" @@ -15429,7 +15448,7 @@ msgstr "వాడుకరి" msgid "Comment:" msgstr "వ్యాఖ్య" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15465,28 +15484,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add a New User" msgid "+ Add constraint" msgstr "కొత్త వాడుకరిని చేర్చు" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "అంతర్గత సంబంధాలు" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "అంతర్గత సంబంధం" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "data" msgid "Choose column to display:" @@ -15551,11 +15570,11 @@ msgstr "అసలు స్థానం" msgid "Replaced string" msgstr "సంబంధాలు" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -15640,7 +15659,7 @@ msgid "at beginning of table" msgstr "పట్టికను సృష్టించు" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15668,30 +15687,30 @@ msgstr "అసలు స్థానం" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Relations" msgid "Partition table" msgstr "సంబంధాలు" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add a new User" msgid "Edit partitioning" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Add a new User" msgid "Edit view" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -15725,33 +15744,33 @@ msgstr "డేటాబేస్" msgid "Track view" msgstr "సృష్టించు" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "వరుసల గణాంకాలు" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15764,51 +15783,51 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "మరిన్ని అలంకారాలను పొందండి!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Version information" msgid "Available browser display transformations" msgstr "సంచిక సమాచారం" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Version information" msgid "Available input transformations" msgstr "సంచిక సమాచారం" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "వివరణ" # మొదటి అనువాదము -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "మార్చుము" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -15881,7 +15900,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15906,19 +15925,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "Table name" msgid "An alias was expected." msgstr "పట్టిక పేరు" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15977,29 +15996,29 @@ msgid "Expected delimiter." msgstr "" # మొదటి అనువాదము -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Page has been created." msgid "Ending quote %1$s was expected." msgstr "పుటను సృష్టించడమైనది" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" # మొదటి అనువాదము -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgctxt "short form" #| msgid "Create table" msgid "Unexpected beginning of statement." msgstr "పట్టికను సృష్టించు" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16016,10 +16035,18 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +# మొదటి అనువాదము +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgctxt "short form" +#| msgid "Create table" +msgid "Unexpected ordering of clauses." +msgstr "పట్టికను సృష్టించు" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16062,7 +16089,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17201,6 +17228,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server configuration" +#~ msgid "Native MySQL Authentication" +#~ msgstr "సేవకి స్వరూపణం" + #~ msgid "Wiki" #~ msgstr "వికీ" diff --git a/po/th.po b/po/th.po index 7aa67a2d3d..a06b07de54 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-07-07 16:12+0000\n" "Last-Translator: Phongphan A Bunlom \n" "Language-Team: Thai Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "สนับสนุน" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "เพิ่มคีย์หลัก" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "รายงานผลการติดตาม" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2055,553 +2060,553 @@ msgstr "" msgid "End of step" msgstr "ท้ายบรรทัด" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "จบ" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ไม่มีฐานข้อมูลที่ถูกเลือก" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ไม่มีฐานข้อมูลที่ถูกเลือก" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "บันทึก" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "ซ่อนหลักในการค้นหา" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ค้นหา" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "ชื่อคอลัมน์" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "ชื่อคอลัมน์" -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "ตารางสูงสุด" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "ตารางสูงสุด" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "ซ่อนหลักในการค้นหา" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "แต่ละจุดแสดงข้อมูลระเบียน" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "นำตัวชี้วางเพื่อแสดงคำกำกับ" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "เมื่อต้องการย่อ/ขยาย ให้เลือกส่วนของจุดโดยใช้เมาส์" -#: js/messages.php:494 +#: js/messages.php:495 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "คลิก ล้างค่า เพื่อกลับไปขนาดเริ่มต้น" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "คลิก จุดข้อมูล เพื่อดูหรือแก้ไขแถวข้อมูล" -#: js/messages.php:498 +#: js/messages.php:499 #, fuzzy msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "จุดสามารถปรับขนาดได้ โดยการลากไปมุมขวาด้านล่าง" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "เพิ่มสองสดมภ์" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "เลือกสองสดมภ์ใดๆ" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "สารบัญ" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "คัดลอก" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "จุด" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "แถวข้อความ" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "เรขาคณิต" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ด้านใน" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "ด้านนอก" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "เลือกคีย์อ้างอิง" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "เลือกคีย์นอก" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "กรุณาเลือกคีย์หลักหรือคียเดี่ยว" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:550 +#: js/messages.php:551 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 "คุณยังไม่ได้บันทึกเลย์เอาท์ที่คุณเลือก ที่ทำไว้จะหายไป ต้องการบันทึกหรือไม่?" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "หมายเลขหน้า:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "เลือกทั้งหมด" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "เลือกทั้งหมด" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "เปิด" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "เลือกทั้งหมด" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "หน่วย" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "เลือกหน้าที่ต้องการแก้ไข" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "เพิ่มตัวเลือกสำหรับคอลัมน์ " -#: js/messages.php:569 +#: js/messages.php:570 #, fuzzy, php-format #| msgid "%d object(s) created" msgid "%d object(s) created." msgstr "สร้างวัตถุจำนวน %d เรียบร้อยแล้ว" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "ส่ง" -#: js/messages.php:573 +#: js/messages.php:574 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "กด escape เพื่อยกเลิกการแก้ไข" -#: js/messages.php:575 +#: js/messages.php:576 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 "คุณได้ทำการแก้ไขข้อมูลบางอย่าง แต่ยังไม่ได้บันทึก คุณแน่ใจว่าจะออกจากหน้านี้โดยยังไม่บันทึก?" -#: js/messages.php:578 +#: js/messages.php:579 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "ลากเพื่อเปลี่ยนลำดับ" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "กดเพื่อมาร์ก หรือยกเลิกการมาร์ก" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ดับเบิลคลิกเพื่อคัดลอกชื่อคอลัมน์" -#: js/messages.php:588 +#: js/messages.php:589 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "กดเพื่อเลือก
เพื่อดูสดมภ์" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "แสดงทั้งหมด" -#: js/messages.php:592 +#: js/messages.php:593 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 "" "ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "ตำแหน่งเริ่มแรก" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ยกเลิก" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "ยกเลิก" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "นำเข้าไฟล์" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "เลือกตาราง" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "พิมพ์" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by double-clicking directly on them." msgstr "คุณสามารถแก้ไขสดมภ์
โดยเลือกไปที่ข้อมูลนั้นๆ" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by clicking directly on them." msgstr "คุณสามารถแก้ไขสดมภ์
โดยเลือกไปที่ข้อมูลนั้นๆ" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ไปที่หน้า" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "คัดลอกชื่อคอลัมน์" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy msgid "Right-click the column name to copy it to your clipboard." msgstr "คลิกขวาที่ชื่อคอลัมน์เพื่อคัดลอกข้อมูล" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "สร้างรหัสผ่าน" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "สร้าง" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "เพิ่มเติม" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "แสดงแผง" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ซ่อนแผง" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Reload navigation frame" msgid "Show hidden navigation tree items." msgstr "โหลดกรอบนำทางใหม่" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "ไม่พบหน้าดังกล่าวในประวัติการเรียกดู อาจเป็นเพราะหน้านั้นไม่มีหรือหมดอายุที่จะแสดงได้แล้ว" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2609,122 +2614,122 @@ msgid "" msgstr "phpMyAdmin มีรุ่นใหม่แล้ว กรุณาพิจารณาอัพเกรดเป็นรุ่นใหม่ %s โดยออกเมื่อ %s" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", รุ่นเสถียรล่าสุด:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "ล่าสุด" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "สร้างมุมมอง" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "เปลี่ยนการตั้งค่า" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy msgid "Show report details" msgstr "แสดงตาราง" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "ข้าม" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "แสดงคำค้นนี้อีกที" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "หมายเหตุของตาราง" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "ซ่อนผลคำสั่ง SQL" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2733,385 +2738,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "คัดลอกฐานข้อมูลเป็น" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "แทนที่คำนำไปยังตาราง" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "คัดลอกคำนำไปยังตาราง" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "ก่อนหน้า" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "วันนี้" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "มกราคม" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "กุมภาพันธ์" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "มีนาคม" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "เมษายน" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "พฤษภาคม" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "มิถุนายน" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "กรกฎาคม" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "สิงหาคม" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "กันยายน" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "ตุลาคม" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "พฤศจิกายน" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "ธันวาคม" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "อาทิตย์" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "วันจันทร์" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "วันอังคาร" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "วันพุธ" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "วันศุกร์" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "วันเสาร์" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "สัปดาห์" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "ปฎิทินแบบ เดือน/ปี" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "ไม่มี" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "ชั่วโมง" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "นาที" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "วินาที" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "ผิดพลาด" @@ -3174,20 +3199,20 @@ msgid "Charset" msgstr "ชุดตัวอักษร" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "การตรวจทาน" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "ข้อมูลไบนารี" @@ -3385,7 +3410,7 @@ msgid "Czech-Slovak" msgstr "เช็ค-สโลวัก" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "ไม่ระบุ" @@ -3437,56 +3462,56 @@ msgstr "" msgid "Font size" msgstr "ขนาดตัวอักษร" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "ค้นหา" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "คำค้น SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Add new field" msgid "Missing connection parameters!" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3594,73 +3619,73 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "คำค้นบนฐานข้อมูล %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "ประมวลผลคำค้น" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "ค้นหา" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "ค้นหา" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "ค้นหา" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "แสดงบุ๊คมาร์ค" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "ค้นหา" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "อย่างน้อยหนึ่งคำ" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "ทุกคำ" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "เหมือนทั้งวลี" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "รูปแบบคำพ้อง (regular expression)" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ผลการค้นหา \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "รวม: %s ผลลัพธ์ที่ตรง" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3668,48 +3693,43 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "เปิดดู" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "ค้น:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "ภายในตาราง:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "ไม่เลือกเลย" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "ในคอลัมน์:" @@ -3735,14 +3755,14 @@ msgstr "ตัวกรอง" msgid "Search this table" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "เริ่มต้น" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3751,16 +3771,16 @@ msgctxt "Previous page" msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "ถัดไป" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "สุดท้าย" @@ -3769,7 +3789,7 @@ msgstr "สุดท้าย" msgid "All" msgstr "ทั้งหมด" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" @@ -3780,8 +3800,8 @@ msgstr "ระเบียนต่อหน้า" msgid "Sort by key" msgstr "เรียงโดยคีย์" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3803,10 +3823,10 @@ msgstr "เรียงโดยคีย์" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "ตัวเลือก" @@ -3854,117 +3874,117 @@ msgstr "ข้อความที่รู้จักกันดี" msgid "Well Known Binary" msgstr "ไบนารีที่รู้จักกันดี" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "ลบเรียบร้อยแล้ว" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "มีข้อผิดพลาดระหว่างการอัพโหลด กรุณาดู [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "การแสดงผลนี้ จะแสดงเพียงจำนวนข้อมูลนี้เท่านั้น ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "แสดงแถว" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ทั้งหมด" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "เลือกทั้งหมด" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "การดำเนินงานผลแบบสอบถาม" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "แสดงภาพของข้อมูล GIS" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "ไม่พบลิงก์" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "ไม่มี" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3972,77 +3992,77 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "มีข้อความผิดพลาดจำนวนมาก บางส่วนจึงซ่อนไว้ไม่แสดง" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "นำเข้า" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatically create versions" msgid "Automatically send report next time" msgstr "สร้างเวอร์ชั่นโดยอัตโนมัติ" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "ไฟล์ไม่ได้ถูกอัพโหลด" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "ไฟล์ที่อัพโหลดขนาดเกินที่กำหนด" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "จำนวนไฟล์ที่อัพโหลดเกินจำนวนสูงสุดที่กำหนด" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "ไฟล์ที่ถูกอัพโหลดมาไม่ครบ" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "ไม่พบแฟ้มชั่วคราว" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "ไม่สามารถเขียนไฟล์ลงดิสได้" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "ไม่รองรับไฟล์ประเภทนี้" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "ไม่ทราบข้อผิดพลาดของไฟล์ที่จะอัพโหลด" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "อ่านไฟล์ไม่ได้!" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "มีข้อผิดพลาดระหว่างการอัพโหลด กรุณาดู [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "ข้อผิดพลาดขณะเคลื่อนย้ายไฟล์อัพโหลด" -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "ไม่สามารถอ่านไฟล์อัพโหลด" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4051,30 +4071,30 @@ msgstr "" "คุณพยายามที่จะโหลดไฟล์ที่ไม่สนับสนุนระบบการบีบอัดไฟล์ข้อมูล (%s) กรุณากำหนดค่าอย่างไรอย่างหนึ่ง " "หรือปิดการตั้งค่าของคุณ" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "ข้อมูลเวอร์ชั่น" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "เปิดหน้าต่างนี้ในแท็บใหม่" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "แสดง" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "คลิกที่แถบเพื่อเลื่อนไปยังบนสุดของหน้า" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4085,20 +4105,20 @@ msgid "No index defined!" msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "ดัชนี" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4108,78 +4128,78 @@ msgstr "ดัชนี" msgid "Action" msgstr "กระทำการ" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "ชื่อคีย์" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "กลุ่ม" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "เอกเทศ" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "หมายเหตุ" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "โยนคีย์หลักทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "โยนทิ้ง" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอันเดียวกัน ควรจะลบออกไปอันหนึ่ง" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "หมายเลขหน้า:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "ภาษา" @@ -4203,11 +4223,11 @@ msgstr "เซิร์ฟเวอร์" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4226,14 +4246,15 @@ msgid "View" msgstr "ตารางจำลอง (View)" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4242,8 +4263,8 @@ msgid "Table" msgstr "ตาราง" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4251,45 +4272,45 @@ msgstr "ตาราง" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "ค้นหา" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "แทรก" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "สิทธิ" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "กระบวนการ" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "การติดตาม" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4305,16 +4326,16 @@ msgstr "ทริกเกอร์" msgid "Database seems to be empty!" msgstr "ดูเหมือนว่าฐานข้อมูลจะว่างเปล่า!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4322,22 +4343,22 @@ msgstr "" msgid "Events" msgstr "เหตุการณ์" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "ผู้ออกแบบ" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "ฐานข้อมูล" @@ -4348,52 +4369,52 @@ msgid "User accounts" msgstr "ผู้ใช้" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "การจำลองแบบ" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "ตัวแปร" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "ชุดอักขระ" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "เครื่องมือ" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "ปลั๊กอิน" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d ระเบียนได้รับผล" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d ระเบียนถูกลบ" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4456,29 +4477,29 @@ msgstr "ตัวแปร" msgid "Favorites" msgstr "ตัวแปร" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Error while loading the search." @@ -4546,7 +4567,7 @@ msgstr "แสดงตาราง" msgid "Show slave hosts" msgstr "แสดงโฮสต์ทาส" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "แสดงสถานะมาสเตอร์" @@ -4602,79 +4623,79 @@ msgid_plural "%d minutes" msgstr[0] "ใช้อยู่" msgstr[1] "ใช้อยู่" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "ไม่มีข้อมูลเกี่ยวกับรูปแบบฐานข้อมูลนี้" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s มีอยู่บน MySQL Server" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ถูกปิดบน MySQL Server" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "MySQL ไม่รองรับ %s" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" msgstr "ไม่ทราบสถานะตาราง: " -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "ชื่อฐานข้อมูลไม่ถูกต้อง" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "ชื่อตารางไม่ถูกต้อง" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "ไม่สามารถบันทึกการกำหนดลักษณะตาราง UI" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4683,7 +4704,7 @@ msgstr "" "มีปัญหาในการล้างข้อมูลการตั้งค่าตาราง UL (ดูได้ที่ $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, fuzzy, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4693,19 +4714,19 @@ msgstr "" "ไม่สามารถบันทึกคุณสมบัติ UI \"% s\" ได้ การเปลี่ยนแปลงจะมีผล หลังจากคุณรีเฟรชหน้านี้ " "โปรดตรวจสอบหากมีการเปลี่ยนโครงสร้างของตาราง" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "ชื่อของไพรมารีคีย์ จะต้องเป็น PRIMARY เท่านั้น" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "เปลี่ยนชื่อดัชนีเป็น PRIMARY ไม่ได้!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "ไม่ได้กำหนดส่วนใดๆ ของดัชนี!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4985,7 +5006,7 @@ msgid "Date and time" msgstr "สร้างดัชนีใหม่" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Linestring" msgctxt "string types" @@ -5004,72 +5025,72 @@ msgstr "รวม" msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "ข้อมูลคงที่" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "อธิบาย SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ประมวลผลคำค้น" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "สร้างโค้ด PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "เรียกใหม่" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "การทำแฟ้มประวัติ" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5077,68 +5098,68 @@ msgid "Edit inline" msgstr "เพิ่มฟิลด์ใหม่" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "อา." #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "กระโดดไปที่ฐานข้อมูล \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "เรียกดูคอมพิวเตอร์ของคุณ:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "ไม่มีไฟล์ที่จะอัพโหลด" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ลบข้อมูล" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "ดำเนินการ" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "ผู้ใช้" @@ -5152,7 +5173,7 @@ msgstr "ต่อนาที" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "ต่อชั่วโมง" @@ -5160,14 +5181,14 @@ msgstr "ต่อชั่วโมง" msgid "per day" msgstr "ต่อวัน" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "ค้นหา" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5175,7 +5196,7 @@ msgstr "ค้นหา" msgid "Description" msgstr "คำอธิบาย" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "ใช้ค่านี้" @@ -5216,22 +5237,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "ชื่อ" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "ความยาว/เซต*" @@ -5242,7 +5263,7 @@ msgstr "ความยาว/เซต*" msgid "Attribute" msgstr "แอตทริบิวต์" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5264,12 +5285,12 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Select a column." msgstr "เพิ่มสองสดมภ์" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy msgid "Add new column" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5277,7 +5298,7 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Attributes" msgstr "แอตทริบิวต์" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5286,27 +5307,27 @@ msgstr "" "คุณได้เปิดใช้งาน mbstring.func_overload ในการกำหนดค่าของ PHP ตัวเลือกนี้ไม่เข้ากันกับ " "phpMyAdmin และอาจทำให้ข้อมูลบางอย่างจะเสียหายได้" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "ลำดับเซิฟเวอร์ไม่ถูกต้อง: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Hostname ไม่ถูกต้องสำหรับเซิฟเวอร์ %1$s กรุณาตรวจสอบการตั้งค่าของคุณ" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "เซิร์ฟเวอร์" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5314,20 +5335,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "เกิดข้อผิดพลาด: โทเค็นไม่ตรงกัน" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "ใช้ประโยชน์ได้" @@ -5910,7 +5931,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "กำหนดค่าไฟล์" @@ -6023,13 +6044,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "คำสั่ง" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "บันทึกเป็นไฟล์" @@ -6039,7 +6060,7 @@ msgstr "ชุดอักขระของไฟล์" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "รูปแบบ" @@ -6183,7 +6204,7 @@ msgid "Save on server" msgstr "บันทึกบนเซิร์ฟเวอร์" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "เขียนทับแฟ้มที่มีอยู่แล้ว" @@ -6199,7 +6220,7 @@ msgid "Remember file name template" msgstr "รูปแบบของชื่อไฟล์" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" @@ -6210,7 +6231,7 @@ msgid "Enclose table and column names with backquotes" msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "โหมดที่เข้ากันได้กับ SQL" @@ -6243,7 +6264,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "เพิ่ม %s" @@ -6432,7 +6453,7 @@ msgid "Customize the navigation tree." msgstr "ปรับแต่งแผงนำทาง" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "เซิร์ฟเวอร์" @@ -7352,7 +7373,7 @@ msgstr "รหัสประจำตัวของ HTTP" msgid "Authentication method to use." msgstr "วิธีการรับรองความถูกต้องที่ใช้" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "ประเภทของการรับรองความถูกต้อง" @@ -8046,7 +8067,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8056,10 +8077,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "เปิดใช้งานตรวจหาเวอร์ชั่นล่าสุดบนหน้า phpMyAdmin หลัก" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "ตรวจสอบเวอร์ชั่น" @@ -8211,25 +8232,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "เอกสารอ้างอิง" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8244,13 +8265,13 @@ msgid "Position" msgstr "ตำแหน่ง" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 #, fuzzy msgid "Event type" msgstr "ชนิดคำค้น" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 #, fuzzy msgid "Server ID" msgstr "เซิร์ฟเวอร์" @@ -8260,7 +8281,7 @@ msgid "Original position" msgstr "ตำแหน่งเริ่มแรก" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "ข้อมูล" @@ -8274,42 +8295,42 @@ msgstr "ตัดทอนคำค้นที่แสดง" msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "ไม่มีฐานข้อมูล" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบร้อยแล้ว" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ฐานข้อมูลได้ถูกทิ้งไปเรียบร้อยแล้ว." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "แถว" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "รวม" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "เกินความจำเป็น" @@ -8338,35 +8359,35 @@ msgstr "" msgid "Enable statistics" msgstr "ให้มีการเก็บสถิติ" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "ตัวแปรของเซิร์ฟเวอร์และการตั้งค่า" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No data found" msgid "No data to display" msgstr "ไม่มีข้อมูล" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." @@ -8421,7 +8442,7 @@ msgstr "ลบผู้ใช้ที่เลือกไว้เรียบ #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8440,12 +8461,12 @@ msgstr "เปลี่ยน" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "ดัชนี" @@ -8468,13 +8489,13 @@ msgstr "ข้อความเต็ม (fulltext)" msgid "Distinct values" msgstr "ค่าเซสชั่น" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "ส่วนขยาย %s ขาดหายไป กรุณาตรวจสอบการกำหนดค่าของ PHP" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -8496,196 +8517,200 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "รหัสผ่าน:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "พิมพ์ใหม่" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "รหัสผ่าน:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "การส่งออกฐานข้อมูลจากเซิร์ฟเวอร์ปัจจุบัน" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "สร้างตารางในฐานข้อมูลนี้ %s" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "สร้างตารางในฐานข้อมูลนี้ %s" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "ไม่มีตาราง" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "ชื่อตาราง" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "สร้าง" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s ตาราง" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgctxt "Create UPDATE query" #| msgid "Update" msgid "Update" msgstr "ปรับปรุงคำค้น" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "เลือกตาราง" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "วิธีการส่งออก" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "รวดเร็ว - แสดงเฉพาะตัวเลือกที่น้อยที่สุด" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "กำหนดเอง - แสดงตัวเลือกที่เป็นไปได้ทั้งหมด" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "ฐานข้อมูล" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "ตาราง" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "รูปแบบ:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "ตัวเลือกรูปแบบเฉพาะ:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "แถว" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format msgid "Save on server in the directory %s" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8693,124 +8718,124 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "ชุดอักขระของไฟล์:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "บีบอัดข้อมูล" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"ถูกบีบอัดอยู่ (zip)\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "ส่งมาเป็นไฟล์" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "สร้างตารางในฐานข้อมูลนี้ %s" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "แนวนอน (หมุนหัวเรื่อง)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "ส่งมาเป็นไฟล์" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "เลือกตาราง" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "เลือกตาราง" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "ฐานข้อมูล" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "ไม่มีตาราง" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Copy column name" msgid "Old column name" msgstr "คัดลอกชื่อคอลัมน์" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Copy column name" msgid "New column name" msgstr "คัดลอกชื่อคอลัมน์" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "มีข้อผูกพันบน %1$s โดย %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "สร้างบน %1$s โดย %2$s" @@ -9215,87 +9240,87 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "พื้นที่ไม่เพียงพอที่จะบันทึกไฟล์ %s" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "ให้เปลี่ยนชื่อไฟล์ หรือเลือกแบบเขียนทับไฟล์เดิม เพราะมีไฟล์ %s อยู่ในเซิร์ฟเวอร์อยู่แล้ว" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "บันทึกไฟล์ %s ไม่ได้ เพราะเว็บเซิร์ฟเวอร์ไม่อนุญาต" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "ข้อมูลที่ส่งออกถูกบันทึกไว้ในไฟล์ %s" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "เฉพาะโครงสร้าง" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9307,91 +9332,92 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "สร้างดัชนีโดยคอลัมน์ %s" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "ฟังก์ชั่น" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "เนื่องจากความยาวของมัน
ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "ข้อมูลไบนารี - ห้ามแก้ไข" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "หรือ" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "แทรก" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9402,31 +9428,31 @@ msgstr "" msgid "Value" msgstr "ค่า" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "เฉพาะข้อมูล" @@ -9437,14 +9463,14 @@ msgid "Add AUTO INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "เพิ่ม constraints" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9505,8 +9531,8 @@ msgstr "โพรเซส" msgid "Views:" msgstr "ตารางจำลอง (View)" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "แสดง" @@ -9552,19 +9578,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "บันทึกเป็นไฟล์" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9580,7 +9606,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9600,7 +9626,7 @@ msgstr "" msgid "Database operations" msgstr "สถิติฐานข้อมูล" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show hint" msgid "Show hidden items" @@ -9704,13 +9730,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Select two columns" msgid "Select one…" msgstr "เพิ่มสองสดมภ์" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -9964,8 +9990,8 @@ msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10013,83 +10039,83 @@ msgstr "(เดี่ยว)" msgid "Move table to (database.table)" msgstr "ย้ายตารางไป (database.table)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "ตัวเลือกตาราง" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "เครื่องมือที่เก็บข้อมูล" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "ตรวจสอบตาราง" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "จัดระเบียบตาราง" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ล้างตาราง (flush)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10097,105 +10123,105 @@ msgstr "ซ่อมแซมตาราง" msgid "Delete data or table" msgstr "dump ตาราง" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "ลบข้อมูลตาราง (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "ไม่มีฐานข้อมูล" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "วิเคราะห์" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "ตรวจสอบ" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "ซ่อมแซม" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "ปิด" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "ย้ายตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "คัดลอกตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10224,18 +10250,18 @@ msgstr "แสดงสี" msgid "Only show keys" msgstr "แสดงคีย์เท่านั้น" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "ไม่สามารถเชื่อมต่อ: ตั้งค่าไม่ถูกต้อง" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s ยินดีต้อนรับ" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10244,7 +10270,7 @@ msgstr "" "คุณคงไม่ได้สร้างแฟ้มการกำหนดค่า คุณอาจต้องการใช้ %1$ssetup script%2$s " "เพื่อสร้างอย่างใดอย่างหนึ่ง" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10255,7 +10281,7 @@ msgstr "" "คุณควรตรวจสอบโฮสต์ ชื่อผู้ใช้และรหัสผ่านในการกำหนดค่าของคุณ และให้แน่ใจว่าค่าต่างๆ " "สอดคล้องกับข้อมูลที่กำหนดไว้ โดยผู้ดูแลระบบของเซิร์ฟเวอร์ MySQL แล้ว" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10282,15 +10308,15 @@ msgstr "ชื่อผู้ใช้:" msgid "Server Choice:" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10364,7 +10390,7 @@ msgstr "สถิติฐานข้อมูล" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "dump ตาราง" @@ -10373,7 +10399,7 @@ msgstr "dump ตาราง" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "เหตุการณ์" @@ -10381,8 +10407,8 @@ msgstr "เหตุการณ์" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10487,7 +10513,7 @@ msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11049,7 +11075,7 @@ msgstr "สารบัญ" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "เพิ่มเติม" @@ -11411,57 +11437,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "ไม่มีรายละเอียด" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "การจำลองแบบมาสเตอร์" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11470,100 +11496,100 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "กรุณาเลือกฐานข้อมูล:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "การจำลองแบบสเลฟ" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "การเชื่อมต่อที่ไม่ปลอดภัย" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "เริ่มต้นแบบเต็ม" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "เฉพาะโครงสร้าง" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "เฉพาะโครงสร้าง" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11572,24 +11598,24 @@ msgstr "" "เซิร์ฟเวอร์นี้ไม่ได้กำหนดค่าให้เป็นสเลฟในกระบวนการการจำลองแบบ คุณต้องการที่จะ กำหนดค่า หรือไม่?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11598,197 +11624,197 @@ msgstr "" "เซิร์ฟเวอร์นี้ไม่ได้กำหนดค่าให้เป็นมาสเตอร์ในกระบวนการการจำลองแบบ คุณต้องการที่จะ กำหนดค่า หรือไม่?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "ชื่อผู้ใช้" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "ชื่อผู้ใช้" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "รหัสผ่าน" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "เรียง" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "ตัวแปร" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "โฮสต์" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "โลคอล" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "ผู้ใช้ใดๆ" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "อีกครั้ง" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "สร้างรหัสผ่าน" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication started successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "การจำลองแบบมาสเตอร์" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "การจำลองแบบมาสเตอร์" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication resetting successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "การจำลองแบบมาสเตอร์" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "ผิดพลาด" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "ข้อผิดพลาดที่ไม่รู้จัก" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11810,7 +11836,7 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Event %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11820,84 +11846,84 @@ msgstr "" msgid "Edit event" msgstr "ถูกส่ง" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy msgid "Event name" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "เปลี่ยน" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "สถานะ" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "ท้ายสุด" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "คำสั่ง INSERT เต็มรูปแบบ" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide an event name!" msgstr "คุณจะต้องให้ชื่อปกติ" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -11920,7 +11946,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -11934,149 +11960,149 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "ชื่อคอลัมน์" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "พารามิเตอร์" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "สร้างเมื่อ" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "เอาฐานข้อมูลออก" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "ประเภทการส่งกลับ" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "ความยาว/เซต*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ตัวเลือกตาราง" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "คือการกำหนด" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "เข้าถึงข้อมูล SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "คุณจะต้องให้ชื่อปกติ" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "ดำเนินงานตามปกติ" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "พารามิเตอร์ตามปกติ" @@ -12100,44 +12126,44 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Edit trigger" msgstr "เพิ่มผู้ใช้ใหม่" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "ชื่อผู้ใช้" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "เวลา" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a trigger name!" msgstr "คุณจะต้องให้ชื่อปกติ" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger!" msgstr "คุณจะต้องให้ชื่อปกติ" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid event for the trigger!" msgstr "คุณจะต้องให้ชื่อปกติ" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid table name!" msgstr "คุณจะต้องให้ชื่อปกติ" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12273,628 +12299,581 @@ msgstr "ชุดอักขระและการตรวจทาน" msgid "Databases statistics" msgstr "สถิติฐานข้อมูล" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "ไม่มี" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Force SSL connection" msgid "Does not require SSL-encrypted connections." msgstr "การเชื่อมต่อ SSL" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Force SSL connection" msgid "Requires SSL-encrypted connections." msgstr "การเชื่อมต่อ SSL" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "ขีดจำกัดของทรัพยากร" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" msgid "Routine" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy msgid "Allows executing this routine." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "การดูแลระบบ" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "โกลบอล" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "การรับรองความถูกต้องของคุกกี้" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "การรับรองความถูกต้องของการเข้าสู่ระบบ" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "การรับรองความถูกต้องของคุกกี้" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "ชื่อผู้ใช้" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "ชื่อคอลัมน์" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "รับรองความถูกต้อง" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "รหัสผ่าน:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "เพิ่มผู้ใช้" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy msgid "Database for user account" msgstr "สถิติฐานข้อมูล" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "มอบสิทธิ" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "ใดๆ" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "โกลบอล" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "ไวล์การ์ด" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "เพิกถอน" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "แก้ไข เครื่องแม่ข่าย" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… เก็บของเก่าไว้." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "ถอนผู้ใช้ที่เลือก" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "สิทธิ" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "ผู้ใช้" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "Users" msgid "User account" msgstr "ผู้ใช้" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12903,7 +12882,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12912,11 +12891,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" @@ -13211,12 +13190,12 @@ msgstr "คำสั่ง" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "ตัวกรอง" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy msgid "Show only active" msgstr "แสดงตาราง" @@ -13244,12 +13223,12 @@ msgstr "ต่อนาที" msgid "per second:" msgstr "ต่อวินาที" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "คำสั่ง" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13277,34 +13256,34 @@ msgstr "แสดงตาราง" msgid "Related links:" msgstr "รีเลชัน" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13312,78 +13291,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13391,7 +13370,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13399,42 +13378,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13442,33 +13421,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13477,242 +13456,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13720,99 +13699,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13820,18 +13799,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13839,13 +13818,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "หยุดการติดตามแล้ว" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13882,48 +13861,48 @@ msgstr "เซิร์ฟเวอร์ฐานข้อมูล" msgid "Table level tabs" msgstr "หมายเหตุของตาราง" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy msgid "View users" msgstr "เพิ่มผู้ใช้" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "เพิ่มผู้ใช้" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "ไม่มีสิทธิใดๆ." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "ชื่อคอลัมน์" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "เซิร์ฟเวอร์ฐานข้อมูล" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14045,7 +14024,7 @@ msgstr "ประมวลผลคำค้นบนฐานข้อมูล msgid "Run SQL query/queries on table %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "ล้าง" @@ -14136,182 +14115,182 @@ msgstr "" msgid "Version" msgstr "เวอร์ชั่น" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "ถูกสร้าง" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "สร้างเวอร์ชั่น" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "รายงานผลการติดตาม" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "เก็บโครงสร้างไว้" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "ใช้งานได้" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "ใช้งานไม่ได้" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "ลบการติดตามตารางนี้" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "ไม่มีข้อมูล" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "วันที่" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "ไม่มี" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "สร้างเวอร์ชั่น %1$s ของ %2$s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "เลิกติดตามตาราง" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "ติดตามตาราง" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "ตารางที่ถูกติดตาม" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "เวอร์ชั่นล่าสุด" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "กำลังลบข้อมูลติดตามตาราง" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "รุ่น" @@ -14319,7 +14298,7 @@ msgstr "รุ่น" msgid "Manage your settings" msgstr "จัดการการตั้งค่าของคุณ" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14345,7 +14324,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14353,57 +14332,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "เอกสารประกอบของ phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "นำเข้าจากไฟล์" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "นำเข้าจากที่เก็บข้อมูลของเบราเซอร์" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "คุณไม่มีการตั้งค่าที่บันทึกไว้!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "ผสานเข้ากับการกำหนดค่าปัจจุบัน" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14412,25 +14391,25 @@ msgstr "" "คุณสามารถกำหนดการตั้งค่าเพิ่มเติมได้โดยแก้ไข config.inc.php เช่น โดยการใช้ %sSetup " "script%s" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "บันทึกเป็นไฟล์" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "บันทึกไปยังที่เก็บข้อมูลของเบราเซอร์" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "การตั้งค่าจะถูกบันทึกไว้ในที่เก็บข้อมูลของเบราเซอร์ภายในเครื่องของคุณ" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "ถ้ามีการตั้งค่าอยู่แล้วจะถูกเขียนทับ!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "คุณสามารถรีเซ็ตการตั้งค่าทั้งหมดของคุณและเรียกคืนเป็นค่าเริ่มต้น" @@ -14439,45 +14418,45 @@ msgstr "คุณสามารถรีเซ็ตการตั้งค่ msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "ไม่มีสิทธิ" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "ดาวน์โหลด" @@ -14485,11 +14464,11 @@ msgstr "ดาวน์โหลด" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "ไม่สามารถโหลดหรือบันทึกการกำหนดค่า" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14499,90 +14478,89 @@ msgstr "" "phpMyAdmin ระดับสูงที่กล่าวไว้ใน [doc@setup_script]documentation[/doc] " "มิฉะนั้นคุณจะมีเพียงแต่ที่จะดาวน์โหลดหรือแสดงมันเท่านั้น" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "การเชื่อมต่อที่ไม่ปลอดภัย" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "ภาพรวม" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "แสดงข้อความที่ซ่อน (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "ไม่มีการกำหนดค่าเซิร์ฟเวอร์" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "เซิร์ฟเวอร์ใหม่" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "ภาษาเริ่มต้น" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- ไม่มี -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "เซิร์ฟเวอร์เริ่มต้น" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "ท้ายบรรทัด" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "แสดง" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "โหลด" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "หน้าเว็บ phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "บริจาค" @@ -14619,28 +14597,28 @@ msgstr "" msgid "Show form" msgstr "แสดงสี" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14655,12 +14633,12 @@ msgstr "ไม่มีฐานข้อมูล" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" @@ -14673,36 +14651,36 @@ msgstr "ดูโครงสร้างของตาราง" msgid "Invalid table name" msgstr "ชื่อตารางไม่ถูกต้อง" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "ยังไม่ได้เลือกแถว" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "การติดตามเริ่มทำงานแล้ว" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "ยังไม่ได้เลือกแถว" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14925,7 +14903,7 @@ msgid "List of available transformations and their options" msgstr "การแปลงที่เรียกใช้ได้" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy msgid "Browser display transformation" msgstr "การแปลงที่เรียกใช้ได้" @@ -14949,7 +14927,7 @@ msgstr "" "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy msgid "Input transformation" msgstr "การแปลงที่เรียกใช้ได้" @@ -15488,17 +15466,17 @@ msgid "Size" msgstr "ขนาด" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "สร้างเมื่อ" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" @@ -15533,6 +15511,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "กำลังลบข้อมูลติดตามตาราง" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15555,10 +15539,45 @@ msgstr "เพิ่มสิทธิของตารางต่อไปน msgid "Add privileges on the following table:" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "ไม่มี" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "ถอนผู้ใช้ที่เลือก" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "ขีดจำกัดของทรัพยากร" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15593,7 +15612,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "ปิดใช้งาน" @@ -15780,7 +15799,7 @@ msgstr "ผู้ใช้" msgid "Comment:" msgstr "หมายเหตุ" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15818,30 +15837,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "เพิ่ม constraints" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "รีเลชันภายใน" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "รีเลชันภายใน" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15906,13 +15925,13 @@ msgstr "ตำแหน่งเริ่มแรก" msgid "Replaced string" msgstr "รีเลชัน" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "ทำซ้ำเรียบร้อยแล้ว" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "คำค้น SQL" @@ -15998,7 +16017,7 @@ msgid "at beginning of table" msgstr "ที่จุดเริ่มต้นของตาราง" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16030,30 +16049,30 @@ msgstr "ความยาวแถว" msgid "Index length" msgstr "ความยาวแถว" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "ตำแหน่ง" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Add new field" msgid "Edit partitioning" msgstr "เพิ่มฟิลด์ใหม่" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "แสดง" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "เนื้อที่ที่ใช้" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "มีผล" @@ -16084,33 +16103,33 @@ msgstr "เสนอโครงสร้างตาราง" msgid "Track view" msgstr "ติดตามตาราง" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "สถิติของแถว" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "ไม่คงที่" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "ความยาวแถว" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "ขนาดแถว" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16124,52 +16143,52 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Click to toggle" msgstr "คลิกเพื่อสลับ" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "ชุดรูปแบบ" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "รับชุดรูปแบบเพิ่มเติม!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "MIME-types ที่มีอยู่" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "การแปลงที่เรียกใช้ได้" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "การแปลงที่เรียกใช้ได้" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "รายละเอียด" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "รายงานผลการติดตาม" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "คุณไม่มีสิทธิที่จะเข้ามาตรงนี้!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "ปรับปรุงโพรไฟล์เรียบร้อยแล้ว" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -16242,7 +16261,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16266,19 +16285,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "ไม่มีตารางที่ถูกเลือก" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16334,27 +16353,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "รูปแบบของชื่อไฟล์" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ที่จุดเริ่มต้นของตาราง" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16371,10 +16390,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "ที่จุดเริ่มต้นของตาราง" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16418,7 +16443,7 @@ msgstr "" msgid "strict error" msgstr "รวบรวมข้อผิดพลาด" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17633,6 +17658,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ถูกตั้งค่าไว้ที่ 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "การรับรองความถูกต้องของคุกกี้" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/tk.po b/po/tk.po index 20ec1ef57d..3a07232eea 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Hemmesini görkez" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Use this value" msgid "Select database first" msgstr "Şu bahany ulan" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Hemmesini görkez" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "Hemmesini görkez" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2348,109 +2353,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Hemmesini görkez" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "Hemmesini görkez" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2459,353 +2464,373 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Show all" msgid "Copy tables to" msgstr "Hemmesini görkez" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Use this value" msgid "Please enter a valid date" msgstr "Şu bahany ulan" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2866,20 +2891,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3074,7 +3099,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3118,48 +3143,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3255,114 +3280,109 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Gözle" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Use this value" msgid "Unselect all" msgstr "Şu bahany ulan" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3384,30 +3404,30 @@ msgstr "" msgid "Search this table" msgstr "Şu bahany ulan" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3416,7 +3436,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3425,8 +3445,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3448,10 +3468,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3491,106 +3511,106 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Use this value" msgid "Check all" msgstr "Şu bahany ulan" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3598,97 +3618,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3697,20 +3717,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3720,78 +3740,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Açarsözi" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sahypa belgisi:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -3815,11 +3835,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3838,14 +3858,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3854,8 +3875,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3863,45 +3884,45 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Gözle" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3917,16 +3938,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3934,20 +3955,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3956,53 +3977,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4054,27 +4075,27 @@ msgstr "Hemmesini görkez" msgid "Favorites" msgstr "Hemmesini görkez" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4136,7 +4157,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4190,79 +4211,79 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show all" msgid "Unknown table status:" msgstr "Hemmesini görkez" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s maglumatlar ulgamy döredildi" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4270,19 +4291,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4549,7 +4570,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4564,126 +4585,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -4697,7 +4718,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4705,14 +4726,14 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Gözle" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4720,7 +4741,7 @@ msgstr "Gözle" msgid "Description" msgstr "Düşündiriş" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Şu bahany ulan" @@ -4757,22 +4778,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4781,7 +4802,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4800,11 +4821,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4812,33 +4833,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4846,20 +4867,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5384,7 +5405,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5486,12 +5507,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5501,7 +5522,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5626,7 +5647,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5639,7 +5660,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5648,7 +5669,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5678,7 +5699,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5846,7 +5867,7 @@ msgid "Customize the navigation tree." msgstr "Hemmesini görkez" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6693,7 +6714,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7336,7 +7357,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7344,10 +7365,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7482,25 +7503,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %s has been dropped." @@ -7515,12 +7536,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7529,7 +7550,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7543,42 +7564,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7603,32 +7624,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7673,7 +7694,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7690,12 +7711,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7718,13 +7739,13 @@ msgstr "" msgid "Distinct values" msgstr "Şu bahany ulan" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7744,167 +7765,171 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Use this value" msgid "Select a template" msgstr "Şu bahany ulan" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7912,102 +7937,102 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Use this value" msgid "Select database" msgstr "Şu bahany ulan" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Use this value" msgid "Select table" msgstr "Şu bahany ulan" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8404,86 +8429,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8494,84 +8519,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8582,31 +8608,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8615,14 +8641,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8667,8 +8693,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8709,17 +8735,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8734,7 +8760,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8753,7 +8779,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show all" msgid "Show hidden items" @@ -8854,13 +8880,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Use this value" msgid "Select one…" msgstr "Şu bahany ulan" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -9094,8 +9120,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9139,179 +9165,179 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Use this value" msgid "Checksum table" msgstr "Şu bahany ulan" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9338,25 +9364,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9364,7 +9390,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9389,15 +9415,15 @@ msgstr "" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9458,7 +9484,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9467,7 +9493,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9475,8 +9501,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9562,7 +9588,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -10060,7 +10086,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10392,57 +10418,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10451,293 +10477,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10758,7 +10784,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10767,75 +10793,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10856,7 +10882,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10868,132 +10894,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -11015,32 +11041,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11156,565 +11182,522 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11723,7 +11706,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11732,11 +11715,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -12003,12 +11986,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -12029,12 +12012,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -12058,33 +12041,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12092,78 +12075,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12171,7 +12154,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12179,42 +12162,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12222,33 +12205,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12257,242 +12240,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12500,99 +12483,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12600,18 +12583,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12619,11 +12602,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12652,37 +12635,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12777,7 +12760,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12862,172 +12845,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -13035,7 +13018,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -13059,7 +13042,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -13067,78 +13050,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13146,45 +13129,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13192,97 +13175,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13318,28 +13300,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13352,12 +13334,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13370,31 +13352,31 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "Database %1$s has been created." msgid "No row selected." msgstr "%1$s maglumatlar ulgamy döredildi." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13562,7 +13544,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13580,7 +13562,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -14020,17 +14002,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -14065,6 +14047,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -14081,10 +14067,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -14115,7 +14134,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14269,7 +14288,7 @@ msgstr "" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14301,28 +14320,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s maglumatlar ulgamy döredildi." -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14376,11 +14395,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14449,7 +14468,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14473,28 +14492,28 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Description" msgid "Partition table" msgstr "Düşündiriş" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Description" msgid "Edit partitioning" msgstr "Düşündiriş" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14519,31 +14538,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14556,44 +14575,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14661,7 +14680,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14686,19 +14705,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." msgstr "%1$s maglumatlar ulgamy döredildi." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14752,24 +14771,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14786,10 +14805,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14830,7 +14853,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/tr.po b/po/tr.po index 7bb18b8879..17d311b82c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-10 13:08+0000\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish " -"\n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2.9\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -24,31 +24,31 @@ msgstr "" "%s dosyası bu sistemde mevcut değil, lütfen daha fazla bilgi için %s " "adresini ziyaret edin." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Şu anki veritabanı için sütunların merkezi listesi boş." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Sıralamak için tıklayın." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Gösterilen satır %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Veritabanı açıklaması" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Tablo açıklamaları:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -60,13 +60,13 @@ msgstr "Tablo açıklamaları:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -77,9 +77,9 @@ msgstr "Tablo açıklamaları:" msgid "Column" msgstr "Sütun" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -90,12 +90,12 @@ msgstr "Sütun" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,9 +107,9 @@ msgstr "Sütun" msgid "Type" msgstr "Türü" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -120,15 +120,15 @@ msgstr "Türü" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Boş" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -139,14 +139,14 @@ msgstr "Boş" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Varsayılan" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -156,7 +156,7 @@ msgstr "Varsayılan" msgid "Links to" msgstr "Bağlantı verilen" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -170,19 +170,19 @@ msgstr "Bağlantı verilen" msgid "Comments" msgstr "Açıklamalar" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Birincil" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -190,13 +190,13 @@ msgstr "Birincil" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -204,17 +204,17 @@ msgstr "Birincil" msgid "No" msgstr "Hayır" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -223,13 +223,13 @@ msgstr "Hayır" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -241,15 +241,15 @@ msgstr "Evet" msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -258,8 +258,8 @@ msgid "Tables" msgstr "Tablolar" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -267,10 +267,10 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -283,27 +283,27 @@ msgstr "Yapı" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Veri" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Tümünü seç" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "%1$s veritabanı %2$s olarak yeniden adlandırıldı." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "%1$s veritabanı %2$s veritabanına kopyalandı." @@ -315,38 +315,38 @@ msgid "" msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. %sNedenini bulun%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Görüntülemek için en az bir sütun seçmelisiniz!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sGörsel yaratıcı'ya%s geç" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Erişim engellendi!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "İzlenen veri başarılı olarak silindi." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" "Seçilen tablolar için sürüm %1$s oluşturuldu, bunlar için izleme aktif." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Seçilen tablolar yok." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Veritabanı Günlüğü" @@ -387,131 +387,131 @@ msgstr "Kötü tür!" msgid "Bad parameters!" msgstr "Kötü parametreler!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" sütunu için değer" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Taban Katman olarak OpenStreetMaps kullan" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Geometri %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Nokta:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Nokta %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Nokta ekle" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Satır dizgisi %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Dış halka:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "İç halka %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Satır dizgisi ekle" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "İç halka ekle" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Poligon %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Poligon ekle" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Geometri ekle" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Git" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Çıktı" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,19 +519,19 @@ msgstr "" "\"Function\" sütunundan \"GeomFromText\"i seçin ve \"Value\" alanı içinde " "alta dizgiyi yapıştırın." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Başarılı oldu" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Başarısız oldu" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Tamamlanmamış parametreler" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -540,15 +540,15 @@ msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınır için çözüm " "yolu olarak %sbelgelere%s bakın." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Gösterilen yer imi" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Yer imi silindi." -#: import.php:489 +#: import.php:486 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 " @@ -558,23 +558,23 @@ msgstr "" "boyutu PHP yapılandırmanız tarafından izin verilen en fazla boyutu aştı. " "[doc@faq1-16]SSS 1.16[/doc]'ya bakın." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Yer imi %s oluşturuldu." -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "İçe aktarma başarılı olarak tamamlandı, %d sorgu çalıştırıldı." msgstr[1] "İçe aktarma başarılı olarak tamamlandı, %d sorgu çalıştırıldı." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -583,7 +583,7 @@ msgstr "" "Betik zaman aşımı geçti, eğer içe aktarmayı bitirmek istiyorsanız, lütfen " "%saynı dosyayı yeniden gönderin%s ve içe aktarma devam edecektir." -#: import.php:632 +#: import.php:629 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." @@ -592,7 +592,7 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı " "biteremeyeceği anlamına gelir." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." @@ -600,17 +600,17 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." msgid "Could not load the progress of the import." msgstr "İçe aktarma işleminin ilerleme durumu yüklenemedi." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Geri" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin Tanıtım Sunucusu" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -621,107 +621,107 @@ msgstr "" "yapabilirsiniz ancak lütfen root, debian-sys-maint ve pma kullanıcılarını " "değiştirmeyin. Daha fazla bilgi %s adresinde mevcuttur." -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "Genel ayarlar" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Parola değiştir" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Sunucu bağlantısı karşılaştırması" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "Görünüm ayarları" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Daha fazla ayar" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Veritabanı sunucusu" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Sunucu:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Sunucu türü:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Sunucu sürümü:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Protokol sürümü:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Kullanıcı:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Sunucu karakter grubu:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Web sunucusu" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Veritabanı istemcisi sürümü:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP uzantısı:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP sürümü:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Sürüm bilgisi:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Belgeler" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Resmî phpMyAdmin Anasayfası" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Katkıda bulun" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Destek al" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Değişikliklerin listesi" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Lisans" -#: index.php:443 +#: index.php:444 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 " @@ -731,7 +731,7 @@ msgstr "" "görünüyor. Mbstring uzantısı olmadan phpMyAdmin karakter dizgilerini doğru " "olarak bölemez ve bu beklenmedik sonuçlar doğurabilir." -#: index.php:458 +#: index.php:459 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." @@ -739,7 +739,7 @@ msgstr "" "Curl uzantısı bulunamadı ve allow_url_fopen etkisizleştirildi. Bu nedenle " "hata raporlama veya sürüm kontrolü gibi bazı özellikler etkisizleştirildi." -#: index.php:473 +#: index.php:474 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 " @@ -752,7 +752,7 @@ msgstr "" "bundan dolayı phpMyAdmin içinde yapılandırılmadıkça oturum açmanızın süresi " "dolabilir." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -761,17 +761,17 @@ msgstr "" "tanımlama bilgisi depolamasından düşük, bundan dolayı oturum açmanızın " "süresi phpMyAdmin içinde yapılandırılmadıkça dolacaktır." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Yapılandırma dosyası için gizli bir parola ifadesi gerekiyor " "(blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "Yapılandırma (blowfish_secret) içindeki gizli parola çok kısa." -#: index.php:528 +#: index.php:529 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 " @@ -783,7 +783,7 @@ msgstr "" "bunu kaldırmanız son derece önerilir. Yoksa yapılandırmanızı indiren " "yetkisiz insanlar tarafından sunucunuzun güvenliği riske atılabilir." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -792,14 +792,14 @@ msgstr "" "phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı, bazı " "genişletilmiş özellikler devre dışı bırakıldı. %sNedenini bulun%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ya da orada ayarlamak için herhangi bir veritabanının 'İşlemler' sekmesine " "dönüşümlü olarak gidin." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -808,7 +808,7 @@ msgstr "" "PHP MySQL kütüphanenizin %s sürümü, MySQL sunucunuzun %s sürümünden farklı. " "Bu tahmin edilemez davranışa sebep olabilir." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -979,7 +979,7 @@ msgid "Save & close" msgstr "Kaydet ve kapat" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Sıfırla" @@ -1011,7 +1011,7 @@ msgstr "İndeks ekle" msgid "Edit index" msgstr "İndeksi düzenle" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "İndekse %s sütun ekle" @@ -1036,10 +1036,10 @@ msgstr "İndeks için lütfen sütun(ları) seçin." msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "SQL Önizle" @@ -1051,7 +1051,7 @@ msgstr "Sorguyu benzeştir" msgid "Matched rows:" msgstr "Eşleşen satırlar:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL sorgusu:" @@ -1068,13 +1068,13 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" @@ -1082,8 +1082,8 @@ msgstr "Parolalar birbiriyle aynı değil!" msgid "Removing Selected Users" msgstr "Seçilen Kullanıcılar Kaldırılıyor" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Kapat" @@ -1105,19 +1105,19 @@ msgstr "Şablon silindi." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Diğer" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1223,40 +1223,40 @@ msgid "Processes" msgstr "İşlemler" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EiB" @@ -1274,7 +1274,7 @@ msgstr "Sorular" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ayarlar" @@ -1288,16 +1288,16 @@ msgid "Please add at least one variable to the series!" msgstr "Lütfen diziye en az bir değişken ekleyin!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Yok" @@ -1491,20 +1491,20 @@ msgstr "Çözümleniyor…" msgid "Explain output" msgstr "Çıktıyı açıkla" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Durum" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Süre" @@ -1593,10 +1593,10 @@ msgstr "" "Varsayılan yapılandırmaya sıfırlanıyor…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "İçe aktar" @@ -1669,7 +1669,7 @@ msgstr "Hiç parametre bulunamadı!" msgid "Cancel" msgstr "İptal" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "Sayfa ile ilgili ayarlar" @@ -1709,8 +1709,8 @@ msgid "Error text: %s" msgstr "Hata metni: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Seçilen veritabanları yok." @@ -1748,7 +1748,7 @@ msgstr "Veritabanı kopyalanıyor" msgid "Changing charset" msgstr "Karakter grubu değiştiriliyor" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "Dış anahtar kontrollerini etkinleştir" @@ -1776,73 +1776,78 @@ msgstr "Gözatılıyor" msgid "Deleting" msgstr "Siliniyor" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s tablosu için benzeşenler silinsin mi?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Dışa aktar" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "Dışa aktarılabilir yordam yok. Gerekli yetkiler yetersiz olabilir." -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET düzenleyicisi" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "%s sütunu için değerler" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Yeni bir sütun için değerler" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Her bir değeri ayrı alana girin." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "%d değer ekle" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Not: Eğer dosya çoklu tablolar içeriyorsa, bunlar bir tane içinde " "birleştirilecektir." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Sorgu kutusunu gizle" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Sorgu kutusunu göster" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1850,53 +1855,53 @@ msgstr "Sorgu kutusunu göster" msgid "Edit" msgstr "Düzenle" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Sil" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "Otomatik kaydedilmiş sorgu yok" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "Değişken %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "Seç" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Sütun seçici" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Bu listede ara" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1905,15 +1910,15 @@ msgstr "" "Merkezi listede hiç sütun yok. %s veritabanı için Merkezi sütunlar " "listesinin şu anki tabloda bulunmayan sütunlara sahip olduğundan emin olun." -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Daha fazlasına bakın" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Emin misiniz?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1921,51 +1926,51 @@ msgstr "" "Bu eylem bazı sütunların tanımını değiştirebilir.
Devam etmek " "istediğinize emin misiniz?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Devam" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Birincil anahtar ekle" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Birincil anahtar eklendi." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Sizi sonraki adıma götürüyor…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Normalleştirmenin ilk adımı '%s' tablosu için tamamlandı." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Adım sonu" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Normalleştirmenin ikinci adımı (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Bitti" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Kısmi bağımlılıkları doğrula" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Seçilen kısmi bağımlılıkları aşağıdaki gibidir:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1974,19 +1979,19 @@ msgstr "" "belirleyebilen a ve b sütunlarının beraber birleştirilmiş değerlerini ifade " "eder." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Seçilen kısmi bağımlılıklar yok!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Tablodaki veriye dayanarak olası kısmi bağımlılıkları bana göster" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Kısmi bağımlılıklar listesini gizle" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1994,171 +1999,171 @@ msgstr "" "Sıkı durun! Tablonun veri boyutuna ve sütun sayısına bağlı olarak birkaç " "saniye sürebilir." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Adım" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Aşağıdaki eylemler gerçekleştirilecektir:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "%s sütunlarını %s tablosundan KALDIR" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Aşağıdaki tabloyu oluştur" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Normalleştirmenin üçüncü adımı (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Karşılıklı bağımlılıkları onayla" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Seçilen bağımlılıklar aşağıdaki gibidir:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Seçilen bağımlılıklar yok!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Kaydet" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Arama kriterini gizle" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Aralığı arama" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "En fazla sütun:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "En az sütun:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "En az değer:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "En fazla değer:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Bul ve değiştir kriterini gizle" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Bul ve değiştir kriterini göster" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Her nokta bir veri satırını temsil eder." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Noktanın üzerinde durmak etiketini gösterecektir." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Yakınlaştırmak için fare ile çizimin bir bölümünü seçin." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Orijinal durumuna geri gelmesi için yakınlaştırmayı sıfırla düğmesine " "tıklayın." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Veri satırını mümkün olduğunca düzenlemek ve görmek için veri noktasına " "tıklayın." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırılabilir." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "İki farklı sütun seçin" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Veri imleci içeriği" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Kopyala" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Nokta" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Satır dizgisi" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "İç halka" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Dış halka" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Şifreleme anahtarını kopyalamak istiyor musunuz?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Şifreleme anahtarı" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" @@ -2166,7 +2171,7 @@ msgstr "" "MySQL, kaydırıcı tarafından seçilebilir olmayan ek değerleri kabul eder; " "doğrudan istendiğinde bu değerler içindeki anahtarı" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" @@ -2174,7 +2179,7 @@ msgstr "" "MySQL, datepicker tarafından seçilebilir olmayan ek değerleri kabul eder; " "doğrudan istendiğinde bu değerler içindeki anahtarı" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2182,24 +2187,24 @@ msgstr "" "Bu sayfada yaptığınız değişiklikleri gösterir; değişiklikleri terk etmeden " "önce onay için size sorulacaktır" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2207,76 +2212,76 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Sayfa adı" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sayfayı kaydet" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Sayfayı farklı kaydet" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Sayfayı aç" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Sayfayı sil" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıksız" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Lütfen devam etmek için bir sayfa seçin" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Lütfen geçerli bir sayfa adı girin" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Şu anki sayfada değişiklikleri kaydetmek istiyor musunuz?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Sayfa başarılı olarak silindi" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "İlişkisel şemayı dışa aktar" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu için bir seçenek ekleyin." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d nesne oluşturuldu." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Gönder" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2284,45 +2289,45 @@ msgstr "" "Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu " "sayfadan ayrılmak istediğinize emin misiniz?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Yen.düzenleme için sürükleyin." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Sonuçları bu sütuna göre sıralamak için tıklayın." -#: js/messages.php:581 +#: js/messages.php:582 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 "" "Bu sütunu ORDER BY yan tümcesine eklemek ya da ASC/DESC değiştirmek için " -"Shift+Tıklayın.
- Sütunu ORDER BY yan tümcesinden kaldırmak için Ctrl+" -"Tıklayın ya da Alt+Tıklayın (Mac: Shift+Option+Tıklayın)" +"Shift+Tıklayın.
- Sütunu ORDER BY yan tümcesinden kaldırmak için Ctrl" +"+Tıklayın ya da Alt+Tıklayın (Mac: Shift+Option+Tıklayın)" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "İşaretlemek/işareti kaldırmak için tıklayın." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamak için çift tıklayın." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Sütunların görünürlüğünü değiştirmek
için aşağı açılır okuna tıklayın." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Tümünü göster" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2331,12 +2336,12 @@ msgstr "" "Düzenle, Kopyala ve Sil bağlantıları ile ilgili özellikler kaydedildikten " "sonra çalışmayabilir." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Lütfen geçerli bir onaltılık dizgi girin. Geçerli karakterler 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2344,103 +2349,103 @@ msgstr "" "Satırların tümünü gerçekten görmek istiyor musunuz? Büyük bir tablo için bu, " "tarayıcıyı çökertebilir." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Orijinal uzunluk" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "iptal" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "İptal edilen" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Başarılı" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "İçe aktarma durumu" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Dosyaları buraya bırakın" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Önce veritabanını seçin" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Yazdır" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Aynı zamanda çoğu değeri, onlara doğrudan
çift tıklayarak " "düzenleyebilirsiniz." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Aynı zamanda çoğu değeri, onlara doğrudan
tıklayarak " "düzenleyebilirsiniz." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Bağlantıya git:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Sütun adını panonuza kopyalamak için sağ tuşa tıklayın." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Üret" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Daha fazla" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Paneli göster" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Paneli gizle" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Gizli gezinti ağacı öğelerini göster." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Ana panel ile bağla" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Ana panel ile bağlantıyı kopar" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "İstenen sayfa geçmişte bulunamadı, süresi dolmuş olabilir." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2450,27 +2455,27 @@ msgstr "" "%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "güncel" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Görünüm oluştur" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Hata raporu gönder" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Hata raporu gönder" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2478,15 +2483,15 @@ msgstr "" "Önemli bir JavaScript hatası meydana geldi. Bir hata raporu göndermek ister " "misiniz?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Rapor ayarlarını değiştir" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Rapor ayrıntılarını göster" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2494,7 +2499,7 @@ msgstr "" "Dışa aktarmanız PHP seviyesindeki düşük çalıştırma süresinden dolayı " "tamamlanmadı!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2503,58 +2508,58 @@ msgstr "" "Uyarı: bu sayfadaki form %d alandan daha fazlasına sahip. Gönderimde, bazı " "alanlar, PHP'nin max_input_vars yapılandırmasından dolayı yoksayılabilir." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Sunucu üzerinde bazı hatalar algılandı!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Lütfen bu pencerenin altına bakın." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Tümünü Yoksay" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Ayarlarınıza göre, bunlar şu anda gönderiliyor, lütfen sabırlı olun." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Bu sorgu tekrar çalıştırılsın mı?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Bu yer imini silmek istediğinize emin misiniz?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "SQL hata ayıklama bilgisi alınırken bazı hatalar meydana geldi." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s sorguları %s defa %s saniye içinde çalıştırıldı." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s bağımsız değişken(ler)i geçti" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Bağımsız değişkenleri göster" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Bağımsız değişkenleri gizle" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Aldığı süre:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2569,349 +2574,369 @@ msgstr "" "olabilir. Safari'de, genellikle böyle bir soruna \"Özel Kipte Tarama\" neden " "olur." -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Tabloları şuraya kopyala" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "Tablo ön eki ekle" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "Tabloyu ön ek ile değiştir" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tabloyu ön ek ile kopyala" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Önceki" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Bugün" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Ocak" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Şubat" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Mart" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Nisan" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Mayıs" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Haziran" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Temmuz" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Ağustos" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Eylül" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Ekim" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Kasım" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Ara" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Cuma" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Hs" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Saat" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Dakika" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Saniye" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Bu alan gereklidir" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Lütfen bu alanı düzeltin" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Lütfen geçerli bir eposta adresi girin" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Lütfen geçerli bir URL girin" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Lütfen geçerli bir tarih girin" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Lütfen geçerli bir tarih (ISO) girin" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Lütfen geçerli bir sayı girin" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Lütfen geçerli bir kredi kartı numarası girin" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Lütfen sadece rakam girin" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Lütfen aynı değeri tekrar girin" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Lütfen {0} karakterden daha fazla girmeyin" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Lütfen en az {0} karakter girin" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Lütfen {0} ve {1} karakter uzunluğu arasında bir değer girin" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Lütfen {0} ve {1} arasında bir değer girin" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Lütfen {0} değerinden küçük ya da eşit bir değer girin" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Lütfen {0} değerinden büyük ya da eşit bir değer girin" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Lütfen geçerli bir tarih veya saat girin" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Lütfen geçerli bir ONALTILIK girdi değeri girin" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Hata" @@ -2974,20 +2999,20 @@ msgid "Charset" msgstr "Karakter grubu" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Karşılaştırma" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "İkili Değer" @@ -3182,7 +3207,7 @@ msgid "Czech-Slovak" msgstr "Çekçe-Slovakça" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "bilinmiyor" @@ -3229,26 +3254,26 @@ msgstr "" msgid "Font size" msgstr "Yazı tipi boyutu" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "%1$d yer imi gösteriliyor (hem özel hem de paylaşılan)" msgstr[1] "%1$d yer imi gösteriliyor (hem özel hem de paylaşılan)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Yer imleri yok" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL Sorgu Konsolu" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "Yapılandırılmış karşılaştırma bağlantısı ayarlama başarısız!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3256,23 +3281,23 @@ msgstr "" "Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak " "yapılandırılmadı)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Sunucu yanıt vermiyor." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Ayrıntılar…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "Eksik bağlantı parametreleri!" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı " @@ -3368,110 +3393,105 @@ msgstr "Ins:" msgid "Del:" msgstr "Del:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "%s veritabanındaki SQL sorgusu:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Sorguyu Gönder" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Kaydedilen işaretli arama:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Yeni yer imi" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Yer imi oluştur" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Yer imini güncelle" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Yer imini sil" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "kelimelerin en az birini" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "tüm kelimeler" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "kesin ifade" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "düzenli ifade olarak" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s için arama sonuçları:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Toplam: %s benzeşme" msgstr[1] "Toplam: %s benzeşme" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s tablosu içerisinde %1$s eşleşme" msgstr[1] "%2$s tablosu içerisinde %1$s eşleşme" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Gözat" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s tablosu için benzeşenler silinsin mi?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Veritabanında ara" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Aranacak kelimeler veya değerler (joker: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Bul:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Kelimeler boşlukla ayrılır (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Tablo içindekiler:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Tüm seçimi kaldır" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "İç sütun:" @@ -3491,30 +3511,30 @@ msgstr "Satırları süz" msgid "Search this table" msgstr "Bu tabloda ara" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Başlangıç" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Önceki" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Sonraki" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Son" @@ -3523,7 +3543,7 @@ msgstr "Son" msgid "All" msgstr "Tümü" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Satır sayısı:" @@ -3532,8 +3552,8 @@ msgstr "Satır sayısı:" msgid "Sort by key" msgstr "Anahtara göre sırala" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3555,10 +3575,10 @@ msgstr "Anahtara göre sırala" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Seçenekler" @@ -3598,29 +3618,29 @@ msgstr "Çok İyi Bilinen Metin" msgid "Well Known Binary" msgstr "Çok İyi Bilinen İkili Değer" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Satır silindi." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Sonlandır" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Yaklaşık olabilir. [doc@faq3-11]SSS 3.11[/doc]'e bakın." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "SQL sorgunuz başarılı olarak çalıştırıldı." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3628,73 +3648,73 @@ msgid "" msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgelere%s bakın." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Gösterilen satır %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d toplam, %2$d sorguda" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "toplam %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Sorgu %01.4f saniye sürdü." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Seçilileri:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Tümünü işaretle" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Panoya kopyala" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Bağlantı bulunamadı!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Yok" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Kana'ya dönüştür" @@ -3702,24 +3722,24 @@ msgstr "Kana'ya dönüştür" msgid "Too many error messages, some are not displayed." msgstr "Çok fazla hata mesajı, bazıları görüntülenmedi." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Raporla" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Raporu gelecek sefer otomatik olarak gönder" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Dosya gönderilmiş bir dosya değil." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3727,47 +3747,47 @@ msgstr "" "Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " "aşıyor." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Gönderilen dosya sadece kısmen gönderildi." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Eksik geçici klasör." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Dosyayı diske yazma başarısız." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Dosya gönderme uzantısından dolayı durduruldu." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Dosya göndermede bilinmeyen hata oldu." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "Dosya bir sembolik bağlantıdır" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Dosya okunamadı!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Gönderilen dosyayı taşıma hatası, [doc@faq1-11]SSS 1.11[/doc]'e bakın." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Gönderilmiş dosya taşınırken hata oldu." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Gönderilen dosya okunamıyor." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3776,28 +3796,28 @@ msgstr "" "Desteklenmeyen sıkıştırmayla (%s) dosya yüklemeyi denediniz. Ya bunun için " "destek henüz tamamlanmadı ya da yapılandırmanız tarafından etkisizleştirildi." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Şu anda çalışan %2$s dalından Git gözden geçirme sürümü %1$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Git bilgisi eksik!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin penceresi aç" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Baskı görünümü" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Sayfanın en üstüne kaydırmak için çubuğa tklayın" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Bu kısmı geçmek için Javascript etkinleştirilmek zorundadır!" @@ -3806,20 +3826,20 @@ msgid "No index defined!" msgstr "Tanımlı indeks yok!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "İndeksler" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3829,59 +3849,59 @@ msgstr "İndeksler" msgid "Action" msgstr "Eylem" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Anahtar adı" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Benzersiz" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Önemlilik" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Açıklama" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Birincil anahtar kaldırıldı." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "%s indeksi kaldırıldı." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Kaldır" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3890,19 +3910,19 @@ msgstr "" "İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün " "olabilir." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sayfa numarası:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Desteklenmeyen dil kodu yoksayılıyor." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Dil" @@ -3926,11 +3946,11 @@ msgstr "Sunucu" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3949,14 +3969,15 @@ msgid "View" msgstr "Görünüm" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3965,8 +3986,8 @@ msgid "Table" msgstr "Tablo" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3974,45 +3995,45 @@ msgstr "Tablo" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Ara" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Ekle" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Yetkiler" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "İşlemler" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "İzleme" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4028,16 +4049,16 @@ msgstr "Tetikleyiciler" msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Sorgu" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Yordamlar" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4045,20 +4066,20 @@ msgstr "Yordamlar" msgid "Events" msgstr "Olaylar" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Tasarımcı" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Merkezi sütunlar" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Veritabanları" @@ -4067,53 +4088,53 @@ msgid "User accounts" msgstr "Kullanıcı hesapları" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "İkili değer günlüğü" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Kopya etme" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Değişkenler" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Karakter Grupları" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Motorlar" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Eklentiler" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d satır etkilendi." msgstr[1] "%1$d satır etkilendi." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d satır silindi." msgstr[1] "%1$d satır silindi." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4161,27 +4182,27 @@ msgstr "Sık kullanılan tablolar" msgid "Favorites" msgstr "Sık kullanılanlar" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Lütfen bu işaretli arama için bir isim verin." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "İşaretli aramayı kaydetmek için eksik bilgi." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Bu isimde bir giriş zaten var." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Aramayı silmek için eksik bilgi." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Aramayı yüklemek için eksik bilgi." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Arama yüklenirken hata oldu." @@ -4243,7 +4264,7 @@ msgstr "Açık tabloları göster" msgid "Show slave hosts" msgstr "Slave anamakineleri göster" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Master durumunu göster" @@ -4297,69 +4318,69 @@ msgid_plural "%d minutes" msgstr[0] "%d dakika" msgstr[1] "%d dakika" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Bu depolama motoru için ayrıntılı durum bilgisi mevcut değil." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s bu MySQL sunucusunda var." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s bu MySQL sunucusu için etkisizleştirildi." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Bilinmeyen tablo durumu:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Kaynak veritabanı `%s` bulunamadı!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Hedef veritabanı `%s` bulunamadı!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Geçersiz veritabanı:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Geçersiz tablo adı:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s tablo adını %2$s tablo adına değiştirme başarısız!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tablosu %2$s olarak yeniden adlandırıldı." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Tablo KA tercihleri kaydedilemedi!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4368,7 +4389,7 @@ msgstr "" "Tablo KA tercihlerini temizleme başarısız ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s bakın)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4379,19 +4400,19 @@ msgstr "" "yenilemenizden sonra kalıcı olmayacaktır. Eğer tablo yapısı değiştirilmişse " "lütfen kontrol edin." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birincil anahtarın adı \"PRIMARY\" olmalıdır!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "İndeks'i PRIMARY olarak yeniden adlandıramazsınız!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Tanımlı indeks kısımları yok!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4718,7 +4739,7 @@ msgid "Date and time" msgstr "Tarih ve saat" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Dizgi" @@ -4733,126 +4754,126 @@ msgstr "Uzaysal" msgid "Max: %s%s" msgstr "En fazla: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Sabit çözümleme:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Çözümleme sırasında %d hata bulundu." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "%s sitesinde Açıklamayı Çözümle" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "PHP kodsuz" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Sorguyu gönder" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "PHP kodu oluştur" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Yenile" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profil çıkart" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Satır içi düzenle" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Paz" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Eksik parametreler:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" veritabanına git." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Bilgisayara gözat:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Göndermek için hiç dosya yok!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Çalıştır" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Kullanıcılar" @@ -4866,7 +4887,7 @@ msgstr "dakika başına" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "saat başına" @@ -4874,12 +4895,12 @@ msgstr "saat başına" msgid "per day" msgstr "gün başına" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Arama:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4887,7 +4908,7 @@ msgstr "Arama:" msgid "Description" msgstr "Açıklama" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Bu değeri kullan" @@ -4927,22 +4948,22 @@ msgstr "EVET" msgid "NO" msgstr "HAYIR" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Adı" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Uzunluk/Değerler" @@ -4951,7 +4972,7 @@ msgstr "Uzunluk/Değerler" msgid "Attribute" msgstr "Öznitelik" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4968,11 +4989,11 @@ msgstr "Sütun ekle" msgid "Select a column." msgstr "Bir sütun seçin." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Yeni sütun ekle" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4980,7 +5001,7 @@ msgstr "Yeni sütun ekle" msgid "Attributes" msgstr "Öznitelikler" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4990,28 +5011,28 @@ msgstr "" "seçenek phpMyAdmin ile uyumlusuzdur ve bazı veri bozulmalarına sebep " "olabilir!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Sunucu %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik doğrulaması yöntemi ayarı:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5023,20 +5044,20 @@ msgstr "" "phpMyAdmin, veritabanı sunucusunun şu anki varsayılan saat dilimini " "kullanıyor." -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Hata: Belirteç uyuşmazlığı" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS üzerine yazma girişimi" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "olası kötüye kullanma" @@ -5636,7 +5657,7 @@ msgid "Compress on the fly" msgstr "Anında sıkıştır" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Yapılandırma dosyası" @@ -5743,12 +5764,12 @@ msgstr "" msgid "Maximum execution time" msgstr "En fazla yürütme süresi" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "%s ifadesi kullan" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Dosya olarak kaydet" @@ -5758,7 +5779,7 @@ msgstr "Dosyanın karakter grubu" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Biçim" @@ -5883,7 +5904,7 @@ msgid "Save on server" msgstr "Sunucuda kaydet" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Mevcut dosya(ların)nın üzerine yaz" @@ -5896,7 +5917,7 @@ msgid "Remember file name template" msgstr "Dosya adı şablonunu hatırla" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" @@ -5905,7 +5926,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Tablo ve sütun adlarını ters tırnaklarla kapattır" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" @@ -5935,7 +5956,7 @@ msgstr "phpMyAdmin yapılandırma depolamasından ilgili üstveriyi içe aktar" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s ekle" @@ -6107,7 +6128,7 @@ msgid "Customize the navigation tree." msgstr "Gezinti ağacını özelleştirir." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Sunucular" @@ -7015,7 +7036,7 @@ msgstr "HTTP Alanı" msgid "Authentication method to use." msgstr "Kullanmak için kimlik doğrulaması yöntemi." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Kimlik doğrulaması türü" @@ -7762,7 +7783,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Ayarlarda Geliştirici sekmesini etkinleştir" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Son sürümü kontrol et" @@ -7770,10 +7791,10 @@ msgstr "Son sürümü kontrol et" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Ana phpMyAdmin sayfasında son sürümü kontrol etmeyi etkinleştirir." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Sürüm kontrolü" @@ -7919,24 +7940,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Metni" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Sık Kullanılan Listesi dolu!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s tablosu boşaltıldı." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "%s görünümü kaldırıldı." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "%s tablosu kaldırıldı." @@ -7950,12 +7971,12 @@ msgid "Position" msgstr "Konum" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Olay türü" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Sunucu ID" @@ -7964,7 +7985,7 @@ msgid "Original position" msgstr "Orijinal konum" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Bilgi" @@ -7978,42 +7999,42 @@ msgstr "Gösterilen Sorguları Kısalt" msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Veritabanı yok" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d veritabanı başarılı olarak kaldırıldı." msgstr[1] "%1$d veritabanı başarılı olarak kaldırıldı." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Satır" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Toplam" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Ek Yük" @@ -8040,33 +8061,33 @@ msgstr "" msgid "Enable statistics" msgstr "İstatistikleri etkinleştir" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Sunucu değişkenlerini ve ayarlarını görüntülemek için yetersiz yetki. %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Ayar değişkeni başarısız oldu" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Veri getirmek için ayarlanmış SQL sorgusu yok." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Tabloda çizmek için sayısal sütunlar mevcut değil." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Görüntülemek için veri yok" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s tablosu başarılı olarak değiştirildi." @@ -8109,7 +8130,7 @@ msgstr "Sütunlar başarılı olarak taşındı." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Sorgu hatası" @@ -8126,12 +8147,12 @@ msgstr "Değiştir" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Index" @@ -8152,13 +8173,13 @@ msgstr "Tam metin" msgid "Distinct values" msgstr "Belirgin değerler" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Değişiklik yok" @@ -8180,31 +8201,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Şema eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Parola yok" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Parola:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Parola tekrarı:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Parola Adreslemesi:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -8213,83 +8238,83 @@ msgstr "" "Bu yöntem, sunucuya bağlanırken bir 'SSL bağlantısı' veya 'RSA " "kullanarak parolayı şifreleyen şifresiz bağlantı' kullanmayı gerektirir." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Şu anki sunucudan veritabanları dışa aktarılıyor" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "\"%s\" veritabanından tablolar dışa aktarılıyor" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "\"%s\" tablosunda satırlar dışa aktarılıyor" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Dışa aktarma şablonları:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Yeni şablon:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Şablon adı" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Oluştur" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Varolan şablonlar:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Şablon:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Güncelle" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Bir şablon seçin" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Dışa aktarma yöntemi:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Hızlı - sadece en az seçenekleri göster" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Özel - tüm olası seçenekleri göster" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Veritabanları:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Tablolar:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Biçim:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Biçim-belli seçenekler:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8297,52 +8322,52 @@ msgstr "" "Seçilen biçimde seçenekleri doldurmak için aşağı kaydırır ve diğer biçimler " "için seçenekleri yoksayar." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Kodlama Dönüştürme:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Satırlar:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Tüm satırı(ları) dökümle" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Başlanacak satır:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Tüm satırları dökümle" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Çıktı:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Sunucuda %s dizinine kaydet" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Dosya adı şablonu:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ sunucu adı olacaktır" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ veritabanı adı olacaktır" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ tablo adı olacaktır" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8354,99 +8379,99 @@ msgstr "" "meydana gelecektir: %3$s. Diğer metin olduğu gibi tutulacak. Ayrıntılar için " "%4$sSSS%5$s'a bakın." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "ileriki dışa aktarımlar için bunu kullan" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Dosyanın karakter grubu:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Sıkıştırma:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip olarak" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip olarak" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Çıktıyı metin olarak göster" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Veritabanlarını ayrı dosyalar olarak dışa aktar" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Tabloları ayrı dosyalar olarak dışa aktar" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Dışa aktarılan veritabanlarını/tabloları/sütunları yeniden adlandır" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Çıktıyı dosyaya kaydet" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Şundan büyük tabloları atla" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Veritabanı seç" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Tablo seç" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Yeni veritabanı adı" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Yeni tablo adı" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Eski sütun adı" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Yeni sütun adı" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Dışa aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%2$s dalından %1$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "dal yok" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git gözden geçirme:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%2$s tarafından %1$s tarihinde işlendi" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%2$s tarafından %1$s tarihinde hazırlandı" @@ -8906,13 +8931,13 @@ msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belgeler ve daha fazla bilgi " "bulunabilir." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s dosyasını kaydetmek için yetersiz alan." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -8920,76 +8945,76 @@ msgstr "" "%s dosyası zaten sunucuda var, dosya adını değiştirin veya üzerine yazma " "seçeneğini işaretleyin." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Döküm, %s dosyasına kaydedildi." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK meydana geldi.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Adına tıklayarak yapının içeriklerini görün." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " "değiştirin." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Aşağıdaki \"Yapı\" bağlantısıyla yapısını düzenleyin." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Şu veritabanına git: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "%s için ayarları düzenle" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Şu tabloya git: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s yapısı" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Şu görünüme git: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Sadece tek tablo UPDATE ve DELETE sorguları benzetilebilir." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9002,86 +9027,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks oluştur" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Gizle" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "İşlev" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Uzunluğu nedeniyle,
bu sütun düzenlenebilir olmayabilir." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "İkili değer - düzenlemeyin" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Veya" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "web sunucusu gönderme dizini:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Düzenle/Ekle" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ve ondan sonra" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+ok tuşlarını kullanın." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9092,31 +9118,31 @@ msgstr "" msgid "Value" msgstr "Değer" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Başarılı!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Sadece yapı" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Yapı ve veri" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Sadece veri" @@ -9125,14 +9151,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO INCREMENT değeri ekle" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Kısıtlamaları ekle" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Yetkileri ayarla" @@ -9177,8 +9203,8 @@ msgstr "Yordamlar:" msgid "Views:" msgstr "Görünümler:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Göster" @@ -9221,17 +9247,17 @@ msgid_plural "%s results found" msgstr[0] "%s sonuç bulundu" msgstr[1] "%s sonuç bulundu" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Bunları süzmek için yazın, tümünü aramak için Enter'a basın" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Hızlı süzgeci temizle" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Tümünü daralt" @@ -9246,7 +9272,7 @@ msgstr "Geçersiz sınıf adı \"%1$s\", \"Node\" varsayılanı kullanıyor" msgid "Could not load class \"%1$s\"" msgstr "Class \"%1$s\" yüklenemedi" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Genişlet/Daralt" @@ -9265,7 +9291,7 @@ msgstr "Yeni" msgid "Database operations" msgstr "Veritabanı işlemleri" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Gizli öğeleri göster" @@ -9368,11 +9394,11 @@ msgstr "" "Birden fazla sütuna bölünebilen bir sütun seçin. ('böyle bir sütun yok' " "seçiminde, sonraki adıma geçilecek)." -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Birini seçin…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Böyle bir sütun yok" @@ -9646,8 +9672,8 @@ msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9693,177 +9719,177 @@ msgstr "(birer birer)" msgid "Move table to (database.table)" msgstr "Tabloyu şuna (veritabanı.tablo) taşı" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Tabloyu yeniden şuna adlandır" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tablo açıklamaları" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tablo seçenekleri" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Depolama Motoru" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Tüm sütun karşılaştırmalarını değiştir" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Tabloyu şuna (veritabanı.tablo) kopyala" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Kopyalanmış tabloya geç" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tablo bakımı" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Tabloyu çözümle" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Tabloyu kontrol et" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Sağlama tablosu" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Tabloyu birleştir" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "%s tablosu temizlendi." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Tabloyu temizle (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Tabloyu onar" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Tabloyu veya veriyi sil" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Tabloyu boşalt (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Tabloyu sil (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Çözümle" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Seç" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Uyarla" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Onar" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Kes" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Birleştir" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Bölüm bakımı" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Bölüm %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Bölümlemeyi kaldır" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Tablo aynısına taşınamıyor!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Tablo aynısına kopyalanamıyor!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s tablosu %s üzerine taşındı. Yetkiler ayarlandı." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s tablosu %s üzerine kopyalandı. Yetkiler ayarlandı." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tablosu %s üzerine taşındı." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tablosu %s üzerine kopyalandı." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tablo adı boş!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Bu biçim seçeneğe sahip değil" @@ -9892,18 +9918,18 @@ msgstr "Rengi göster" msgid "Only show keys" msgstr "Sadece anahtarları göster" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Bağlanamıyor: geçersiz ayarlar." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s'e Hoş Geldiniz" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9912,7 +9938,7 @@ msgstr "" "Muhtemelen bir yapılandırma dosyası oluşturmadınız. Bir tane oluşturmak için " "%1$skur programcığını%2$s kullanmak isteyebilirsiniz." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9924,7 +9950,7 @@ msgstr "" "parolayı kontrol edin ve MySQL sunucusu yöneticisi tarafından verilen " "bilgiye uyduğundan emin olun." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Bağlanmayı yeniden dene" @@ -9951,15 +9977,15 @@ msgstr "Kullanıcı Adı:" msgid "Server Choice:" msgstr "Sunucu Seçimi:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Girilen captcha yanlış, tekrar deneyin!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Lütfen doğru captcha'yı girin!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Bu MySQL sunucusuna oturum açmanıza izin verilmiyor!" @@ -10020,7 +10046,7 @@ msgstr "Veri dökümü seçenekleri" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Tablo döküm verisi" @@ -10029,7 +10055,7 @@ msgstr "Tablo döküm verisi" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Olay" @@ -10037,8 +10063,8 @@ msgstr "Olay" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Tanım" @@ -10124,7 +10150,7 @@ msgstr "İlk satır içine sütun adlarını koy:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Anamakine:" @@ -10654,7 +10680,7 @@ msgstr "İçerik tablosu" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Ekstra" @@ -11037,11 +11063,11 @@ msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Açıklama yok" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11051,7 +11077,7 @@ msgstr "" "değilsiniz. phpMyAdmin yapılandırma depolamasını ayarlamak için herhangi bir " "veritabanının 'İşlemler' sekmesine gidebilirsiniz." -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11060,41 +11086,41 @@ msgstr "" "Önce 'phpmyadmin' adında bir veritabanı %soluşturun%s ve orada phpMyAdmin " "yapılandırma depolama tablolarını ayarlayın." -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "Şu anki veritabanında phpMyAdmin yapılandırma depolaması %soluşturun%s." -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Eksik phpMyAdmin yapılandırma depolama tablolarını %soluşturun%s." -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Master kopya etme" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında master sunucu olarak yapılandırıldı." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Bağlı slave'leri göster" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Master yapılandırması" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11109,19 +11135,19 @@ msgstr "" "kopya etmek için sadece belirli veritabanlarına izin verebilirsiniz. Lütfen " "kipi seçin:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Tüm veritabanlarını kopya et; Yoksay:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Tüm veritabanlarını yoksay; Kopya et:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Lütfen veritabanlarını seçin:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11129,7 +11155,7 @@ msgstr "" "Şimdi, aşağıdaki satırları my.cnf dosyanız içindeki [mysqld] bölümünün " "sonuna ekleyin ve ondan sonra lütfen MySQL sunucusunu yeniden başlatın." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11139,71 +11165,71 @@ msgstr "" "tıklayın. Ondan sonra bu sunucunun master olarak yapılandırıldığını " "gösteren, sizi uyaran bir mesaj görmelisiniz." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Slave kopya etme" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Master bağlantısı:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Slave SQL işlemi çalışmıyor!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Slave G/Ç işlemi çalışmıyor!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Sunucu kopya etme işlemi sırasında slave sunucu olarak yapılandırılır. Bunu " "istiyor musunuz:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Slave durum tablosuna bak" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Slave'i kontrol et:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Tam başlat" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Tam durdur" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Slave'i sıfırla" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Sadece SQL İşlemini başlat" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Sadece SQL İşlemini durdur" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Sadece G/Ç İşlemini başlat" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Sadece G/Ç İşlemini durdur" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Master sunucuyu değiştir veya yeniden yapılandır" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11212,24 +11238,24 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında slave sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Hata yönetimi:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Hataları atlamak master ve slave'i eşitlenmemeye sürükleyebilir!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Şu anki hatayı atla" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Sonraki %s hatayı atla." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11238,11 +11264,11 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında master sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Slave yapılandırması" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11250,53 +11276,53 @@ msgstr "" "Yapılandırma dosyanız (my.cnf) içinde benzersiz sunucu-id olduğundan emin " "olun. Eğer değilseniz lütfen aşağıdaki satırı [mysqld] bölümü içine ekleyin:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Kullanıcı adı:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Kullanıcı Adı" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Parola" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "B.Noktası:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Master durumu" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Slave durumu" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Değişken" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Anamakine" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11304,39 +11330,39 @@ msgstr "" "Sadece slave'ler, bu listede --report-host=host_name seçeneğiyle görünen bu " "şekilde başlar." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Yerel" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Herhangi kullanıcı" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Metin alanını kullan:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11344,75 +11370,75 @@ msgstr "" "Anamakine tablosu kullanıldığında bu alan yoksayılır ve yerine Anamakine " "tablosunda saklanan değerler kullanılır." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Parola tekrarı" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Parola üret:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Çoğaltma başarılı olarak başlatıldı." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Çoğaltmayı başlatma hatası." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Çoğaltma başarılı olarak durduruldu." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Çoğaltmayı durdurma hatası." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Çoğaltma başarılı olarak sıfırlandı." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Çoğaltmayı sıfırlama hatası." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Başarılı." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Hata." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Bilinmeyen hata" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Master %s sunucusuna bağlanılamıyor." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "Master günlük konumu okunamıyor. Master üzerinde olası yetki sorunu." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Master değiştirilemiyor!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Master sunucu %s olarak başarılı bir şekilde değiştirildi." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11433,7 +11459,7 @@ msgstr "Olay %1$s değiştirildi." msgid "Event %1$s has been created." msgstr "Olay %1$s oluşturuldu." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" @@ -11442,75 +11468,75 @@ msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" msgid "Edit event" msgstr "Olay düzenle" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Ayrıntılar" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Olay adı" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "%s'a değiştir" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Çalıştır" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Çalıştır; her" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Başlama" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Bitiş" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Tamamlamada koruma" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Tanımlayıcı" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Bir olay adı vermek zorundasınız!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Her olay için geçerli aralık değeri vermek zorundasınız." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Olay için geçerli bir yürütme zamanı vermek zorundasınız." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Olay için geçerli bir tür vermek zorundasınız." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Bir olay tanımı vermek zorundasınız." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "İstek işlemede hata:" @@ -11531,7 +11557,7 @@ msgstr "Olay zamanlayıcısı durumu" msgid "The backed up query was:" msgstr "Yedeklenmiş sorgu:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Dönüşler" @@ -11547,72 +11573,72 @@ msgstr "" "başarısız olabilir![/strong] Lütfen herhangi bir sorundan kaçınmak için " "gelişmiş 'mysqli' uzantısı kullanın." -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Yordamı düzenle" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Geçersiz yordam türü: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Yordam %1$s oluşturuldu." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Üzgünüm, kaldırılmış yordamı geri yükleme başarısız oldu." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Yordam %1$s değiştirildi. Yetkiler ayarlandı." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Yordam %1$s değiştirildi." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Yordam adı" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Parametreler" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Yön" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Parametre ekle" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Son parametreyi kaldır" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Dönüş türü" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Dönüş uzunluğu/değerleri" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Dönüş seçenekleri" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Belirleyici" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" @@ -11620,25 +11646,25 @@ msgstr "" "Bu işlemi yapmak için yeterli yetkilere sahip değilsiniz; Lütfen daha fazla " "ayrıntı için belgelere bakın" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Güvenlik türü" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL veri erişimi" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Bir yordam adı vermek zorundasınız!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Parametre için geçersiz yön \"%s\" verilmiş." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11646,37 +11672,37 @@ msgstr "" "ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için uzunluk/" "değerler vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Bir yordam tanımı vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "%s yordamı yürütme sonuçları" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "İşlemin içindeki son ifade tarafından %d satır etkilendi." msgstr[1] "İşlemin içindeki son ifade tarafından %d satır etkilendi." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Yordamı çalıştır" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Yordam parametreleri" @@ -11698,32 +11724,32 @@ msgstr "Tetikleyici %1$s oluşturuldu." msgid "Edit trigger" msgstr "Tetikleyiciyi düzenle" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Tetikleyici adı" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Zaman" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Bir tetikleyici adı vermek zorundasınız!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Tetikleyici için geçerli bir zamanlama vermek zorundasınız!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Tetikleyici için geçerli bir olay vermek zorundasınız!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Geçerli bir tablo adı vermek zorundasınız!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Bir tetikleyici tanımı vermek zorundasınız." @@ -11843,92 +11869,92 @@ msgstr "Karakter Grupları ve Karşılaştırmalar" msgid "Databases statistics" msgstr "Veritabanı istatistikleri" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Yetkiniz yok." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içe ve dışa aktarılmasına izin verir." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11938,129 +11964,103 @@ msgstr "" "değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " "gibi pek çok yönetimsel işlemler için gereklidir." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Geçici tablolar oluşturulmasına izin verir." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Saklanan yordamların oluşturulmasına izin verir." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Saklanan yordamların değiştirilmesine ve kaldırılmasına izin verir." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Saklanan yordamların yürütülmesine izin verir." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Yok" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Kullanıcı grubu" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "SSL-şifrelenmiş bağlantılar gerektirmez." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "SSL-şifrelenmiş bağlantılar gerektirir." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Geçerli bir X509 sertifikası gerektirir." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Bir bağlantı için kullanılan belirli şifreleme yöntemi gerektirir." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" "Bu CA tarafından verilen geçerli bir X509 sertifikası sunulmasını gerektirir." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Bu konu ile geçerli bir X509 sertifikası sunulmasını gerektirir." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Kaynak sınırları" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12068,25 +12068,23 @@ msgstr "" "Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " "veritabanını değiştiren komut sayısını sınırlar." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Yordam" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." @@ -12094,62 +12092,62 @@ msgstr "" "Kullanıcının bu yordamda sahip olduğu yetkileri diğer kullanıcılara vermek " "ya da diğer kullanıcılardan kaldırmak için kullanıcılara izin verir." -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Bu yordamın değiştirilmesine ve kaldırılmasına izin verir." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Bu yordamın yürütülmesine izin verir." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Yönetim" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Genel yetkiler" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Genel" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " "eklenmesine izin verir." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." @@ -12157,31 +12155,28 @@ msgstr "" "Kullanıcının kendi kendine sahip olduğu yetkileri diğer kullanıcılara vermek " "ya da diğer kullanıcılardan kaldırmak için kullanıcılara izin verir." -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Yerel MySQL kimlik doğrulaması" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 parola kimlik doğrulaması" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Yerel MySQL Kimlik Doğrulaması" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12189,223 +12184,211 @@ msgstr "" "Hesap zaten aynı kullanıcı adıyla mevcut ancak farklı bir anamakine adı " "olması mümkün." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Anamakine adı:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Anamakine adı" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Kimlik Doğrulama Eklentisi" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Parola Adresleme Yöntemi" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s için yetkileri geri aldınız." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Kullanıcı hesabı ekle" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Kullanıcı hesabı için veritabanı" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Aynı isimle veritabanı oluşturur ve tüm yetkileri verir." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "%s veritabanı üzerindeki tüm yetkileri verir." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" veritabanına erişimi olan kullanıcılar" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Kullanıcı eklendi." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Onaylı" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Kullanıcıları görüntülemek için yetersiz yetki." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Herhangi" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "genel" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Veritabanına özgü" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "joker" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "tabloya özgü" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Yetkileri düzenle" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Kullanıcı grubunu düzenle" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… eski olanı sakla." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… eski olanı kullanıcı tablolarından sil." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… eski olandan bütün aktif yetkileri geri al ve sonra da sil." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden yükle." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Oturum açma bilgisini değiştir / Kullanıcı hesabını kopyala" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Aynı yetkilerle yeni bir kullanıcı hesabı oluştur ve …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Yordama özgü yetkiler" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Seçilen kullanıcı hesaplarını kaldır" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Kullanıcı grubu" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Kullanıcılardan tüm aktif yetkileri geri alır ve sonra da siler." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Seçilen kullanıcılar başarılı olarak silindi." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s için yetkiler" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Kullanıcı" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Yeni" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Yetkileri düzenle:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Kullanıcı hesabı" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12413,11 +12396,11 @@ msgstr "" "Not: Şu anda oturum açtığınız kullanıcının yetkilerini düzenlemeye " "çalışıyorsunuz." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Kullanıcı hesaplarına genel bakış" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -12428,7 +12411,7 @@ msgstr "" "herhangi bir (%) anamakineden bir bağlantıya izin veriyorsa bu " "kullanıcıların bağlanmalarını önler." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12441,7 +12424,7 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12455,11 +12438,11 @@ msgstr "" "yeniden yüklenmek zorundadır ancak şu anda, yetkileri YENİDEN YÜKLEMENİZ " "gerekmez." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Seçilen kullanıcı yetki tablosunda bulunamadı." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." @@ -12768,12 +12751,12 @@ msgstr "Komut" msgid "Progress" msgstr "İlerleme" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Süzgeçler" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Sadece aktif olanı göster" @@ -12794,12 +12777,12 @@ msgstr "dakika başına:" msgid "per second:" msgstr "saniye başına:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "İfadeler" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12823,7 +12806,7 @@ msgstr "Biçimlendirilmemiş değerleri göster" msgid "Related links:" msgstr "İlgili bağlantılar:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12831,11 +12814,11 @@ msgstr "" "Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş " "bağlantılarının sayısıdır." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısıdır." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12845,17 +12828,17 @@ msgstr "" "değerini aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış " "işlemlerin sayısıdır." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Geçici ikili değer günlüğü önbelleğinde kullanılan işlemlerin sayısıdır." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısıdır." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12867,11 +12850,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12879,7 +12862,7 @@ msgstr "" "İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " "sayısı otomatik olarak oluşturuldu." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12887,7 +12870,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12895,23 +12878,23 @@ msgstr "" "Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " "komutunu kullanan her farklı tablodan biri kendi işlemini alır." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Tablodan satırın kaç kez silindiği sayısıdır." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12921,7 +12904,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12931,7 +12914,7 @@ msgstr "" "sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " "SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12940,7 +12923,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12950,7 +12933,7 @@ msgstr "" "aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " "yapıyorsanız, bu arttırılan miktardır." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12958,7 +12941,7 @@ msgstr "" "Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " "yöntemi başlıca ORDER BY … DESC komutunu uyarlamak için kullanılır." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12971,7 +12954,7 @@ msgstr "" "fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan " "birleştirmelere sahipsiniz." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12983,35 +12966,35 @@ msgstr "" "düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " "indeksleri çıkarına kullanmak için yazmadığında önerilir." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Tablo içinde satır güncellemek için istek sayısıdır." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Tablo içinde satır eklemek için istek sayısıdır." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş arabellek havuz sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13021,7 +13004,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13033,11 +13016,11 @@ msgstr "" "zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13045,7 +13028,7 @@ msgstr "" "InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " "bir kısmını taradığı zaman bu olur ama rastgele düzende." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13053,11 +13036,11 @@ msgstr "" "InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " "taraması yaptığı zaman bu olur." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13065,7 +13048,7 @@ msgstr "" "InnoDB'nin arabellek havuzundan tatmin olamadığı ve tek-sayfa okuması yapmak " "zorunda olduğu mantıksal okuma sayısıdır." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13079,55 +13062,55 @@ msgstr "" "durumlarını sayar. Eğer arabellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13135,35 +13118,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük arabelleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Günlük dosyasına fiziksel yazma sayısıdır." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Günlük dosyasına yazılı bayt sayısıdır." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13171,52 +13154,52 @@ msgstr "" "Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " "sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13224,7 +13207,7 @@ msgstr "" "Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " "bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13233,7 +13216,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13242,15 +13225,15 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13260,7 +13243,7 @@ msgstr "" "büyükse, o zaman key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik " "önbellek oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13268,21 +13251,21 @@ msgstr "" "Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan " "anahtar önbelleğidir (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Yazma isteklerine nazaran fiziksel yazmaların yüzdesidir (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13293,7 +13276,7 @@ msgstr "" "karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " "olmadığı anlamına gelir." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13301,11 +13284,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13313,19 +13296,19 @@ msgstr "" "Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " "değeriniz muhtemelen çok küçüktür." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13335,19 +13318,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13359,7 +13342,7 @@ msgstr "" "yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " "için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13367,19 +13350,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13387,11 +13370,11 @@ msgstr "" "İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " "tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13400,7 +13383,7 @@ msgstr "" "birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " "dikkatli olarak kontrol etmelisiniz.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13408,15 +13391,15 @@ msgstr "" "İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " "kusurlu değildir, eğer büyükse bile.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13424,11 +13407,11 @@ msgstr "" "Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " "(başlangıçtan beri) süre sayısıdır." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13436,12 +13419,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13451,23 +13434,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "düşünmelisiniz." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13479,7 +13462,7 @@ msgstr "" "uyarlamalısınız ve ondan sonra ya tablonuzu ya da tablolarınızı bölün veya " "kopya etmeyi kullanın." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13489,11 +13472,11 @@ msgstr "" "Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " "ise, thread_cache_size boyutunuzu yükseltmelisiniz." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13505,11 +13488,11 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." @@ -13538,37 +13521,37 @@ msgstr "Veritabanı seviyesi sekmeler" msgid "Table level tabs" msgstr "Tablo seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Kullanıcıları göster" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Kullanıcı grubu ekle" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Kullanıcı grubunu düzenle: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Kullanıcı grubu menü atamaları" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Grup adı:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Sunucu seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Veritabanı seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tablo seviyesi sekmeler" @@ -13667,7 +13650,7 @@ msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır" msgid "Run SQL query/queries on table %s" msgstr "%s tablosu üzerinde SQL sorgusunu/sorgularını çalıştır" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Temizle" @@ -13752,113 +13735,113 @@ msgstr "Hemen devre dışı bırak" msgid "Version" msgstr "Sürüm" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Oluşturuldu" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Güncellendi" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Sürümü sil" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "İzleme raporu" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "aktif" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "aktif değil" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "İzleme ifadeleri" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Rapordan izlenen veri satırını sil" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Veri yok" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "%4$s %5$s kullanıcısına göre %2$s ile %3$s arası tarihler ile %1$s göster" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL dökümü (dosya indirme)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL dökümü" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL yürütme" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "%s olarak dışa aktar" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Veri işleme ifadesi" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Veri tanımlama ifadesi" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Tarih" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Kullanıcı adı" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Yok" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "İzlenen veri tanımlaması başarılı olarak silindi" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "İzlenen veri işlemesi başarılı olarak silindi" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13867,62 +13850,62 @@ msgstr "" "çalıştırabilirsiniz. Lütfen bunu yapmak için yetkilere sahip olduğunuzdan " "emin olun." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL ifadeleri dışa aktarıldı. Lütfen dökümü kopyalayın ya da çalıştırın." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tablosu için izleme raporu" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde aktif edildi." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde devre dışı bırakıldı." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Sürüm %1$s / %2$s oluşturuldu." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Sürüm %1$s oluşturuldu, %2$s için izleme aktif." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tabloyu izle" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "İzlenen tablolar" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Son sürüm" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "İzlemeyi sil" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Sürümler" @@ -13930,7 +13913,7 @@ msgstr "Sürümler" msgid "Manage your settings" msgstr "Ayarlarınızı yönetin" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Yapılandırma kaydedildi." @@ -13956,7 +13939,7 @@ msgstr "ZIP arşivinde hata:" msgid "No files found inside ZIP archive!" msgstr "ZIP arşivi içinde bulunan dosya yok!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Önemli hata: Gezintiye sadece AJAX aracılığıyla erişilebilir" @@ -13964,55 +13947,55 @@ msgstr "Önemli hata: Gezintiye sadece AJAX aracılığıyla erişilebilir" msgid "Cannot save settings, submitted form contains errors!" msgstr "Ayarlar kaydedilemiyor, gönderilmiş form hatalar içeriyor!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin yapılandırma parçacığı" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "config.inc.php dosyanıza yapıştırın" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Yapılandırma içe aktarılamadı" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Bazı alanlar için yapılandırma doğru olmayan veri içeriyor." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Kalan ayarları içe aktarmak istiyor musunuz?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Kaydedilme: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Dosyadan içe aktar" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Tarayıcının depolamasından içe aktar" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Ayarlar tarayıcınızın yerel depolamasından içe aktarılacaktır." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Kaydedilmiş ayarlarınız yok!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Bu özellik web tarayıcınız tarafından desteklenmez" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Şu anki yapılandırma ile birleştir" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14021,23 +14004,23 @@ msgstr "" "Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. " "%sKur programcığı%s kullanarak." -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "PHP dosyası olarak kaydet" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Tarayıcının depolamasına kaydet" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Ayarlar tarayıcının yerel depolamasına kaydedilecektir." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Mevcut ayarlar üzerine yazılacak!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Tüm ayarlarınızı sıfırlayabilir ve varsayılan değerlere geri " @@ -14047,12 +14030,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Yetkiniz yok" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14060,34 +14043,34 @@ msgstr "" "Kullanıcı adı ve anabilgisayar adı değişmedi. Sadece parolayı değiştirmek " "istiyorsanız, 'Parolayı değiştir' sekmesi kullanılmalıdır." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Sunucu durumunu görüntülemek için yetersiz yetki." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Danışmanı görüntülemek için yetersiz yetki." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "%s işlemi başarılı olarak sonlandırıldı." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Sorgu istatistiklerini görüntülemek için yetersiz yetki." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Durum değişkenlerini görüntülemek için yetersiz yetki." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "İndir" @@ -14097,11 +14080,11 @@ msgstr "" "Doğru olmayan form grubu, setup/frames/form.inc.php içindeki $formsets " "dizilimini kontrol edin!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Yapılandırma yüklenemiyor veya kaydedilemiyor" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -14112,7 +14095,7 @@ msgstr "" "[em]yapılandırma[/em] klasörü oluşturun. Aksi halde sadece indirmenize veya " "görüntülemenize izin verecektir." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14120,25 +14103,28 @@ msgstr "" "Güvenli bağlantı kullanmıyorsunuz; tüm veri (parola gibi hassas olabilecek " "bilgiler dahil) şifresiz olarak aktarılır!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Eğer sunucunuz aynı zamanda HTTPS isteklerini kabul etmek için " "yapılandırılmışsa güvenli bağlantı kullanmak için [a@%s]bu bağlantıyı[/a] " "takip edin." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Güvensiz bağlantı" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Yapılandırma kaydedildi." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14147,59 +14133,59 @@ msgstr "" "dosyasına kaydedildi, dosyayı bir dizin yukarı kopyalayın ve kullanmak için " "config dizinini silin." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "Yapılandırma kaydedilmedi!" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Genel Bakış" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Gizli mesajları göster (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Yapılandırılmış sunucular yok" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Yeni sunucu" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Varsayılan dil" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "kullanıcı seçsin" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- yok -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Varsayılan sunucu" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Satır sonu" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Görüntüle" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Yükle" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin ana sayfası" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Bağış" @@ -14235,7 +14221,7 @@ msgstr "Hataları yoksay" msgid "Show form" msgstr "Formu göster" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14243,15 +14229,15 @@ msgstr "" "Sürüm okuma başarısız. Çevrimdışı olabilirsiniz ya da yükseltme sunucusu " "cevap vermiyordur." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Sunucudan geçersiz sürüm dizgisi alındı" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Ayrıştırılamaz sürüm dizgisi" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14260,7 +14246,7 @@ msgstr "" "Git sürümünü kullanıyorsunuz, [kbd]git pull[/kbd] çalıştırın :-)[br]Son " "sağlam sürüm %s, %s tarihinde yayınlandı." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Daha yeni sağlam sürüm mevcut değil" @@ -14273,12 +14259,12 @@ msgstr "Yanlış veri" msgid "Wrong data or no validation for %s" msgstr "Yanlış veri veya %s için doğrulama yok" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' veritabanı mevcut değil." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s tablosu zaten var!" @@ -14291,29 +14277,29 @@ msgstr "Tablonun dökümünü (şemasını) göster" msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Satır: %1$s, Sütun: %2$s, Hata: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Seçilen satır yok." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s izleme aktif edildi." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "İzlenen sürümler başarılı olarak silindi." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Seçilen sürümler yok." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL ifadeleri çalıştırıldı." @@ -14483,7 +14469,7 @@ msgid "List of available transformations and their options" msgstr "Mevcut dönüşümler ve seçeneklerinin listesi" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "Tarayıcı görüntüleme dönüşümü" @@ -14505,7 +14491,7 @@ msgstr "" "(örneğin '\\\\xyz' veya 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "Girdi dönüşümü" @@ -14937,17 +14923,17 @@ msgid "Size" msgstr "Boyut" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Oluşturma" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Son güncelleme" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Son kontrol" @@ -14989,6 +14975,12 @@ msgstr "" "Tarayıcınız bu alan adı için phpMyAdmin yapılandırmasına sahip. Şu anki " "oturum için bunu içe aktarmak istiyor musunuz?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "İzlemeyi sil" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Aşağıdaki veritaban(lar)ına yetkileri ekle:" @@ -15005,10 +14997,43 @@ msgstr "Aşağıdaki yordama yetkileri ekle:" msgid "Add privileges on the following table:" msgstr "Aşağıdaki tabloya yetkileri ekle:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Yeni" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Yok" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Seçilen kullanıcı hesaplarını kaldır" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Kullanıcılardan tüm aktif yetkileri geri alır ve sonra da siler." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Kaynak sınırları" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Görüntülemek için ikili değer günlüğünü seçin" @@ -15039,7 +15064,7 @@ msgstr "Eklenti" msgid "Author" msgstr "Hazırlayan" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "etkisizleştirildi" @@ -15195,7 +15220,7 @@ msgstr "Ayrıştırıcı:" msgid "Comment:" msgstr "Açıklama:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Yen.düzenleme için sürükleyin" @@ -15232,27 +15257,27 @@ msgstr "" msgid "Foreign key constraint" msgstr "Dış anahtar kısıtlaması" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Kısıtlama ekle" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "İç ilişkiler" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "İç ilişki" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Karşılık gelen bir FOREIGN KEY ilişkisi varken iç ilişki mümkün değildir." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Görüntülemek için sütun seçin:" @@ -15305,11 +15330,11 @@ msgstr "Orijinal satır" msgid "Replaced string" msgstr "Değiştirilmiş satır" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Değiştir" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "İlave arama kriteri" @@ -15378,7 +15403,7 @@ msgid "at beginning of table" msgstr "tablonun başı" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Bölümler" @@ -15402,24 +15427,24 @@ msgstr "Veri uzunluğu" msgid "Index length" msgstr "İndeks uzunluğu" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Bölüm tablosu" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Bölümlemeyi düzenle" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Düzenleme görünümü" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Alan kullanımı" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Etkili" @@ -15444,31 +15469,31 @@ msgstr "Tablo yapısını iyileştir" msgid "Track view" msgstr "İzleme görünümü" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Satır istatistikleri" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "sabit" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "değişken" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "bölüme ayrıldı" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Satır uzunluğu" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Satır boyutu" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Sonraki otoindeks" @@ -15481,44 +15506,44 @@ msgstr "%s sütunu kaldırıldı." msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Tema" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Daha fazla tema al!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Mevcut MIME türleri" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Mevcut tarayıcı görüntüleme dönüşümleri" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Mevcut girdi dönüşümleri" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Açıklama" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Sizi hedef siteye götürüyor." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada bulunmak için yeterli yetkilere sahip değilsiniz!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil güncellendi." -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "Parola çok uzun!" @@ -15586,8 +15611,12 @@ msgid "Unexpected end of CASE expression" msgstr "Beklenmedik Büyük/Küçük harf ifadesi sonu" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Bir sembol adı beklenmekte! Ayrılmış bir anahtar kelime ters eğik tırnakları " @@ -15610,17 +15639,17 @@ msgid "Unrecognized data type." msgstr "Tanınmayan veri türü." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Bir kodadı beklenmekte." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Bir kodadı daha önce bulundu." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Beklenmedik nokta." @@ -15672,24 +15701,24 @@ msgstr "Sınırlayıcıdan önce beklenen boşluk(lar)." msgid "Expected delimiter." msgstr "Beklenen sınırlayıcı." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Sonlandırma tırnak işareti %1$s beklenmekte." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Değişken adı beklenmekte." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Beklenmedik ifade başlangıcı." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Tanınmayan ifade türü." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Daha önce hiç işlem başlatılmadı." @@ -15706,10 +15735,16 @@ msgstr "Beklenmedik belirteç." msgid "This type of clause was previously parsed." msgstr "Bu tür yan tümce daha önce ayrıştırıldı." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Tanınmayan anahtar kelime." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Beklenmedik ifade başlangıcı." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Varlığın adı beklenmekte." @@ -15746,7 +15781,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "kesin hata" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "Görünüm adı boş olamaz" @@ -17017,6 +17052,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Yerel MySQL Kimlik Doğrulaması" + #~ msgid "Try to connect without password." #~ msgstr "Parolasız bağlanmayı dener." diff --git a/po/tt.po b/po/tt.po index 3ca91272e0..c59b12da3e 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Üzençälek" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" öçen töp açqıç qorıldı" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Üzgärt" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2114,536 +2120,536 @@ msgstr "" msgid "End of step" msgstr "Tüşämä azağına" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy msgid "Done" msgstr "Eçtälek" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Biremlek saylanmağan." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Biremlek saylanmağan." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Saqla" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Hide search criteria" msgstr "SQL-soraw" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Ezläw" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Alan iseme" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Alan iseme" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy msgid "Maximum value:" msgstr "Biremleklär yuq" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-soraw" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-soraw" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Add/Delete Field Columns" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer olılığı" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Yul ara bilgese" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Yaña qullanuçı östäw" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Yul ara bilgese" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kürsätäse Alan saylaw" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bitneñ sanı:" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Tüşämä Saylaw" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Tüşämä Saylaw" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Buş bit sanı" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Tüşämä Saylaw" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Tözätü öçen berär bit sayla" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Bäyläneşlär sxeme" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Alannar sanı" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Künder" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Alan iseme" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Barısın kürsät" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Tärtip buyınça urın" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Özderelde" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy msgid "Import status" msgstr "Biremdän alu" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Tüşämä Saylaw" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Bastır" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy msgid "Go to link:" msgstr "Biremleklär yuq" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Alan iseme" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barısın kürsät" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Tezeşlär" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sırlı kürsät" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy msgid "Link with main panel" msgstr "Biremlek saqlaw köyläneşe" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy msgid "Unlink from main panel" msgstr "Biremlek saqlaw köyläneşe" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2651,123 +2657,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy msgid "Send error report" msgstr "Server ID'e" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy msgid "Submit error report" msgstr "Server ID'e" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Açıq tüşämä tezmäse" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Qarama" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Bu sorawnı qabat kürsätäse" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-soraw" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tüşämä açıqlaması" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy msgid "Hide arguments" msgstr "SQL-soraw" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2776,38 +2782,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Biremlekne boña kübäyt" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Uzğan" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2815,96 +2841,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "May" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2912,78 +2938,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dek" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2991,225 +3017,225 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Buş" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekund sayın" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Bu mätennän" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Xata" @@ -3271,20 +3297,20 @@ msgid "Charset" msgstr "Bilgelämä" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Tezü cayı" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Binar" @@ -3480,7 +3506,7 @@ msgid "Czech-Slovak" msgstr "Çex-Slovak" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "belgesez" @@ -3533,30 +3559,30 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Ezläw" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy msgid "SQL Query Console" msgstr "SQL-soraw" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3564,27 +3590,27 @@ msgid "" "configured)." msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Bu server endäşmi" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "MySQL connection collation" msgid "Missing connection parameters!" msgstr "MySQL-totaşunıñ tezü cayı" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3696,127 +3722,121 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "%s biremlegenä SQL-soraw:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Sorawnı Yulla" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Ezläw" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Ezläw" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Ezläw" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Bitbilge kürsätü" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "Ezläw" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "berärse bulsa" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "barısı da bulsa" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "tulı tezmä, tögäl kileş" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "regexp kileş" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" ezläw näticäse %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Tulayım: %s kileşü" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Küzätü" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Tüşämä eçtälegen çığaru" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Biremlektä ezläw" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Ezläw:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Kiläse tüşämä eçendä:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Saylanunı Töşer" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -3844,16 +3864,16 @@ msgstr "Alan" msgid "Search this table" msgstr "Biremlektä ezläw" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Başlawğa" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3862,8 +3882,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Uzğan" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3872,8 +3892,8 @@ msgctxt "Next page" msgid "Next" msgstr "Kiläse" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3884,7 +3904,7 @@ msgstr "Azaq" msgid "All" msgstr "Barısı" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -3895,8 +3915,8 @@ msgstr "Alannar sanı" msgid "Sort by key" msgstr "Qullanası tezeş" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3918,10 +3938,10 @@ msgstr "Qullanası tezeş" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 #, fuzzy msgid "Options" msgstr "Eşkärtü" @@ -3971,111 +3991,111 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Bu yazma salınğan buldı" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Üter" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Törle buluı bar. [doc@faq3-11]YBS 3.11[/doc] qarísı" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "SQL-sorawıñ uñışlı eşkärtelde" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Yazma sanı" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "tulayım" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Saylanğannı:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Saylap Beter" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Bäyläneş tabılmadı" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4083,7 +4103,7 @@ msgid "None" msgstr "Buş" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4091,106 +4111,106 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Yökläw" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Üzennän tözälü ısulı" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Birem uqıp bulmadı" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Söreme turında" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Yaña phpMyAdmin-täräzä açu" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Bastıru küreneşe" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -4199,20 +4219,20 @@ msgid "No index defined!" msgstr "Açqıç bilgelänmäde!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Tezeşlär" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4222,31 +4242,31 @@ msgstr "Tezeşlär" msgid "Action" msgstr "Eş" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Tezeş adı" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Qabatlanu sanı" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 @@ -4254,47 +4274,47 @@ msgstr "Qabatlanu sanı" msgid "Comment" msgstr "Açıqlama" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Töp açqıç beterelde." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "\"%s\" digän tezeş salındı." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Beter" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Bitneñ sanı:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4318,11 +4338,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4341,14 +4361,15 @@ msgid "View" msgstr "Qaraş" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4357,8 +4378,8 @@ msgid "Table" msgstr "Tüşämä" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4366,45 +4387,45 @@ msgstr "Tüşämä" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Ezläw" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Östäw" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Xoquqlar" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Eşkärtü" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4420,16 +4441,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Soraw" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4438,22 +4459,22 @@ msgstr "" msgid "Events" msgstr "Cibärelde" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Add/Delete Field Columns" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Biremleklär" @@ -4464,12 +4485,12 @@ msgid "User accounts" msgstr "Qullanuçı" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binar köndälek" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4477,33 +4498,33 @@ msgid "Replication" msgstr "Bäyläneşlär" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Engine" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row deleted." @@ -4511,7 +4532,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "Kertemnär sayladı" msgstr[1] "Kertemnär sayladı" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "No rows selected" msgid "%1$d row inserted." @@ -4577,29 +4598,29 @@ msgstr "Üzgärmälär" msgid "Favorites" msgstr "Üzgärmälär" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "\"%s\" atlı qullanuçı bar inde!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy #| msgid "Allows reading data." msgid "Error while loading the search." @@ -4664,7 +4685,7 @@ msgstr "Açıq tüşämä tezmäse" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4719,87 +4740,87 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "totıla" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Bu saqlaw engine öçen xälät turında centekle belem yuq." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Bu MySQL serverdä %s bar." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Bu MySQL serverdä %s sünderelgän bulğan." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s saqlaw enginen totmí." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show tables" msgid "Unknown table status:" msgstr "Tüşämälär kürsätäse" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Biremlektä ezläw: " -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "%s digän tışlaw tabılmadı!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Yaraqsız biremlek" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Tüşämä adı yaraqsız" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "\"%s\" tüşämäse \"%s\" itep ataldı" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4807,19 +4828,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Bu töp açqıçnıñ adı \"PRIMARY\" bulırğa tieş!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Açqıçnı \"PRIMARY\" itep atap bulmí!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5091,7 +5112,7 @@ msgid "Date and time" msgstr "Yaña tezeş yaratu" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5110,70 +5131,70 @@ msgstr "Tulayım" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL qaytarışı: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Kodısız" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Sorawnı Yulla" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-Kod yasa" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Yañart" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5181,65 +5202,65 @@ msgid "Edit inline" msgstr "Bastıru küreneşe" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Ykş" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s kön, %s säğät, %s minut ta %s sekund" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" biremlegenä küç." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy msgid "There are no files to upload!" msgstr "Tüşämä tikşerü" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Buşat" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5255,7 +5276,7 @@ msgstr "minut sayın" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "säğät sayın" @@ -5263,14 +5284,14 @@ msgstr "säğät sayın" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Ezläw" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5278,7 +5299,7 @@ msgstr "Ezläw" msgid "Description" msgstr "Açıqlama" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Bu bäyä belän" @@ -5319,22 +5340,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Adı" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Ozınlıq/Bäyä*" @@ -5345,7 +5366,7 @@ msgstr "Ozınlıq/Bäyä*" msgid "Attribute" msgstr "Üzençälek" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5368,13 +5389,13 @@ msgstr "%s alan östäw" msgid "Select a column." msgstr "Add/Delete Field Columns" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add %s field(s)" msgid "Add new column" msgstr "%s alan östäw" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5382,7 +5403,7 @@ msgstr "%s alan östäw" msgid "Attributes" msgstr "Üzençälek" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5391,28 +5412,28 @@ msgstr "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause breaking of some data!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5420,20 +5441,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5993,7 +6014,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -6108,13 +6129,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Cömlä" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Biremgä saqlıysı" @@ -6125,7 +6146,7 @@ msgstr "Şul biremneñ bilgelämäse:" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Tözeleş" @@ -6271,7 +6292,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Birem bar bulsa, östän yazdırası" @@ -6287,7 +6308,7 @@ msgid "Remember file name template" msgstr "Birem adınıñ tözeleşe" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" @@ -6298,7 +6319,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Tüşämä/alan isemnären kirequote eçenä salası" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" @@ -6330,7 +6351,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "%s östäw" @@ -6514,7 +6535,7 @@ msgid "Customize the navigation tree." msgstr "Biremlek saqlaw köyläneşe" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serverlär" @@ -7441,7 +7462,7 @@ msgstr "" msgid "Authentication method to use." msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -8133,7 +8154,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8141,10 +8162,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8290,25 +8311,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Qullanma" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "\"%s\" atlı tüşämä buşatıldı." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8323,12 +8344,12 @@ msgid "Position" msgstr "Urın" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Buldıq töre" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server ID'e" @@ -8337,7 +8358,7 @@ msgid "Original position" msgstr "Tärtip buyınça urın" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Beleşmä" @@ -8351,42 +8372,42 @@ msgstr "Sorawnı Qısqartıp Kürsätäse" msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Biremleklär yuq" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" biremlegen beterü uñışlı uzdı." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Kerem" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Tulayım" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Overhead" @@ -8416,35 +8437,35 @@ msgstr "" msgid "Enable statistics" msgstr "Nöfüsne Cibärü" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Server üzgärmäläre & köyläneşe" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Biremleklär yuq" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." @@ -8498,7 +8519,7 @@ msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -8517,12 +8538,12 @@ msgstr "Üzgärt" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Tezeş" @@ -8544,13 +8565,13 @@ msgstr "Tulımäten" msgid "Distinct values" msgstr "Browse foreign values" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Üzgäreşsez" @@ -8572,202 +8593,206 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Sersüzsez" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Sersüz:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Qabatla" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Sersüz Hash'law" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Allows locking tables for the current thread." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "%s biremlegendä yaña tüşämä yaratu" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "%s biremlegendä yaña tüşämä yaratu" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy msgid "Export templates:" msgstr "Çığaru ısulı" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Birem adınıñ tözeleşe" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy msgid "Template name" msgstr "tüşämä adı" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Yarat" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Birem adınıñ tözeleşe" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "%s tüşämä" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Update Query" msgid "Update" msgstr "Sorawnı Yañart" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Tüşämä Saylaw" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Çığaru ısulı" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 #, fuzzy msgid "Custom - display all possible options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Biremleklär" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Tüşämä" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Tözeleş" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Transformation options" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy msgid "Encoding Conversion:" msgstr "MySQL belän totaştırğıç söreme" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Kerem" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Serverneñ \"%s\" törgägendä saqla" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Birem adınıñ tözeleşe" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8775,125 +8800,125 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Şul biremneñ bilgelämäse:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Qısu" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "\"ziple\"" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "\"gziple\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Biremgä saqlıysı" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "%s biremlegendä yaña tüşämä yaratu" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "yatqırıp (başlıqlar almaşıp)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Biremgä saqlıysı" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Tüşämä Saylaw" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Tüşämä Saylaw" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "biremlek adı" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Berär genä dä tüşämä yuq" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Alan iseme" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Alan iseme" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 #, fuzzy msgid "Could not load export plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Server söreme" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Server söreme" @@ -9318,13 +9343,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" biremen saqlaw öçen buş ara citmi." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9332,76 +9357,76 @@ msgstr "" "Serverdä %s digän birem bar inde, adın almaştırası, yä inde östän yazu " "tamğasın açası qala." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tözeleşen genä" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Çığaru ısulı" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9413,84 +9438,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "%s alannan tezeş yaratu" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funksí" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Because of its length,
this field might not be editable" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Yä" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Östäw" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr ", şunnan soñ" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9500,8 +9526,8 @@ msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9512,32 +9538,32 @@ msgstr "" msgid "Value" msgstr "Bäyä" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Tözeleşen genä" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Eçtälegen genä" @@ -9548,14 +9574,14 @@ msgid "Add AUTO INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Çikläwlär östise" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9613,8 +9639,8 @@ msgstr "Proseslar" msgid "Views:" msgstr "Qaraş" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Kürsät" @@ -9658,19 +9684,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Biremgä saqlıysı" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9686,7 +9712,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9709,7 +9735,7 @@ msgstr "" msgid "Database operations" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -9815,13 +9841,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Add/Delete Field Columns" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10075,8 +10101,8 @@ msgid "Rename database to" msgstr "Biremlekne bolay atap quy" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10127,83 +10153,83 @@ msgstr "(sıñar)" msgid "Move table to (database.table)" msgstr "Boña küçerü (biremlek.tüşämä)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Tüşämä adın üzgärtü" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tüşämä köyläneşe" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Saqlaw Isulı" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Boña kübäyt (biremlek.tüşämä)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Kübäytelgän tüşämägä küçäse" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Tüşämä tikşerü" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Tüşämä tikşerü" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "\"%s\" atlı tüşämä awdarıldı." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tüşäwne awdar (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Tüşämä tözätü" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10211,106 +10237,106 @@ msgstr "Tüşämä tözätü" msgid "Delete data or table" msgstr "Tüşämä eçtälegen çığaru" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy msgid "Delete the table (DROP)" msgstr "Biremleklär yuq" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 #, fuzzy msgid "Check" msgstr "Çexçä" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy msgid "Coalesce" msgstr "Berär genä dä tüşämä yuq" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 #, fuzzy msgid "Partition maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Ber ük at belän tüşämä küçerep bulmí!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tüşämä adı kertelmi qaldı!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10339,25 +10365,25 @@ msgstr "Tösle kürsät" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Totaşa almím: yaraqsız köyläwlär." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s siña İsäñme di" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10369,7 +10395,7 @@ msgstr "" "sersüzlär tikäserep, alarnı MySQL idäräçese birgän mäğlümät belän çağıştırıp " "qarísı qala." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10396,15 +10422,15 @@ msgstr "Atama:" msgid "Server Choice:" msgstr "Server Saylaw" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10480,7 +10506,7 @@ msgstr "Biremlek saqlaw köyläneşe" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" @@ -10489,7 +10515,7 @@ msgstr "Tüşämä eçtälegen çığaru" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 #, fuzzy msgid "Event" msgstr "Cibärelde" @@ -10498,8 +10524,8 @@ msgstr "Cibärelde" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10605,7 +10631,7 @@ msgstr "Berençe yulda alannarnıñ iseme çığarası" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11175,7 +11201,7 @@ msgstr "Eçtälek isemlege" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Östämä" @@ -11582,57 +11608,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "Açıqlamasız" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11641,316 +11667,316 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Please select databases:" msgstr "Berär biremlek saylísı" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "Totaşular" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 #, fuzzy msgid "Full start" msgstr "Tulımäten" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 #, fuzzy msgid "Full stop" msgstr "Tulımäten" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tözeleşen genä" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tözeleşen genä" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "İreşü iseme" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "İreşü iseme" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Sersüz" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy msgid "Port:" msgstr "Tezü" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Üzgärmä" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Host" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Cirle" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Törle qullanuçı" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Bu mätennän" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Qabatla" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Sersüz Ürçetü" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy msgid "Replication started successfully." msgstr "Bäyläneşlär" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy msgid "Replication resetting successfully." msgstr "Bäyläneşlär" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Xata" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11972,7 +11998,7 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Event %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11982,87 +12008,87 @@ msgstr "" msgid "Edit event" msgstr "Cibärelde" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Buldıq töre" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Üzgärt" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Tamğalanğan soraw cibärü" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Torış" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Azaq" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Tulayım östise" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Tüşämä adı yaraqsız" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -12085,7 +12111,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Table options" msgid "Returns" @@ -12099,149 +12125,149 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Alan iseme" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Yasalışı" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Biremlekne bolay atap quy" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Ozınlıq/Bäyä*" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tüşämä köyläneşe" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Soraw töre" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Tüşämä adı yaraqsız" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Eçke funksílar eşlätterergä birä." -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12265,44 +12291,44 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Edit trigger" msgstr "Yaña qullanuçı östäw" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "server adı" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Waqıt" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Tüşämä adı yaraqsız" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Tüşämä adı yaraqsız" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Tüşämä adı yaraqsız" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Tüşämä adı yaraqsız" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12441,90 +12467,90 @@ msgstr "Bilgelämä & Tezü cayı" msgid "Databases statistics" msgstr "Biremlek nöfüsläre" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Xoquqlar yuq." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12534,532 +12560,483 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Buş" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Connections" msgid "Does not require SSL-encrypted connections." msgstr "Totaşular" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Connections" msgid "Requires SSL-encrypted connections." msgstr "Totaşular" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Resurs çikläwläre" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add %s field(s)" msgid "Routine" msgstr "%s alan östäw" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy msgid "Allows altering and dropping this routine." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Eçke funksílar eşlätterergä birä." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "Beläse: MySQL'da xoquq adı İnglizçä kertelä" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "İdärä" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Töp xoquq" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "ğömümi" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Qullanma" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Sersüz üzgärtü" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Documentation" -msgid "Native MySQL Authentication" -msgstr "Qullanma" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Kereş Turında" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "İreşü iseme" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Köndälek adı" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Qullanma" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Sersüz Hash'law" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Törle qullanuçı" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Qullanuçı biremlege" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format msgid "Grant all privileges on database %s." msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Xoquq" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Törle" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "ğömümi" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "almaşbilge" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Töşer" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Kiläse yazma üzgärtü" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Saylanğan qullanuçı beterü" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Qullanuçı xoquqların awdarıp beteräse." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Xoquqlar" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Qullanuçı" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Qullanuçı" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Qullanuçılar tezmäse" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13072,7 +13049,7 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13091,11 +13068,11 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." @@ -13395,13 +13372,13 @@ msgstr "Ämer" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Alan" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -13430,12 +13407,12 @@ msgstr "minut sayın" msgid "per second:" msgstr "sekund sayın" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Cömlä" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13467,34 +13444,34 @@ msgstr "Açıq tüşämä tezmäse" msgid "Related links:" msgstr "Bäyläneşlär" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13502,78 +13479,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13581,7 +13558,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13589,43 +13566,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13633,33 +13610,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13668,92 +13645,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13762,161 +13739,161 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Yöklänğan birem tözeleşe" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13924,99 +13901,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14024,18 +14001,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14043,13 +14020,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Tezeş alxätere" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." @@ -14087,49 +14064,49 @@ msgstr "Qullanuçı biremlege" msgid "Table level tabs" msgstr "tüşämä adı" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Qaraş" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Törle qullanuçı" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Xoquqlar yuq." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Alan iseme" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Server söreme" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Qullanuçı biremlege" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14240,7 +14217,7 @@ msgstr "%s biremlegendä eşlätäse SQL-soraw" msgid "Run SQL query/queries on table %s" msgstr "%s biremlegendä eşlätäse SQL-soraw" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 #, fuzzy msgid "Clear" @@ -14332,107 +14309,107 @@ msgstr "" msgid "Version" msgstr "Farsíça" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 #, fuzzy msgid "Created" msgstr "Yarat" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy msgid "Delete version" msgstr "Server söreme" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Eçtälek östäw/almaştıru xoquqı." -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Biremleklär yuq" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, fuzzy, php-format msgid "Export as %s" msgstr "Çığaru ısulı" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 #, fuzzy msgid "Date" msgstr "Eçtälek" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 #, fuzzy msgid "Username" msgstr "Atama:" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14440,81 +14417,81 @@ msgctxt "None for default" msgid "None" msgstr "Buş" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Server söreme" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 #, fuzzy msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 #, fuzzy msgid "Tracked tables" msgstr "Tüşämä tikşerü" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 #, fuzzy msgid "Last version" msgstr "Server söreme" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Eçtälek östäw/almaştıru xoquqı." -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 #, fuzzy msgid "Versions" msgstr "Farsíça" @@ -14525,7 +14502,7 @@ msgstr "Farsíça" msgid "Manage your settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14553,7 +14530,7 @@ msgstr "ZIP-tuplama eçendä xata:" msgid "No files found inside ZIP archive!" msgstr "ZIP-tuplama eçendä biremnär tabılmadı!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14561,86 +14538,86 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin qullanması" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Biremdän alu" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Biremgä saqlıysı" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14648,45 +14625,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Xoquqsız" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "%s cebe uñışlı üterelgän buldı." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14694,103 +14671,102 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Üzgärtülär saqlandı" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "Üzgärtülär saqlandı" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 #, fuzzy msgid "Load" msgstr "Cirle" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 #, fuzzy msgid "phpMyAdmin homepage" msgstr "phpMyAdmin qullanması" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 #, fuzzy msgid "Donate" msgstr "Eçtälek" @@ -14829,28 +14805,28 @@ msgstr "" msgid "Show form" msgstr "Tösle kürsät" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14865,12 +14841,12 @@ msgstr "Biremleklär yuq" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "%s atlı tüşämä bar inde!" @@ -14883,35 +14859,35 @@ msgstr "Tüşämä eçtälegen (tözeleşen) çığaru" msgid "Invalid table name" msgstr "Tüşämä adı yaraqsız" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Kertemnär sayladı" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Kertemnär sayladı" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15137,7 +15113,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -15163,7 +15139,7 @@ msgstr "" "\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Information" msgid "Input transformation" @@ -15699,17 +15675,17 @@ msgid "Size" msgstr "Küläme" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Yasalışı" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Soñğı yañartılu" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Soñğı tikşerü" @@ -15744,6 +15720,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Allows inserting and replacing data." +msgid "Delete settings " +msgstr "Eçtälek östäw/almaştıru xoquqı." + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -15767,10 +15749,47 @@ msgstr "Kiläse tüşämä öçen xoquqlar östäw" msgid "Add privileges on the following table:" msgstr "Kiläse tüşämä öçen xoquqlar östäw" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Buş" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Saylanğan qullanuçı beterü" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Qullanuçı xoquqların awdarıp beteräse." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Resurs çikläwläre" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" @@ -15806,7 +15825,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15996,7 +16015,7 @@ msgstr "Qullanuçı" msgid "Comment:" msgstr "Açıqlama" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16032,30 +16051,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Çikläwlär östise" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Eçke bäyläneş" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Eçke bäyläneş" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16121,12 +16140,12 @@ msgstr "Tärtip buyınça urın" msgid "Replaced string" msgstr "Bäyläneşlär" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy msgid "Replace" msgstr "Bäyläneşlär" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy msgid "Additional search criteria" msgstr "SQL-soraw" @@ -16214,7 +16233,7 @@ msgid "at beginning of table" msgstr "Tüşämä Başına" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16246,30 +16265,30 @@ msgstr "Kerem ozınlığı" msgid "Index length" msgstr "Kerem ozınlığı" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Position" msgid "Partition table" msgstr "Urın" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Print view" msgid "Edit partitioning" msgstr "Bastıru küreneşe" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Bastıru küreneşe" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Totılğan Alan" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Uñışlı" @@ -16299,33 +16318,33 @@ msgstr "Tüşämä tözeleşenä küzätü" msgid "Track view" msgstr "Tüşämä tikşerü" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Kerem Nöfüse" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "üzgärüçän" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Kerem ozınlığı" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Kerem olılığı" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16339,52 +16358,52 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Barlıq MIME-törlär" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Browser transformation" msgid "Available browser display transformations" msgstr "Browser transformation" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Browser transformation" msgid "Available input transformations" msgstr "Browser transformation" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Açıqlama" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Change" msgid "Taking you to the target site." msgstr "Üzgärt" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -16456,7 +16475,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16480,19 +16499,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Biremlek saylanmağan." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16552,27 +16571,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format msgid "Ending quote %1$s was expected." msgstr "\"%s\" atlı tüşämä beterelde" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy msgid "Variable name was expected." msgstr "Birem adınıñ tözeleşe" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tüşämä Başına" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16589,10 +16608,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Tüşämä Başına" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16638,7 +16663,7 @@ msgstr "" msgid "strict error" msgstr "Soraw töre" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17822,6 +17847,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Documentation" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Qullanma" + #, fuzzy #~| msgid "Do not change the password" #~ msgid "Try to connect without password." diff --git a/po/ug.po b/po/ug.po index 684dd252ea..13491e0fcc 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "(continued)" msgid "Continue" msgstr "داۋاملاشتۇرلىدىغان" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ئىزلاش خاتىرىسى" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "تامام" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ئىزدەش" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Columns terminated by" msgid "Column maximum:" msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Columns terminated by" msgid "Column minimum:" msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "SQL query" msgid "Hide find and replace criteria" msgstr "SQL سورىقى" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "SQL query" msgid "Show find and replace criteria" msgstr "SQL سورىقى" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Inner ring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "ھەممىنى تاللاش" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "ھەممىنى تاللاش" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "ئاق(قۇرۇق)بەت" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "ھەممىنى تاللاش" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Display PDF schema" msgid "Export relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of columns" msgid "Add an option for column \"%s\"." msgstr "سۆزلەم سانى" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Columns terminated by" msgid "Double-click to copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "بىكار قىلىش" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "كىرگۈزۈش" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ھەممىنى تاللاش" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "يازدۇر" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Columns terminated by" msgid "Copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "تېزىسلار" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Indexes" msgid "Show hidden navigation tree items." msgstr "تېزىسلار" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "تېزىسلار" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "تېزىسلار" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2629,122 +2635,122 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "up to date" msgstr "%s جەدۋەل" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "دوكلات تېمىسى" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Select All" msgid "Execute this query again?" msgstr "ھەممىنى تاللاش" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جەدۋەل ئىزاھى" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2753,36 +2759,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "كۆچۈرۈلگەن ساندان" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Repair table" msgid "Add table prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Repair table" msgid "Replace table with prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "ئالدىنقى ئاي" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2790,149 +2816,149 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "ھۇت" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "نورۇز" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "باھار" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "6-ئاي" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "7-ئاي" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "8-ئاي" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "9-ئاي" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "10-ئاي" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "11-ئاي" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2940,205 +2966,205 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "ھەپتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "يوق" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "سائەت" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "سېكنۇت" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "خاتالىق" @@ -3200,20 +3226,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "تاسقاش" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3410,7 +3436,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3458,31 +3484,31 @@ msgstr "" msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "ئىزدەش" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL سورىقى" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Failed to set configured collation connection!" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3490,27 +3516,27 @@ msgid "" "configured)." msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "مۇلازىمىتېردا ئىنكاس يوق" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "تەپسىلاتلار…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "دائىملىق" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى." @@ -3618,73 +3644,73 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "تاپشۇرۇش" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "ئىزدەش" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "ئىزدەش" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "ئىزدەش" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "ئىزدەش" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "سۆزلەردىن ئەڭ ئازدىن بىرى" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "بارلىق سۆزلەر" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "ئېنىق ماسلىق" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "مۇنتىزىم ئىپادە" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" نىڭ ئىزلەش نەتىجىسى %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "جەمئىي: %s ئوخشاشلىق" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3692,53 +3718,47 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "كۆزەت" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Delete tracking data for this table" -msgid "Delete the matches for the %s table?" -msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "سانداندىن ئىزدەش" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "ئىزدەشكە تىگىشلىك خەت ياكى قىقىممىتى(دەرىجىسى:«%»" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "تاپقىنى:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "ھەر بىر تاق سۆزنى (\" \") بەلگىسى ئارقىلىق ئايرىڭ." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "تاللاشنى قالدۇرۇش" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" @@ -3764,16 +3784,16 @@ msgstr "تۈرلەش" msgid "Search this table" msgstr "سانداندىن ئىزدەش" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "باشلا" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3782,8 +3802,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "ئالدىنقىسى" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3792,8 +3812,8 @@ msgctxt "Next page" msgid "Next" msgstr "كىيىنكى ئاي" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3804,7 +3824,7 @@ msgstr "ئاخىرقىسى" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of columns" @@ -3815,8 +3835,8 @@ msgstr "سۆزلەم سانى" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3838,10 +3858,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3885,115 +3905,115 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The bookmark has been deleted." msgid "The row has been deleted." msgstr "خەتكۈچ ئۆچۈرۈلدى." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[/doc] غا قاراڭ." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ئۇمۇمىي" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "تاللانغىنى:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "ھەممىنى تاللاش" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "ئۇلىنىشنى تاپالمىدى" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4001,105 +4021,105 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "كىرگۈزۈش" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن " "ئېشىپ كەتتى." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "ھۆججەتنى ئوقۇيالمىدى" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[/doc] غا قاراڭ." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4110,20 +4130,20 @@ msgid "No index defined!" msgstr "index قىممىتى بەلگىلەنمىگەن!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "تېزىسلار" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4133,78 +4153,78 @@ msgstr "تېزىسلار" msgid "Action" msgstr "ئامال" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "قىممەت ئىسمى" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "تۈپ سان" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "ئىزاھات" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "ئۆچۈرۈلگەن تېزىسلار %s." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "ئۆچۈرۈش" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "بەت نومۇرى:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "تىلى" @@ -4228,11 +4248,11 @@ msgstr "مۇلازىمىتېر" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4251,14 +4271,15 @@ msgid "View" msgstr "قاراش" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4267,8 +4288,8 @@ msgid "Table" msgstr "جەدۋەل" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4276,45 +4297,45 @@ msgstr "جەدۋەل" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "ئىزدەش" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "ھۇقۇقى" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "ئىز قۇغلاش" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4330,16 +4351,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "تەكشۈرۈش" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "دائىملىق" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4347,22 +4368,22 @@ msgstr "دائىملىق" msgid "Events" msgstr "ھادىسە" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "لايىھەلىگۈچ" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "ساندان" @@ -4371,51 +4392,51 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "كۆچۈرۈش" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4480,29 +4501,29 @@ msgstr "ئىزلانغان جەدۋەل" msgid "Favorites" msgstr "ئىزلانغان جەدۋەل" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "Error: relation already exists." msgid "An entry with this name already exists." msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." @@ -4565,7 +4586,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4619,87 +4640,87 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "مىنۇت" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show dimension of tables" msgid "Unknown table status:" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "تېما %s تېپىلمىدى!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "ئۈنۈمسىز ساندان" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى." -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not save table UI preferences!" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4707,19 +4728,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4990,7 +5011,7 @@ msgid "Date and time" msgstr "نەشىرنى قۇىماق" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5009,70 +5030,70 @@ msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" msgid "Max: %s%s" msgstr "ئەڭ چوڭ:%s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL جاۋابى: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL ئىزاھى" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL ئىزاھىىدىن ئاتلاش" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP كودى يوق" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "تاپشۇرۇش" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP كودى قۇرۇش" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "يېڭلاش" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5080,68 +5101,68 @@ msgid "Edit inline" msgstr "بېسىپ كۆرسىتىش" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "يەكشەنبە" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "دائىملىق" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "ساندان \"%s\" .غا ئۆتۈش." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "Tracked tables" msgid "There are no files to upload!" msgstr "ئىزلانغان جەدۋەل" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "تازىلاش" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -5155,7 +5176,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -5163,14 +5184,14 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "ئىزدەش" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5178,7 +5199,7 @@ msgstr "ئىزدەش" msgid "Description" msgstr "ئىزاھات" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" @@ -5219,22 +5240,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "ئىسمى" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -5243,7 +5264,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5264,13 +5285,13 @@ msgstr "" msgid "Select a column." msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add/Delete columns" msgid "Add new column" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5278,34 +5299,34 @@ msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "مۇلازىمىتېر" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5313,20 +5334,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5881,7 +5902,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5987,13 +6008,13 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "مەجبۇرى قوشۇش" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "ھۆججەتنى باشقا ساقلاش" @@ -6003,7 +6024,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "فورماتلاش" @@ -6145,7 +6166,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "مەۋجۇت ھۆججەت ئۈستىدىن يېزىش" @@ -6160,7 +6181,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" @@ -6169,7 +6190,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" @@ -6201,7 +6222,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" @@ -6381,7 +6402,7 @@ msgid "Customize the navigation tree." msgstr "تېزىسلار" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -7266,7 +7287,7 @@ msgstr "" msgid "Authentication method to use." msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7931,7 +7952,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7939,10 +7960,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8093,25 +8114,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenOffice ھۆججىتى" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "%s جەدۋەل تازىلاندى" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8126,12 +8147,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -8140,7 +8161,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -8154,42 +8175,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "ساندان %s ئۆچۈرۈلدى." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "سەپ سانى" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "يىغىندىسى" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "ئېغىر يۈك" @@ -8216,35 +8237,35 @@ msgstr "" msgid "Enable statistics" msgstr "ئىزدەش" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "Choose column to display" msgid "No data to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8296,7 +8317,7 @@ msgstr "ساندان %s ئۆچۈرۈلدى." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Query" msgid "Query error" @@ -8316,12 +8337,12 @@ msgstr "ئۆزگەرتتىش" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -8344,13 +8365,13 @@ msgstr "" msgid "Distinct values" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8372,201 +8393,205 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "پارول يوق" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "شىفىر" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "قايتا كىرگۈزىش" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "پارول ھېسابلاش" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Exporting databases from the current server" msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export" msgid "Export templates:" msgstr "چىقىرىش" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "ھۆججەت ئېتى ئەندىزىسى" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Keyname" msgid "Template name" msgstr "قىممەت ئىسمى" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "قۇرۇش" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "ھۆججەت ئېتى ئەندىزىسى" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s جەدۋەل" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "يېڭلاش" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "ھەممىنى تاللاش" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export" msgid "Export method:" msgstr "چىقىرىش" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "ساندان" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Table" msgid "Tables:" msgstr "جەدۋەل" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "فورماتلاش" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "سەپ سانى" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "مۇلازىمىتېرنىڭ %s مۇندەرىجىسىدە ساقلاش" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "ھۆججەت ئېتى ئەندىزىسى" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8574,125 +8599,125 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "ھۆججەتنىڭ ھەرىپ-بەلگە توپلىمى" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "پىرىسلاش" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "zipپىرىسلاش" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "gzipپىرىسلاش" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "ھۆججەتنى باشقا ساقلاش" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Create table on database %s" msgid "Export databases as separate files" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export" msgid "Export tables as separate files" msgstr "چىقىرىش" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "ھۆججەتنى باشقا ساقلاش" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "ھەممىنى تاللاش" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "ھەممىنى تاللاش" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "ساندان ئىسمى" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "Keyname" msgid "New table name" msgstr "قىممەت ئىسمى" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Columns terminated by" msgid "Old column name" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Columns terminated by" msgid "New column name" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "نەشىرنى قۇىماق" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -9104,13 +9129,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "ھۆججەتنى ساقلاشقا يىتەرلىك بوشلۇق يوق %s。" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9118,76 +9143,76 @@ msgstr "" "%s بۇ ھۆججەت مۇلازىمىتېردا باركەن، ھۆججەت ئىسمىنى ئۆزگەرتىڭ ياكى قاپلاپ " "كۆچۈرۈش تۈرىنى تالالڭ." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "بۇ %s ھۆججەتنى مۇلازىمىتېردا ساقلاش ھوقۇقىڭىز يېتەرسىز." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ھۆججىتىدە ساقلاندى." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Go to database: %s" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "تۈزىلىشىنىلا" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9198,88 +9223,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ياكى" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "قىستۇرۇش" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "كېيىن" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9290,31 +9316,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "تۈزىلىشىنىلا" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "ئۇچۇرنىلا" @@ -9325,14 +9351,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Privileges" @@ -9391,8 +9417,8 @@ msgstr "" msgid "Views:" msgstr "قاراش" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "كۆرسىتىش" @@ -9438,19 +9464,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "ھۆججەتنى باشقا ساقلاش" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9466,7 +9492,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9487,7 +9513,7 @@ msgstr "" msgid "Database operations" msgstr "ساندان ئىزاھاتى:" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Indexes" msgid "Show hidden items" @@ -9590,13 +9616,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete columns" msgid "Select one…" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete columns" msgid "No such column" @@ -9848,8 +9874,8 @@ msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9895,81 +9921,81 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "جەدۋەل ئىزاھى" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "جەدۋەل تەكشۈرۈش" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "جەدۋەل تەكشۈرۈش" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "جەدۋەلنى ئەلالاش" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "جەدۋەلنى ئوڭشاش" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -9977,103 +10003,103 @@ msgstr "جەدۋەلنى ئوڭشاش" msgid "Delete data or table" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the table (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10100,25 +10126,25 @@ msgstr "رەڭنى كۆرسىتىش" msgid "Only show keys" msgstr "پەقەت كونوپكىنى كورسىتىش" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s خۇش كەلدىڭىز" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10126,7 +10152,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10153,15 +10179,15 @@ msgstr "ئابۇنىت ئىسمى:" msgid "Server Choice:" msgstr "مۇلازىمىتېر تاللاش" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10238,7 +10264,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات" @@ -10247,7 +10273,7 @@ msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلى #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -10255,8 +10281,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10358,7 +10384,7 @@ msgstr "خەت ئايرىش بەلگىسى" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -10928,7 +10954,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -11274,57 +11300,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11333,307 +11359,307 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Format of imported file" msgid "Master connection:" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "تۈزىلىشىنىلا" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "تۈزىلىشىنىلا" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "Username:" msgid "User name:" msgstr "ئابۇنىت ئىسمى:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "پارول" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "ئېغىز" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "ئاساسىي ماشىنا" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "قايتا كىرگۈزىش" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "پارول ھاسىللاش" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "خاتالىق" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11656,7 +11682,7 @@ msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" msgid "Event %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -11667,84 +11693,84 @@ msgstr "" msgid "Edit event" msgstr "مەجبۇرى قوشۇش" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "تەپسىلاتلار…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Keyname" msgid "Event name" msgstr "قىممەت ئىسمى" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "ئۆزگەرتتىش" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "ئاخىرقىسى" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -11765,7 +11791,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -11779,149 +11805,149 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Routine %1$s has been modified." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "قۇرۇش" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "ئامال" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -11949,44 +11975,44 @@ msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" msgid "Edit trigger" msgstr "دائىملىق" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "مۇلازىمىتىر ئىسمى" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "ۋاقىت" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12123,600 +12149,553 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Format of imported file" msgid "Does not require SSL-encrypted connections." msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Format of imported file" msgid "Requires SSL-encrypted connections." msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "دائىملىق" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Authenticating…" msgid "SHA256 password authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authenticating…" -msgid "Native MySQL Authentication" -msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "ئابۇنىت ئىسمى:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Routines" msgid "Host name" msgstr "دائىملىق" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authenticating…" msgid "Authentication Plugin" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "پارول ھېسابلاش" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add %s" msgid "Add user account" msgstr "قوشۇلغىنى %s" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "ساندان ئىزاھاتى:" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "With selected:" -msgid "Remove selected user accounts" -msgstr "تاللانغىنى:" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12725,7 +12704,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12734,11 +12713,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -13028,12 +13007,12 @@ msgstr "بۇيرۇق" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "not active" msgid "Show only active" @@ -13060,12 +13039,12 @@ msgstr "مىنۇت" msgid "per second:" msgstr "سېكنۇت" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13091,33 +13070,33 @@ msgstr "" msgid "Related links:" msgstr "مۇناسىۋىتى" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13125,78 +13104,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13204,7 +13183,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13212,42 +13191,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13255,33 +13234,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13290,244 +13269,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13535,99 +13514,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13635,18 +13614,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13654,13 +13633,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -13695,49 +13674,49 @@ msgstr "ساندان" msgid "Table level tabs" msgstr "جەدۋەل ئىزاھى" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "قاراش" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add %s" msgid "Add user group" msgstr "قوشۇلغىنى %s" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No Privileges" msgid "User group menu assignments" msgstr "ھوقۇقسىز" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Columns terminated by" msgid "Group name:" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "مۇلازىمىتىر نۇسخىسى" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "ساندان" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13849,7 +13828,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -13939,181 +13918,181 @@ msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "قۇرۇش" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "يېڭلاش" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "نەشىرنى قۇىماق" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "ئىزلاش خاتىرىسى" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "تۈزۈلمە رەسىمى" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "پائال" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "پائالسىز" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version" msgid "Version %1$s of %2$s was deleted." msgstr "نەشىرنى قۇىماق" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "جەدۋەل ئىزلاش" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "ئىزلانغان جەدۋەل" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "ېيڭى نەشىر" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "نەشىر" @@ -14123,7 +14102,7 @@ msgstr "نەشىر" msgid "Manage your settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14151,7 +14130,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14159,84 +14138,84 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin ھۆججىتى" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not import configuration" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "ھۆججەتنى باشقا ساقلاش" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14244,45 +14223,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "ھوقۇقسىز" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14290,101 +14269,100 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration not saved!" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14420,28 +14398,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14454,12 +14432,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14472,36 +14450,36 @@ msgstr "" msgid "Invalid table name" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "With selected:" msgid "No row selected." msgstr "تاللانغىنى:" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "ئاكتىپ ئىزلاش" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "ساندان %s ئۆچۈرۈلدى." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "With selected:" msgid "No versions selected." msgstr "تاللانغىنى:" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -14708,7 +14686,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -14726,7 +14704,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -15254,17 +15232,17 @@ msgid "Size" msgstr "ھەجىم" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "قۇرۇش" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" @@ -15299,6 +15277,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete settings " +msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -15315,10 +15299,45 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "With selected:" +msgid "Remove selected user accounts" +msgstr "تاللانغىنى:" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15353,7 +15372,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15541,7 +15560,7 @@ msgstr "ئابۇنىت ئىسمى:" msgid "Comment:" msgstr "ئىزاھات" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -15579,31 +15598,31 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "مەجبۇرى قوشۇش" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Internal relation added" msgid "Internal relations" msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15667,13 +15686,13 @@ msgstr "قۇر ئالماشۇرۇش بەلگىسى" msgid "Replaced string" msgstr "مۇناسىۋىتى" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replace NULL by" msgid "Replace" msgstr "نى ئالماشتۇرۇش ئۈچۈنNULL" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "SQL query" msgid "Additional search criteria" @@ -15756,7 +15775,7 @@ msgid "at beginning of table" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15788,30 +15807,30 @@ msgstr "قۇر ئالماشۇرۇش بەلگىسى" msgid "Index length" msgstr "تېزىسلار" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Relations" msgid "Partition table" msgstr "مۇناسىۋىتى" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Print view" msgid "Edit partitioning" msgstr "بېسىپ كۆرسىتىش" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "بېسىپ كۆرسىتىش" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -15842,31 +15861,31 @@ msgstr "ساندان" msgid "Track view" msgstr "جەدۋەل ئىزلاش" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -15881,48 +15900,48 @@ msgstr "" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "تېخىمۇ كۆپ تېمىغا ئىرىشىش !" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Table caption" msgid "Available browser display transformations" msgstr "جەدېۋەلنىڭ تىمىسى" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "ئىزلاش خاتىرىسى" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -15994,7 +16013,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16019,19 +16038,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." msgstr "تاللانغىنى:" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16088,27 +16107,27 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16125,10 +16144,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Show dimension of tables" +msgid "Unexpected ordering of clauses." +msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16173,7 +16198,7 @@ msgstr "" msgid "strict error" msgstr "تەكشۈرۈش" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17342,6 +17367,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Authenticating…" +#~ msgid "Native MySQL Authentication" +#~ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" + #, fuzzy #~| msgid "Table comments" #~ msgid "Table comments: " diff --git a/po/uk.po b/po/uk.po index f0ce4342b8..0efb5d03a9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-08-21 15:35+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Ukrainian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.8-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, php-format msgid "" "The %s file is not available on this system, please visit %s for more " @@ -25,31 +25,31 @@ msgstr "" "Файл %s недоступний на сервері, будь ласка завітайте на %s за додатковою " "інформацією." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "Центральний перелік колонок для поточної бази даних порожній." -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Клацніть для сортування." -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "Показано рядки %1$s - %2$s." -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Коментар бази даних" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Коментарі до таблиці:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -61,13 +61,13 @@ msgstr "Коментарі до таблиці:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -78,9 +78,9 @@ msgstr "Коментарі до таблиці:" msgid "Column" msgstr "Стовпчик" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -91,12 +91,12 @@ msgstr "Стовпчик" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,9 +108,9 @@ msgstr "Стовпчик" msgid "Type" msgstr "Тип" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -121,15 +121,15 @@ msgstr "Тип" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Нуль" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -140,14 +140,14 @@ msgstr "Нуль" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "За замовчуванням" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -157,7 +157,7 @@ msgstr "За замовчуванням" msgid "Links to" msgstr "Посилання на" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -171,19 +171,19 @@ msgstr "Посилання на" msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Первинний" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -191,13 +191,13 @@ msgstr "Первинний" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -205,17 +205,17 @@ msgstr "Первинний" msgid "No" msgstr "Ні" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -224,13 +224,13 @@ msgstr "Ні" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -242,15 +242,15 @@ msgstr "Так" msgid "View dump (schema) of database" msgstr "Переглянути дамп (схему) БД" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "В БД не виявлено таблиць." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -259,8 +259,8 @@ msgid "Tables" msgstr "Таблиці" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -268,10 +268,10 @@ msgstr "Таблиці" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -284,27 +284,27 @@ msgstr "Структура" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Дані" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "Вибрати всі" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Ім'я бази даних порожнє!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "Базу даних %1$s було перейменовано в %2$s." -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "Базу даних %1$s було скопійовано до %2$s." @@ -315,27 +315,27 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "Сховище конфігурації phpMyAdmin деактивовано. %sДовідайтесь чому%s." -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "Необхідно обрати принаймні один стовпчик для відображення!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "Перейти до %sвізуального конструктора%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Доступ заборонено!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "Дані відстеження успішно видалені." -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." @@ -343,11 +343,11 @@ msgstr "" "Версія %1$s була створена для обраних таблиць, для них активовано " "відстеження." -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "Жодної таблиці не обрано." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "Журнал бази даних" @@ -387,132 +387,132 @@ msgstr "Помилковий тип!" msgid "Bad parameters!" msgstr "Помилкові параметри!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "Значення для стовпчика \"%s\"" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "Використовуйте OpenStreetMaps як базовий пласт" # Ідентифікатор просторової системи координат #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "Геометрія %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "Точка:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "Додати точку" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "Відрізок %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "Зовнішнє кільце:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "Внутрішнє кільце %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "Додати відрізок" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "Додати внутрішнє кільце" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "Багатокутник %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "Додати багатокутник" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "Додати геометрію" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "Вперед" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "Вивід" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -520,19 +520,19 @@ msgstr "" "Оберіть \"GeomFromText\" зі стовпчика \"Функції\" та вставте нижче у поле " "\"Значення\"." -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "Вдало" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "Помилка" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "Неповні параметри" -#: import.php:195 +#: import.php:196 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -542,15 +542,15 @@ msgstr "" "зверніться до %sдокументації%s для знаходження шляхів вирішення цієї " "проблеми." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Показані закладки" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Закладку було видалено." -#: import.php:489 +#: import.php:486 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 " @@ -560,18 +560,18 @@ msgstr "" "перевищив допустимий максимум для вашої PHP конфігурації. Дивіться " "[doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "" "Неможливо завантажити імпортовані плагіни, будь ласка, перевірте вашу " "установку!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "Закладку %s створено." -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -580,7 +580,7 @@ msgstr[0] "Імпорт завершився вдало, %d запитів ви msgstr[1] "Імпорт завершився вдало, %d запитів виконано." msgstr[2] "Імпорт завершився вдало, %d запитів виконано." -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -589,7 +589,7 @@ msgstr "" "Виконання скрипту перевищило допустимий час, якщо Ви бажаєте закінчити " "імпорт, необхідно %sповторно відправити той самий файл%s." -#: import.php:632 +#: import.php:629 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." @@ -598,7 +598,7 @@ msgstr "" "phpMyAdmin не зможе закінчити цей імпорт, якщо Ви не збільшите час виконання " "PHP скриптів." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." @@ -606,17 +606,17 @@ msgstr "Оператори \"DROP DATABASE\" заборонені." msgid "Could not load the progress of the import." msgstr "Неможливо загрузити прогресс iмпорту." -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Назад" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "Демо-сервер phpMyAdmin" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -627,113 +627,113 @@ msgstr "" "ласка, не змінюйте користувачів root, debian-sys-maint і pma. Додаткова " "інформація доступна на %s." -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General Settings" msgid "General settings" msgstr "Загальні налаштування" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Змінити пароль" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "Конфігурація сервера" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "Appearance Settings" msgid "Appearance settings" msgstr "Налаштування вигляду" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "Додаткові налаштування" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "Сервер бази даних" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Сервер:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "Тип сервера:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "Версія сервера:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "Версія протоколу:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "Користувач:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "Символьне кодування сервера:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Веб-сервер" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "Версія клієнта бази даних:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP розширення:" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version:" msgid "PHP version:" msgstr "Версія PHP:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "Відомості про версію:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Документація" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "Офіційна сторінка phpMyAdmin" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "Зробити внесок" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "Отримати підтримку" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "Перелік змін" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "Ліцензія" -#: index.php:443 +#: index.php:444 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 " @@ -743,7 +743,7 @@ msgstr "" "багатобайтові символи. Без mbstring phpMyAdmin не зможе правильно виконати " "поділ текстових рядків, що може призвести до неочікуваних результатів." -#: index.php:458 +#: index.php:459 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." @@ -751,7 +751,7 @@ msgstr "" "Розширення curl не знайдено i allow_url_fopen вимкнено. Тому деякi функцiї " "такi як звiт про помилку або перевiрка версiї вимкнено." -#: index.php:473 +#: index.php:474 #, fuzzy #| msgid "" #| "Your PHP parameter [a@https://secure.php.net/manual/en/session." @@ -770,7 +770,7 @@ msgstr "" "термін придатності cookie в phpMyAdmin, через це термін дії вашої сесії " "закінчиться раніше, ніж налаштовано в phpMyAdmin." -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -779,15 +779,15 @@ msgstr "" "налаштований в phpMyAdmin, через це термін дії вашої сесії закінчиться " "раніше, ніж налаштовано в phpMyAdmin." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфігураційний файл потребує секретної фрази (blowfish_secret)." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "Секретна ключова фраза в налаштуваннях (blowfish_secret) дуже коротка" -#: index.php:528 +#: index.php:529 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 " @@ -799,7 +799,7 @@ msgstr "" "видалити. В іншому випадку безпека вашого сервера може бути скомпрометована " "через вільний доступ до завантаження конфігураційного файлу." -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -808,13 +808,13 @@ msgstr "" "Сховище конфігурації phpMyAdmin не повністю налаштовано, деякі розширені " "функції було деактивовано. %sЗ'ясуйте чому%s. " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Або перейдіть на вкладинку 'Операції' будь-якої бази даних та налаштуйте там." -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -823,7 +823,7 @@ msgstr "" "Версія бібліотеки PHP MySQL %s відрізняється від версії сервера MySQL %s. Це " "може спричинити непередбачувані наслідки." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -984,7 +984,7 @@ msgid "Save & close" msgstr "Зберегти та закрити" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Перевстановити" @@ -1020,7 +1020,7 @@ msgstr "Додати індекс" msgid "Edit index" msgstr "Редагувати Індекс" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "Додати до індексу %s стовпчик(ів)" @@ -1045,10 +1045,10 @@ msgstr "Будь ласка, виберіть стовпець(і) для інд msgid "You have to add at least one column." msgstr "Необхідно додати принаймні один стовпчик." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "Попередній перегляд SQL" @@ -1060,7 +1060,7 @@ msgstr "Імітувати запит" msgid "Matched rows:" msgstr "Підібрані рядки:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL-запит:" @@ -1079,13 +1079,13 @@ msgstr "Порожнє ім'я хоста!" msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" @@ -1093,8 +1093,8 @@ msgstr "Паролі не однакові!" msgid "Removing Selected Users" msgstr "Видалення відмічених користувачів" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Закрити" @@ -1122,19 +1122,19 @@ msgstr "Рядок видалено." #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "Інше" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1250,40 +1250,40 @@ msgid "Processes" msgstr "Процесів" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "ЕБ" @@ -1301,7 +1301,7 @@ msgstr "Питання" msgid "Traffic" msgstr "Трафік" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Налаштування" @@ -1315,16 +1315,16 @@ msgid "Please add at least one variable to the series!" msgstr "Будь ласка додайте щонайменше одну змінну до ряду!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Жодного" @@ -1517,20 +1517,20 @@ msgstr "Аналізується…" msgid "Explain output" msgstr "Тлумачити вихідні дані" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Стан" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Час" @@ -1618,10 +1618,10 @@ msgstr "" "конфігурації за замовчуванням…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Імпорт" @@ -1698,7 +1698,7 @@ msgstr "Помилкові параметри!" msgid "Cancel" msgstr "Скасувати" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" @@ -1748,8 +1748,8 @@ msgid "Error text: %s" msgstr "Текст помилки: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Жодної бази даних не вибрано." @@ -1797,7 +1797,7 @@ msgstr "Копіювання бази даних" msgid "Changing charset" msgstr "Зміна Кодування" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -1827,72 +1827,77 @@ msgstr "Перегляд" msgid "Deleting" msgstr "Видалення" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Видалити співпадіння для таблиці %s ?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Визначення збереженої функції має містити оператор RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Експортувати" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "Значення для колонки %s" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "Значення для нового стовпчика" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "Введіть кожне значення в окреме поле." -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "Додати %d значення(ь)" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Примітка: Якщо файл містить кілька таблиць, то вони будуть об'єднані в одну." -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "Сховати блок запиту" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "Показати блок запиту" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1900,69 +1905,69 @@ msgstr "Показати блок запиту" msgid "Edit" msgstr "Редагувати" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Видалити" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d неправильний номер рядка." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Огляд зовнішніх значень" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Змінна" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "Вибір стопчиків" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "Шукати в цьому списку" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "Дивитись більше" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "Ви впевнені?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1970,70 +1975,70 @@ msgstr "" "Ця дія може змінити визначення деяких стовпців.
Ви впевнені, що бажаєте " "продовжувати?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Продовжити" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Додати первинний ключ" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Було додано первинний ключ." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Перехід до наступного кроку…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Перший крок нормалізації для таблиці '%s' завершений." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Кінець кроку" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Другий крок нормалізації (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Готово" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Підтвердіть часткові залежності" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Обрані часткові залежності такі:" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Немає обраних часткових залежностей!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажіть мені можливі часткові залежності, що ґрунтуються на даних у таблиці" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Приховати список часткових залежностей" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2041,207 +2046,207 @@ msgstr "" "Всім залишатись на місцях! Це може зайняти деякий час, залежно від розміру " "даних та кількості стовпців у таблиці." -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Крок" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Будуть виконані наступні дії:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "СКИНУТИ стовпці %s для таблиці %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Створити наступну таблицю" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Третій крок нормалізації (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "Підтвердіть перехресні залежності" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "Обрані залежності такі:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Жодної залежності не обрано!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Зберегти" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Сховати критерії пошуку" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Діапазон пошуку" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Максимум стовпчика:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Мінімум стовпчика:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Мінімальне значення:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Максимальне значення:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Сховати критерії пошуку та заміни" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Показати критерії пошуку та заміни" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Кожна точка являє собою рядок даних." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Наведення курсора над крапкою відобразить, її назву." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" "Натисніть кнопку Скидання масштабу, щоб повернутися до початкового стану." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Клікніть на дані щоб переглянути та можливо редагувати дані рядка." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Розмір графіка може бути змінений шляхом перетягування нижнього правого кута." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Виділити дві колонки" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Виділити дві різні колонки" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "Вміст точки даних" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Копіювати" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Точка" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Відрізок" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Полігон" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Геометрія" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Внутрішнє кільце" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Зовнішнє кільце:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Ви хочете скопіювати ключ шифрування?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Ключ шифрування" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Обрати ключі посилання" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Обрати зовнішній ключ" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2249,78 +2254,78 @@ msgstr "" "Ви не зберегли зміни в макет. Вони будуть втрачені, якщо ви не збережете їх. " "Бажаєте продовжити?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Назва сторінки" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Зберегти сторінку" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Зберегти сторінку" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Відкрити сторінку" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Видалити сторінку" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Без назви" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Будь ласка, оберіть сторінку для продовження" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Ви хочете зберегти зміни до поточної сторінки?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Сторінка успішно видалена" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Експортувати схему зв'язків" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Додати опцію для колонки \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "Створено %d об'єкт(ів)." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Виконати" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Натисніть Escape для відміни редагування." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2328,15 +2333,15 @@ msgstr "" "Ви змінили деякі дані, і вони не були збережені. Ви впевнені, що хочете " "залишити цю сторінку перед збереженням даних?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Перетягніть для зміни порядку." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Клацніть для сортування за цим стовпчиком." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2346,28 +2351,28 @@ msgstr "" "ASC/DESC.
- Ctrl+клік чи Alt+клік (для Mac: Shift+Option+клік) для " "видалення стовпчика із списку ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Клацніть для встановлення/зняття позначки." -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Клацніть двічі, щоб скопіювати назву стовпчика." -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Клацніть на стрілку випадаючого меню
для перемикання видимості " "стовпчика." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Показати все" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2376,13 +2381,13 @@ msgstr "" "редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть " "не працювати після збереження." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Будь-ласка введіть допустимий шістнадцятковий рядок. Допустимі символи: 0-9, " "A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2390,111 +2395,111 @@ msgstr "" "Ви дійсно хочете побачити усі рядки? Для великих таблиць це може призвести " "до зависання браузеру." -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Початковий рядок" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "скасувати" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Перервано" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Успішно" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Стан імпорту" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Скинути файли сюди" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Спочатку оберіть базу даних" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Друк" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Ви також можете редагувати більшість значень
двіччі клацнувши прямо " "по них." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Ви також можете редагувати більшість колонок
клацнувши безпосередньо " "на них." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Перейти за посиланням:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Копіювати назву стовпчик(ів)." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Клацніть правою кнопкою назву стовпчика, щоб скопіювати його в буфер обміну." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Згенерувати" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Більше" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Показати панель" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Приховати панель" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Показати приховані пункти дерева навігації." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Зв'язати з головною панеллю" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Видалити зв'язок з головною панеллю" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запитану сторінку не знайдено в історії, можливо минув її термін зберігання." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2504,50 +2509,50 @@ msgstr "" "Найновіша версія %s, випущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", остання стабільна версія:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "оновлено" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Створити подання" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Надіслати звіти про помилку" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Надіслати звіт про помилку" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Трапилася фатальна помилка JavaScript. Ви хочете відіслати звіт про неї?" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Змінити налаштування звіту" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Показати подробиці звіту" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2555,7 +2560,7 @@ msgstr "" "Ваш експорт є неповним у зв'язку з низьким часовим лімітом для виконання на " "рівні PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2565,63 +2570,63 @@ msgstr "" "надсилання деякі поля може бути проігноровано через значення РНР " "max_input_vars." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "На сервері були виявлені деякі помилки!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Будь-ласка зверніть увагу на нижню частину цього вікна." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Ігнорувати все" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Згідно ваших налаштувань, що наразі вносяться, будьте терплячими." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Виконати цей запит ще раз?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Ви дійсно бажаєте видалити цю закладку?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format #| msgid "Execute" msgid "%s queries executed %s times in %s seconds." msgstr "Виконати" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментарі таблиці" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Сховати результати пошуку" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2630,385 +2635,405 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копіювати базу даних в" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Додати префікс таблиці:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Замінити префікс таблиці" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Попередня" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Наступна" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Січень" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Лютий" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Березень" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Квітень" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Травень" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Червень" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Липень" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Серпень" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Вересень" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Жовтень" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Листопад" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Гру" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Середа" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Четвер" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Субота" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Тж" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "немає" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Година" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Секунда" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Використовувати текстове поле" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Введіть вірний номер!" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Введіть вірний номер!" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Введіть вірний номер!" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Введіть вірну довжину!" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Введіть вірну довжину!" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Введіть вірний номер!" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Помилка" @@ -3072,20 +3097,20 @@ msgid "Charset" msgstr "Набір символів" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Порівняння" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Двійковий" @@ -3282,7 +3307,7 @@ msgid "Czech-Slovak" msgstr "Чехословацька" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "невідоме" @@ -3336,7 +3361,7 @@ msgstr "" msgid "Font size" msgstr "Розмір шрифту" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" @@ -3344,21 +3369,21 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Немає закладок" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Консоль SQL запиту" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Не вдалося прочитати файл конфігурації!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3366,25 +3391,25 @@ msgstr "" "Сервер не відповідає (або локальний сокет сервера MySQL невірно " "налаштований)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Сервер не відповідає." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Будь ласка, перевірте привілеї каталогу містить базу даних." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Деталі…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Пропущено параметр:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації." @@ -3480,57 +3505,57 @@ msgstr "Вставити:" msgid "Del:" msgstr "Видалити:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запит до БД %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Виконати запит" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Нова закладка" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Створити закладку" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Оновити закладку" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Видалити закладку" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "принаймі одне з слів" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "всі слова" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "точну фразу" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "як регулярний вираз" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результати пошуку для \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -3538,7 +3563,7 @@ msgstr[0] "Всього: %s співпадіння" msgstr[1] "Всього: %s співпадань" msgstr[2] "Всього: %s співпадань" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -3546,48 +3571,43 @@ msgstr[0] "%1$s співпадіння у %2$s" msgstr[1] "%1$s співпадіння у %2$s" msgstr[2] "%1$s співпадінь у %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Переглянути" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Видалити співпадіння для таблиці %s ?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Шукати в базі даних" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова чи значення, які потрібно знайти (шаблон: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Знайти:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Слова розділені пробілом (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Всередині таблиць:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Зняти всі відмітки" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Всередині стовпчика:" @@ -3607,30 +3627,30 @@ msgstr "Фільтрувати рядки" msgid "Search this table" msgstr "Шукати в таблиці" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Почати" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Попередній" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Вперед" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Кінець" @@ -3639,7 +3659,7 @@ msgstr "Кінець" msgid "All" msgstr "Все" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Число рядків:" @@ -3648,8 +3668,8 @@ msgstr "Число рядків:" msgid "Sort by key" msgstr "Сортувати за ключем" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3671,10 +3691,10 @@ msgstr "Сортувати за ключем" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Параметри" @@ -3716,29 +3736,29 @@ msgstr "Добре відомий текст" msgid "Well Known Binary" msgstr "Добре відомий бінарний" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Рядок видалено." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Вбити" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL запит було виконано вдало." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3747,75 +3767,75 @@ msgstr "" "Подання має щонайменше цю кількість рядків. Будь-ласка, зверніться до " "%sдокументації%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Показано рядки %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d в запиті" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "всього %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Запит виконувався %01.4f с." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "З відміченими:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Відмітити все" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Операції з результатами запиту" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Відобразити діаграму" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Візуалізація даних ГІС" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Посилання не знайдено!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Немає" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Конвертувати в Кану" @@ -3823,24 +3843,24 @@ msgstr "Конвертувати в Кану" msgid "Too many error messages, some are not displayed." msgstr "Занадто багато повідомлень про помилки, деякі не відображаються." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Звіт" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Автоматично надсилати звіт наступного разу" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Файл не був завантаженим файлом." -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Розмір завантаженого файла перевищує директиву upload_max_filesize в php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3848,49 +3868,49 @@ msgstr "" "Розмір завантаженого файла перевищує MAX_FILE_SIZE директиву, що була " "вказана в HTML формі." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Завантажуваний файл було завантажено лише частково." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Відсутня тимчасова директорія." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Не вдалося записати файл на диск." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Завантаження файла зупинено розширенням." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Невідома помилка під час завантаження файла." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Неможливо прочитати файл!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Помилка під час переміщення файла, дивись [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Помилка під час переміщення завантаженого файла." -#: libraries/File.php:507 +#: libraries/File.php:517 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Не вдалося прочитати (перемістити) завантажений файл." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3899,28 +3919,28 @@ msgstr "" "Ви намагаєтесь завантажити файл з непідтримуваним стисненням (%s). Підтримка " "не здійснюється або вимкнена у вашій конфігурації." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Запущена Git ревізія %1$s з гілки %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Відсутня інформація про Git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Відкрити нове вікно phpMyAdmin" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Версія для друку" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Натисніть на панелі, щоб прокрутити до початку сторінки" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "З цього моменту Javascript має бути увімкнений!" @@ -3929,20 +3949,20 @@ msgid "No index defined!" msgstr "Індекс не визначено!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Індекси" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3952,59 +3972,59 @@ msgstr "Індекси" msgid "Action" msgstr "Дія" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Назва ключа" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Запакований" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Кількість елементів" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Коментар" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Первинний ключ було знищено." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Індекс %s було знищено." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Знищити" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4012,19 +4032,19 @@ msgid "" msgstr "" "Схоже, що індекси %1$s та %2$s ідентичні, тому один із них можна видалити." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Номер сторінки:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Мова" @@ -4048,11 +4068,11 @@ msgstr "Сервер" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4071,14 +4091,15 @@ msgid "View" msgstr "Подання" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4087,8 +4108,8 @@ msgid "Table" msgstr "Таблиця" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4096,45 +4117,45 @@ msgstr "Таблиця" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Шукати" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Вставити" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привілеї" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Операції" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Відстеження" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4150,16 +4171,16 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "Порожня база даних!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Запит" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4167,20 +4188,20 @@ msgstr "Процедури" msgid "Events" msgstr "Події" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Центральні стовпчики" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Бази даних" @@ -4191,39 +4212,39 @@ msgid "User accounts" msgstr "Групи користувачів" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бінарний журнал" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Реплікація" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Змінні" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Кодування" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Двигуни" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Плагіни" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." @@ -4231,7 +4252,7 @@ msgstr[0] "%1$d рядок задіяно." msgstr[1] "%1$d рядків задіяно." msgstr[2] "%1$d рядків задіяно." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." @@ -4239,7 +4260,7 @@ msgstr[0] "%1$d рядок видалено." msgstr[1] "%1$d рядків видалено." msgstr[2] "%1$d рядків видалено." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4288,27 +4309,27 @@ msgstr "Улюблені таблиці" msgid "Favorites" msgstr "Уподобання" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Відсутня інформація для збереження пошуку в закладках." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Запис з таким іменем вже існує." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Відсутні відомості для видалення пошуку." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Відсутні відомості для завантаження пошуку." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Помилка під час завантаження пошуку." @@ -4370,7 +4391,7 @@ msgstr "Показати відкриті таблиці" msgid "Show slave hosts" msgstr "Показати підлеглі хости" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Показати стан головного сервера" @@ -4426,69 +4447,69 @@ msgstr[0] "%d хвилина" msgstr[1] "%d хвилини" msgstr[2] "%d хвилин" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Для цього механізму зберігання немає дельної інформації про статус." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s механізм зберігання за замовчуванням на цьому MySQL сервері." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s доступне на цьому MySQL сервері." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s було вимкнене для цього MySQL серверу." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Цей MySQL сервер не підтримує %s кодування." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Невідомий статус таблиці:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Вихідна база даних \"%s\" не знайдена!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Цільова база даних \"%s\" не знайдена!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Неправильна база даних:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Неправильна назва таблиці:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Помилка зміни назви таблиці %1$s на %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблицю %1$s було перейменовано в %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Неможливо зберегти табличні налаштування UI!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4497,7 +4518,7 @@ msgstr "" "Помилка очищення таблиичних налаштувань UI (див. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4508,19 +4529,19 @@ msgstr "" "оновлення цієї сторінки. Будь ласка, перевірте чи не була змінена структура " "таблиці." -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ім'я первинного ключа повинно бути PRIMARY!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Неможливо перейменувати індекс в PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Не визначено частини індекса!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Помилка при створенні зовнішнього ключа на %1$s (перевірте типи даних)" @@ -4823,7 +4844,7 @@ msgid "Date and time" msgstr "Дата і час" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Рядок" @@ -4838,72 +4859,72 @@ msgstr "Просторове" msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Статичні дані" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP коду" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Виконати запит" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Створити PHP код" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Оновити" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Профілювання" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4911,63 +4932,63 @@ msgid "Edit inline" msgstr "Редагувати індекс" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Нд" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Пропущено параметр:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Перейти до бази даних \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "На функціональність %s впливає відома помилка, див. %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Переглянути Ваш комп'ютер:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для відвантаження файлів %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Встановлений Вами каталог для завантаження файлів недоступний." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Немає файлів для відвантаження!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Очистити" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Виконати" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Користувачі" @@ -4981,7 +5002,7 @@ msgstr "за хвилину" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "за годину" @@ -4989,12 +5010,12 @@ msgstr "за годину" msgid "per day" msgstr "за день" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Пошук:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5002,7 +5023,7 @@ msgstr "Пошук:" msgid "Description" msgstr "Опис" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Використовувати це значення" @@ -5039,22 +5060,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Назва" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Довжина/Значення" @@ -5065,7 +5086,7 @@ msgstr "Довжина/Значення" msgid "Attribute" msgstr "Атрибути" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5082,11 +5103,11 @@ msgstr "Додати стовпчик" msgid "Select a column." msgstr "Обрати стовпчик." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Додати стовпчик" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5094,7 +5115,7 @@ msgstr "Додати стовпчик" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5103,27 +5124,27 @@ msgstr "" "У конфігурації PHP увімкнено mbstring.func_overload. Цей параметр несумісний " "з phpMyAdmin і може викликати пошкодження деяких даних!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Невірний індекс сервера: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Невірна назва хоста для сервера %1$s. Будь ласка, перевірте конфігурацію." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Сервер %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5131,20 +5152,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Помилка: невідповідний токен" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "спроба перезапису GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "можливе використання" @@ -5776,7 +5797,7 @@ msgid "Compress on the fly" msgstr "Стиснути на льоту" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Конфігураційний файл" @@ -5888,13 +5909,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимальний час виконання" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Додати оператор %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Зберегти як файл" @@ -5904,7 +5925,7 @@ msgstr "Кодування файлу" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Формат" @@ -6029,7 +6050,7 @@ msgid "Save on server" msgstr "Зберегти на сервері" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Перезаписати існуючий файл(и)" @@ -6044,7 +6065,7 @@ msgid "Remember file name template" msgstr "Запам'ятати шаблон імені файлу" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Додати значення AUTO_INCREMENT" @@ -6053,7 +6074,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Візьміть таблицю та імена колонок у зворотні лапки" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Режим сумісності SQL" @@ -6085,7 +6106,7 @@ msgstr "Відсутня таблиця для збереження конфіг #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Додати %s" @@ -6261,7 +6282,7 @@ msgid "Customize the navigation tree." msgstr "Налаштувати панель навігації" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Сервери" @@ -7213,7 +7234,7 @@ msgstr "HTTP область" msgid "Authentication method to use." msgstr "Потрібний метод автентифікації." -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Тип аутентифікації" @@ -7999,7 +8020,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Включення вкладки розробника в налаштуваннях" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Перевірити оновлення" @@ -8008,10 +8029,10 @@ msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Вмикає можливість перевірки останньої версії phpMyAdmin на головній сторінці." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "перевірка версії" @@ -8154,24 +8175,24 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Текст OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Перелік обраного заповнено!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Таблицю %s було очищено." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "Перегляд %s було знищено." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Таблицю %s було знищено." @@ -8185,12 +8206,12 @@ msgid "Position" msgstr "Позиція" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Тип події" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID сервера" @@ -8199,7 +8220,7 @@ msgid "Original position" msgstr "Початкова позиція" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Інформація" @@ -8213,16 +8234,16 @@ msgstr "Обрізати показані запити" msgid "Show Full Queries" msgstr "Показати повні запити" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "БД відсутні" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Базу даних %1$s створено." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -8230,26 +8251,26 @@ msgstr[0] "%1$d базу даних успішно знищено." msgstr[1] "%1$d бази даних успішно знищено." msgstr[2] "%1$d баз даних успішно знищено." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Рядки" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Разом" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Надмірні видатки" @@ -8278,33 +8299,33 @@ msgstr "" msgid "Enable statistics" msgstr "Дозволити статистику" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Змінні сервера та налаштування" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Помилка встановлення змінної" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Немає даних для відображення" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Таблицю %1$s було успішно змінено." @@ -8358,7 +8379,7 @@ msgstr "Стовпці успішно переміщено." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Помилка запиту" @@ -8376,12 +8397,12 @@ msgstr "Змінити" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Індекс" @@ -8402,14 +8423,14 @@ msgstr "ПовнТекст" msgid "Distinct values" msgstr "Окремі значення" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" "Розширення %s не знайдено. Будь ласка, перевірте ваші налаштування PHP." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Змін немає" @@ -8430,132 +8451,136 @@ msgstr "" "Не вдалося завантажити плагіни схеми, будь ласка, перевірте вашу установку!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Без паролю" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Пароль:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Підтвердження:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Хешування паролю:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Експортування баз даних із поточного сервера" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Експортування таблиць із бази даних \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Експортування рядків із таблиці \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "Тип експорту" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template:" msgid "New template:" msgstr "Шаблон назви файлу:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Назва таблиці" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Створити" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template:" msgid "Existing templates:" msgstr "Шаблон назви файлу:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "Temp disk rate" msgid "Template:" msgstr "Співвідношення тимчасових таблиць на диску" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Оновлено" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select a table" msgid "Select a template" msgstr "Обрати таблицю" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "Метод експорту" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Швидкий - відображати мінімум налаштувань" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Звичайний - відображати всі можливі настройки" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Бази даних" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Таблиці:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Формат:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Параметри форматування:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8563,52 +8588,52 @@ msgstr "" "Заповніть параметри для обраного формату і ігноруйте параметри інших " "форматів." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Зміна кодування:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Рядки:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Вивантажити частину рядків" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Почати з рядка:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Вивантажити всі рядки" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Вывод:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Зберегти на сервері в каталозі %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Шаблон назви файлу:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ буде заміщено іменем сервера" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ буде заміщено ім'ям бази даних" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ буде заміщено ім'ям таблиці" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8620,103 +8645,103 @@ msgstr "" "підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у " "%4$sFAQ%5$s." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "використовувати для майбутнього експорту" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Кодування файлу:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Стискання:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "стиснено" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "стиснено в \"gzip\"" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Відобразити вивід як текст" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Експорт видів як таблиць" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Експортувати заголовки таблиці" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Зберегти вивід у файл" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Ігнорувати таблиці більші за" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Обрати базу даних" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Обрати таблицю" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Ім'я нової бази даних" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Ім'я нової таблиці" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Нове ім'я стовпчика" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Відсутні модулі експорту. Перевірте вміст встановленої копії phpMyAdmin!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Ревізія Git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "вчинено %1$s, %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "створено %1$s, %2$s" @@ -9183,13 +9208,13 @@ msgstr "" "Документацію і додаткову інформацію про PBXT можна знайти на %sДомашній " "сторінці PrimeBase XT%s." -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Бракує місця для збереження файлу %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9197,76 +9222,76 @@ msgstr "" "Файл %s існує на сервері, прошу змінити назву файлу, або відмітити опцію " "заміни існуючих файлів." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб-сервер не має привілеїв для збереження файлу %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Наступні структури були створені, або змінені. Ви можете:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Переглянути деталі структури клацанням по її імені." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Змінити будь-яке налаштування клацанням по відповідному посиланню \"Параметри" "\"." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Відредагувати структуру за посиланням \"Структура\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Перейти до бази даних: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Редагувати налаштування для %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Перейти до таблиці: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Перейти до подання: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9277,78 +9302,79 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Створити індекс у  %s стовпчиках" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Приховати" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функція" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Через велику довжину
цей стовпчик неможливо відредагувати." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Двійкові дані - не редагуються" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Або" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "каталог веб-сервера для відвантаження файлів:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редагувати/Вставити" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Продовжити вставку з %s рядка" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "і потім" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Вставити як новий рядок і ігнорувати помилки" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Відображати запит вставлення" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Повернутися на цю сторінку" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Редагувати наступний рядок" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9358,8 +9384,8 @@ msgstr "" "Для переходу від значення до значення використовуйте TAB, або CTRL+стрілки - " "для переміщення куди завгодно" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9370,31 +9396,31 @@ msgstr "" msgid "Value" msgstr "Значення" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Показ SQL-запиту" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Ідентифікатор доданого рядка: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Лише структуру" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Структуру і дані" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Лише дані" @@ -9405,14 +9431,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Додати значення AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Додати обмеження" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9461,8 +9487,8 @@ msgstr "Процедури:" msgid "Views:" msgstr "Подання:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Показати" @@ -9508,17 +9534,17 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Очистити швидкий фільтр" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9534,7 +9560,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Не вдалося додати стовпчики!" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Розгорнути/Згорнути" @@ -9553,7 +9579,7 @@ msgstr "Новий" msgid "Database operations" msgstr "Операції з базою даних" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Показувати приховані елементи" @@ -9652,11 +9678,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Обрати одне…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Немає такого стовпчика" @@ -9908,8 +9934,8 @@ msgid "Rename database to" msgstr "Перейменувати базу даних на" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9955,183 +9981,183 @@ msgstr "(окремо)" msgid "Move table to (database.table)" msgstr "Перенести таблицю в (база даних.таблиця)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Перейменувати таблицю в" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Коментарі таблиці" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Налаштування таблиці" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Тип таблиць" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Скопіювати таблицю в (база даних.таблиця)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Перейти до скопійованої таблиці" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Обслуговування таблиці" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Аналіз таблиці" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Перевірити таблицю" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Перевірити таблицю" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Дефрагментувати таблицю" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Було очищено кеш таблиці %s." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Очистити кеш таблиці (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Видалити дані або таблицю" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Очистити таблицю (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Видалити таблицю (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Аналізувати" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Перевірити" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Оптимізувати" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Перебудувати" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Відремонтувати" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Згорнути" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Обслуговування розділів" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Розділ %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Видалити розділи" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Не можу перенести таблицю саму в себе!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Не можу скопіювати таблицю саму в себе!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Таблицю %s було перенесено в %s." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Таблицю %s було скопійовано в %s." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицю %s було перенесено в %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблицю %s було скопійовано в %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Порожня назва таблиці!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Цей формат не має параметрів" @@ -10158,18 +10184,18 @@ msgstr "Показати колір" msgid "Only show keys" msgstr "Показувати тільки ключі" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "З'єднання неможливе: невірні налаштування." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Ласкаво просимо до %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10178,7 +10204,7 @@ msgstr "" "Ви, напевно, не створили файл конфігурації. Для його створення Ви можете " "використати %1$ssetup script%2$s." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10190,7 +10216,7 @@ msgstr "" "config.inc.php та впевнитися, що вони відповідають даним отриманим Вами від " "адміністратора MySQL сервера." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10215,15 +10241,15 @@ msgstr "Ім'я користувача:" msgid "Server Choice:" msgstr "Вибір сервера:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10286,7 +10312,7 @@ msgstr "Параметри дампу даних" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп даних таблиці" @@ -10295,7 +10321,7 @@ msgstr "Дамп даних таблиці" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Подія" @@ -10303,8 +10329,8 @@ msgstr "Подія" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Визначення" @@ -10390,7 +10416,7 @@ msgstr "Помістити імена стовпців в перший рядо #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Хост:" @@ -10949,7 +10975,7 @@ msgstr "Зміст" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Додатково" @@ -11371,18 +11397,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдіть в phpMyAdmin, щоб завантажити оновлений конфігураційний файл." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "без опису" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11390,41 +11416,41 @@ msgid "" "configuration storage there." msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Головна реплікація" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Даний сервер налаштований головним в процесі реплікації." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Показати з'єднані підлеглі сервера" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Додайте підлеглого користувача реплікації" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Налаштування головного сервера" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -11445,19 +11471,19 @@ msgstr "" "вибрати ігнорування всіх баз даних за замовчуванням і дозвіл для реплікації " "тільки певних. Будь ласка, виберіть бажаний режим:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Реплікація всіх баз даних; ігнорувати:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Ігнорувати всі бази даних; реплікація:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Будь ласка, виберіть бази даних:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11465,7 +11491,7 @@ msgstr "" "Тепер додайте дані рядка в кінець розділу [mysqld] конфігураційного файлу my." "cnf, після чого перезапустіть сервер MySQL." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -11475,72 +11501,72 @@ msgstr "" "після чого ви повинні побачити повідомлення, яке вказує, що даний сервер " "налаштований як головний." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Похідна реплікація" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Незахищене з'єднання" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Підлеглий SQL потік не запущений!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Підлеглий потік вводу-виводу не запущений!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Сервер налаштований в якості підлеглого для процесу реплікації. Провести дію:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Дивіться таблицю стану підлеглого сервера" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Контролювати підлеглий сервер:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Повний запуск" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Повна зупинка" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Скинути підлеглий сервер" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Запустити тільки SQL потік" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Зупинити тільки SQL потік" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Запустити тільки потік вводу-виводу" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Зупинити тільки потік вводу-виводу" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Змінити або переконфігурувати головний сервер" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11549,26 +11575,26 @@ msgstr "" "Даний сервер не налаштований в якості підлеглого для процесу реплікації. " "Хочете справити настройку?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Управління помилками:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Ігнорування помилок може призвести до розсинхронізації головного і " "підлеглого сервера!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Ігнорувати поточну помилку" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Ігнорувати наступні %s помилки." -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11577,11 +11603,11 @@ msgstr "" "Даний сервер не налаштований в якості головного для процесу реплікації. " "Хочете справити настройку?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Налаштування підлеглого сервера" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -11589,53 +11615,53 @@ msgstr "" "Переконайтеся, що в конфігураційному файлі (my.cnf) є унікальне значення " "server-id. При необхідності, додайте наступний рядок в розділ [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Ім'я користувача:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Ім'я користувача" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Пароль" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Порт:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Статус Master" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Статус Slave" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Змінна" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Хост" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -11643,39 +11669,39 @@ msgstr "" "Тільки підлеглі сервера запущені з ключем --report-host=host_name видимі в " "даному списку." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Довільний хост" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Локальний" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Цей хост" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Довільний користувач" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Використовувати текстове поле:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11683,79 +11709,79 @@ msgstr "" "При використанні таблиці хостів, дане поле ігнорується і значення беруться з " "прописаних при конфігурації." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Підтвердження" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "Згенерувати пароль" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Реплікація розпочалася вдало." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Помилка початку реплікації." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Реплікація зупинена вдало." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Помилка переривання реплікації." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Реплікація скинута вдало." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Помилка скидання реплікації." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Помилка." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Невідома помилка" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Неможливо з'єднатися з головним сервером %s." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Неможливо прочитати позицію журналу в головного сервера. Ймовірно проблема в " "налаштуванні привілеїв головного сервера." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Неможливо змінити головний сервер!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Головний сервер змінений на %s вдало." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11776,7 +11802,7 @@ msgstr "Подію %1$s було змінено." msgid "Event %1$s has been created." msgstr "Подія %1$s була створена." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Одна або декілька помилок виникли під час обробки вашого запиту:" @@ -11785,75 +11811,75 @@ msgstr "Одна або декілька помилок виникли під ч msgid "Edit event" msgstr "Редагувати подію" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Деталі" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Назва події" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Змінити на %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Виконати у" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Виконати кожні" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Старт" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Кінець" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "По завершенні збереження" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Визначник" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Визначник повинен бути в форматі \"username@hostname\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Слід вказати назву події!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Необхідно задати коректний інтервал значень для події." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Необхідно задати коректний час виконання події." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Необхідно задати коректний тип події." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Ви повинні задати визначення події." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Помилка при обробці запиту:" @@ -11874,7 +11900,7 @@ msgstr "Статус планувальника подій" msgid "The backed up query was:" msgstr "Збережений запит був:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Повернення" @@ -11886,97 +11912,97 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Редагувати порядок" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Неправильний тип порядку: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Порядок %1$s створено." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Вибачте, нам невдалось відновити видалений порядок." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Порядок %1$s було змінено." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Порядок %1$s було змінено." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Назва порядку" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Параметри" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Напрямок" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Додати параметр" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Видалити останній параметр" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Тип повернення" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "Повернути довжину/значення" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Опції повернення" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Детермінований" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Тип безпеки" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Доступ до даних SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Слід вказати назву процедури!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Неправильний напрямок \"%s\" задали для параметру." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -11984,24 +12010,24 @@ msgstr "" "Ви повинні задати довжину/значення для параметрів процедури, що мають тип " "ENUM, SET, VARCHAR і VARBINARY." -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "Ви повинні задати ім'я і тип для кожного параметра процедури." -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "Необхідно задати коректний тип, що повертатиму процедуру." -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Ви повинні задати визначення процедури." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Результати виконання порядку %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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." @@ -12009,13 +12035,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Виконати порядок" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Параметри порядку" @@ -12037,32 +12063,32 @@ msgstr "Тригер %1$s було створено." msgid "Edit trigger" msgstr "Редагувати тригер" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Назва тригера" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Час" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Слід вказати назву тригера!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Слід вказати валідні терміни для тригера!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Слід вказати валідну подію для тригера!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Слід вказати валідну назву таблиці!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Ви маєте вказати визначення тригеру." @@ -12189,90 +12215,90 @@ msgstr "Набори символів та схеми" msgid "Databases statistics" msgstr "Статистика баз даних" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Немає прав." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Містить всі права за винятком GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Дозволити читання даних." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Дозволити зміну даних." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Дозволяє видалення даних." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Дозволяє створювати нові бази даних і таблиці." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Дозволяє видалення баз даних та таблиць." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Дозволяє перегляд процесів усіх користувачів." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Дозволяє змінювати структуру наявних таблиць." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Надає доступ до повного списку баз даних." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12282,132 +12308,106 @@ msgstr "" "під'єднань; обов'язково для більшості адміністративних операцій таких як " "встановлення глобальних змінних чи припинення процесів інших користувачів." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Дозволяє створювати тимчасові таблиці." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Дозволяє створення нових уявлень (CREATE VIEW)." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Дозволяє налаштувати події планувальника подій." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Дозволяє створення та видалення тригерів." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволяє виконувати SHOW CREATE VIEW запити." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Дозволяє створення збережених процедур." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Дозволяє зміну та видалення збережених процедур." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дозволяє створення, видалення та перейменування облікових записів " "користувачів." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Дозволяє виконання збережених процедур." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Немає" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Постійне з’єднання" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Постійне з’єднання" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Обмеження ресурсів" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Обмежити кількість запитів, які користувач може надіслати серверу протягом " "години." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12415,129 +12415,122 @@ msgstr "" "Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " "даних, які користувач може виконати протягом години." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Обмежити кількість нових під'єднань, які користувач може створювати протягом " "години." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Обмежити кількість одночасних підключень, які користувач може мати." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Процедури" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Дозволяє зміну та видалення збережених процедур." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Дозволяє виконання збережених процедур." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примітка: назви прав MySQL задаються англійською." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Адміністрування" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глобальні права" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Глобальний" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Дозволяє створювати нові таблиці." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Дозволяє знищувати таблиці." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволяє додавання користувачів та прав без перезавантаження таблиці прав." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Авторизація за допомогою cookie" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Авторизація за допомогою Signon" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Авторизація за допомогою cookie" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Інформація авторизації" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12545,152 +12538,152 @@ msgstr "" "Вже існує обліковий запис з таким іменем користувача, але, можливо, з іншою " "назвою хоста." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Ім'я користувача:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Назва журналу" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Аутентифікація" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Хешування паролю:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s змінено вдало." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ви відмінили привілеї для %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Додати групу користувачів" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База даних для користувача" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Створити базу даних з таким самим іменем та надати всі привілеї." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надати всі привілеї на те, що підпадає під шаблон (ім'я користувача\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Надати всі привілеї на базу даних \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Користувачі, що мають доступ до \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Користувача було додано." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Надати" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Користувача не знайдено." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Довільний" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "глобальний" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "специфічний для бази даних" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "специфічний для таблиці" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Редагувати привілеї:" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Відмінити" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Редагувати групу користувачів" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… зберегти попереднього." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… видалити попереднього з таблиці користувачів." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… анулювати всі активні привілеї попереднього користувача та видалити його " "після того." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12698,120 +12691,106 @@ msgstr "" "… видалити попереднього з таблиці користувачів та перевантажити права після " "того." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Створити нового користувача з такими ж правами та …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привілеї, що стосуються стовпчиків таблиці" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Видалити обраних користувачів" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Відмінити всі активні привілеї користувачів та видалити їх після того." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Видалити бази даних, які мають такі ж назви, як імена користувачів." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Жодного користувача не обрано для видалення!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Обраних користувачів видалено вдало." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Ви оновили привілеї для %s." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Видалення %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Привілеї перезавантажено вдало." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Привілеї для %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Користувач" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Новий" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Редагувати привілеї:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User groups" msgid "User account" msgstr "Групи користувачів" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Перегляд користувачів" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12824,7 +12803,7 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12843,11 +12822,11 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Ви додали нового користувача." @@ -13158,12 +13137,12 @@ msgstr "Команда" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Фільтри" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show only alert values" msgid "Show only active" @@ -13186,12 +13165,12 @@ msgstr "за хвилину:" msgid "per second:" msgstr "за секунду:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Параметри" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -13215,7 +13194,7 @@ msgstr "Показати неформатовані значення" msgid "Related links:" msgstr "Пов'язані посилання:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13223,11 +13202,11 @@ msgstr "" "Кількість підключень, що було перервано через відключення клієнта без " "належного закриття з'єднання." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Кількість невдалих спроб підключитися до сервера MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13237,16 +13216,16 @@ msgstr "" "але перевищили значення binlog_cache_size і використали тимчасовий файл для " "збереження команд транзакції." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Кількість операцій, що використали кеш тимчасового двійкового журналу." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Кількість спроб підключення (успішних чи навпаки) до сервера MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13258,11 +13237,11 @@ msgstr "" "значення tmp_table_size, щоб тимчасові таблиці розміщувалися в пам'яті, а не " "на диску." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "Скільки було створено тимчасових файлів mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13270,7 +13249,7 @@ msgstr "" "Кількість тимчасових таблиць в пам'яті, автоматично створювані сервером під " "час виконання команд." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13278,7 +13257,7 @@ msgstr "" "Кількість рядків, записаних за допомогою команди INSERT DELAYED, при яких " "виникла помилка (ймовірно через дублі ключа)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13286,23 +13265,23 @@ msgstr "" "Кількість використовуваних потоків обробника команди INSERT DELAYED. Кожній " "таблиці, на якій використана команда INSERT DELAYED, надається свій потік." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Кількість рядків, записаних за допомогою команди INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Кількість виконаних команд FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Кількість внутрішніх команд COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Кількість разів, коли рядок було видалено з таблиці." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13312,7 +13291,7 @@ msgstr "" "таблицю з вказаним іменем. Це називається виявлення. Handler_discover - це " "кількість виявлених таблиць." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13322,7 +13301,7 @@ msgstr "" "можливо, сервер виконує забагато повних сканувань індексу; наприклад, " "командою SELECT col1 FROM foo, за умови, що col1 проіндексовано." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -13330,7 +13309,7 @@ msgstr "" "Кількість запитів на читання рядка на основі ключа. Високе значення означає, " "що ваші запити та таблиці правильно проіндексовані." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13340,13 +13319,13 @@ msgstr "" "значення зростає, якщо ви створюєте запит індексу стовпчика з обмеженням " "діапазону або виконуєте сканування індексу." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13358,7 +13337,7 @@ msgstr "" "результатів. Ви, напевно, здійснюєте багато запитів, що вимагають сканування " "всієї таблиці, або маєте об'єднання, які неправильно використовують ключі." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13370,37 +13349,37 @@ msgstr "" "означає, що таблиці належним чином не індексуються, або запити не " "використовують переваг наявних індексів." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "Кількість внутрішніх команд ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Кількість запитів на оновлення рядка в таблиці." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Кількість запитів на додавання рядка в таблицю." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Кількість сторінок, що містять дані (брудні або чисті)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Поточна кількість брудних сторінок." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Кількість сторінок буферного пулу, щодо яких був виконаний запит на очищення " "(FLUSH)." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Кількість вільних сторінок." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13410,7 +13389,7 @@ msgstr "" "в даний момент читаються або записуються або не можуть бути очищені або " "видалені з іншої причини." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13422,11 +13401,11 @@ msgstr "" "можна розрахувати за формулою Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Загальний розмір буферного пулу, у сторінках." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13435,7 +13414,7 @@ msgstr "" "відбувається при виконанні запиту на сканування великої частини таблиці, але " "у випадковому порядку." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13443,11 +13422,11 @@ msgstr "" "Кількість послідовних випереджуючих читань, ініційованих InnoDB. Це " "відбувається, коли InnoDB здійснює послідовне повне сканування таблиці." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "Кількість логічних запитів на читання, виконаних InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13455,7 +13434,7 @@ msgstr "" "Кількість логічних читань, що InnoDB не зміг виконати з буферного пулу і був " "змушений здійснити посторінкове читання." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13469,51 +13448,51 @@ msgstr "" "підраховує кількість таких очікувань. Якщо правильно налаштовано розмір " "буферного пула, це значення буде невеликим." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "Кількість записів, здійснених в буферний пул InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Кількість операцій fsync() до цього моменту." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Поточна кількість незавершених операцій fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Поточна кількість незавершених операцій читання." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Поточна кількість незавершених операцій запису." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Обсяг прочитаних даних до цього моменту, в байтах." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Загальна кількість прочитаних даних." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Загальна кількість записаних даних." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Обсяг записаних даних до цього моменту, в байтах." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Кількість сторінок, записаних у операціях подвійного запису." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Кількість виконаних операцій подвійного запису." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13521,35 +13500,35 @@ msgstr "" "Кількість затримок, що сталися через малий буфер журналу і очікування його " "очищення для продовження." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Кількість запитів на запис у журнал." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Кількість фізичних записів у файл журналу." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Кількість записів fsync() здійснених до файлу журналу." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "Кількість незавершених fsyncs до файлу журналу." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Відкладені записи у файл журналу." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Кількість байт, записаних у файл журналу." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Кількість створених сторінок." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -13558,52 +13537,52 @@ msgstr "" "значень наводяться у сторінках, але знаючи розмір сторінки їх легко " "перевести у байти." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Кількість прочитаних сторінок." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Кількість записаних сторінок." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Кількість наразі очікуваних блокувань рядків." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Середній час виконання блокування рядка, в мілісекундах." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Загальний час, витрачений на виконання блокувань рядків, в мілісекундах." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальний час виконання блокування рядка, в мілісекундах." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Кількість разів, коли довелося чекати на блокування рядка." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Кількість рядків, видалених з таблиць InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Кількість рядків, доданих до таблиць InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Кількість рядків, прочитаних з таблиць InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Кількість рядків, оновлених з таблиць InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13611,7 +13590,7 @@ msgstr "" "Кількість індексних блоків в кеші індексу, що змінилися, але ще не були " "перенесені на диск. Раніше вона називалася Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -13619,7 +13598,7 @@ msgstr "" "Кількість невикористаних блоків у кеші індексу. Цим значенням визначається " "ступінь використання кешу індексу." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13628,15 +13607,15 @@ msgstr "" "Кількість використаних блоків в кеші індексу. Це значення сигналізує про " "максимальну кількість блоків, що були одночасно використані." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "Відсоток використаного кешу ключів (обчислене значення)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Кількість запитів на читання індексного блоку з кеша." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13646,26 +13625,26 @@ msgstr "" "то значення key_buffer_size швидше за все замале. Коефіцієнт невдалих " "звернень до кешу може бути обчислений як Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Кількість запитів запису індексного блоку до кеша." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Кількість фізичних записів індексного блоку на диску." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13676,7 +13655,7 @@ msgstr "" "одного і того ж запиту. Початкове значення 0 означає, що запиту ще " "скомпільовано не було." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13684,11 +13663,11 @@ msgstr "" "Максимальна кількість підключень, що були одночасно використані з моменту " "запуску сервера." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Кількість рядків, які чекають запису в запитах INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13696,21 +13675,21 @@ msgstr "" "Кількість таблиць, які були відкриті. Якщо відкритих таблиць забагато, кеш " "таблиць напевно вичерпується." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Кількість відкритих файлів." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Кількість відкритих потоків (використовуються в основному для ведення " "журналу)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Кількість відкритих таблиць." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13720,19 +13699,19 @@ msgstr "" "вказувати на проблеми фрагментації, яку можна виправити виконавши команду " "FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Обсяг вільної пам'яті для кешу запитів." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Кількість вдалих запитів у кеш." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Кількість запитів, доданих до кешу." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13745,7 +13724,7 @@ msgstr "" "використовує стратегію LRU (найдовше невикористовувані сторінки замінюються " "новими)." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13753,19 +13732,19 @@ msgstr "" "Кількість некешованих запитів (не кешується, або не кешовано через параметр " "query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Кількість запитів зареєстрованих в кеші." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Загальна кількість блоків у кеші запитів." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан відмовостійкі реплікації (поки не реалізовано)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13773,13 +13752,13 @@ msgstr "" "Число запитів-об'єднань, які не використовують індекси. Якщо це значення не " "дорівнює 0, необхідно уважно перевірити індекси таблиць." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Число запитів-об'єднань, які використовували пошук по діапазону таблиці, на " "яку посилаються." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13788,7 +13767,7 @@ msgstr "" "після кожного рядка. (Якщо це не 0, необхідно уважно перевірити індекси " "таблиць.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13796,17 +13775,17 @@ msgstr "" "Число запитів-сполук, які використовували діапазони в першій таблиці. " "(Значення не є критичним, навіть якщо завелике.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "Число запитів-об'єднань, які зробили повне сканування першої таблиці." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Кількість тимчасових таблиць, відкритих в даний момент підпорядкованим SQL " "потоком." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13814,13 +13793,13 @@ msgstr "" "Загальна кількість (з моменту запуску) повторних транзакцій реплікації " "підпорядкованим SQL потоком." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Надається значення ON, якщо цей сервер підпорядкованим, що підключений " "керуючого сервера." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13828,12 +13807,12 @@ msgstr "" "Кількість потоків, на створення яких знадобилося більш ніж slow_launch_time " "секунд." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Кількість запитів, які виконувалися більш ніж long_query_time секунд." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13843,23 +13822,23 @@ msgstr "" "слід розглянути питання про збільшення значення системної змінної " "sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Кількість сортувань, виконаних з використанням діапазонів." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Кількість відсортованих рядків." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "Кількість сортувань, виконаних шляхом сканування таблиці." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Кількість разів, коли блокування таблиці була виконано негайно." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13871,7 +13850,7 @@ msgstr "" "продуктивністю, необхідно спочатку оптимізувати запити і потім, або " "розділити таблицю чи таблиці, або використовувати реплікацію." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13881,11 +13860,11 @@ msgstr "" "обчислити за формулою Threads_created/Connections. Якщо це значення червоне, " "необхідно збільшити thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Кількість наразі відкритих з'єднань." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13896,11 +13875,11 @@ msgstr "" "завелике, можна збільшити значення thread_cache_size. (Зазвичай, це не дає " "помітного зростання продуктивності при гарній реалізації потоків.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "Відношення звернень до кешу потоку (обчислене значення)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Кількість потоків в активному стані." @@ -13929,37 +13908,37 @@ msgstr "Вкладки рівня бази даних" msgid "Table level tabs" msgstr "Вкладки рівня таблиці" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Переглянути користувачів" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Додати групу користувачів" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Призначення меню груп користувачів" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Назва групи:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Вкладки рівня сервера" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Вкладки рівня бази даних" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Вкладки рівня таблиці" @@ -14065,7 +14044,7 @@ msgstr "Виконати SQL запит/запити у базі даних %s" msgid "Run SQL query/queries on table %s" msgstr "Виконати SQL запит/запити у базі даних %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Очистити" @@ -14153,116 +14132,116 @@ msgstr "Деактивувати зараз" msgid "Version" msgstr "Версія" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Створено" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Оновлено" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Створити версію" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Звіт відстеження" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Знімок структури" # активна -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "активний" # не активна -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "неактивний" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Вирази відстеження" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Видалити рядки даних відстеження із звіту" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Немає даних" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL дамп (завантажити файл)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL дамп" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Ця опція замінить вашу таблицю і дані в ній." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Виконання SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Експортувати як %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Вираз маніпуляції з даними" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Вираз визначення даних" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Дата" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Ім'я користувача" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Знімок версії %s (SQL код)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Немає" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Дані відстеження визначення успішно видалені" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Дані відстеження маніпуляцій успішно видалено" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14270,63 +14249,63 @@ msgstr "" "Ви можете виконати дамп, створивши і використавши для цього тимчасову базу " "даних. Будь ласка, переконайтеся, що у вас є достатні привілеї." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Закоментуйте ці два рядка, якщо вони не потрібні." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL вирази експортовано. Будь ласка, скопіюйте дамп або виконайте його." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Звіт про відстеження для таблиці `%s`" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Відстеження за %1$s було активовано на версії %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Відстеження за %1$s було деактивоване на версії %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Створити версію %1$s із %2$s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Невідстежувані таблиці" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Відслідковувати таблицю" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Відслідковувані таблиці" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Остання версія" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Видалити дані відстеження" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Версії" @@ -14334,7 +14313,7 @@ msgstr "Версії" msgid "Manage your settings" msgstr "Керування налаштуваннями" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Конфігурація була збережена." @@ -14360,7 +14339,7 @@ msgstr "Помилка в ZIP-архіві:" msgid "No files found inside ZIP archive!" msgstr "Файлів всередині ZIP-архіву не знайдено!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14368,57 +14347,57 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Неможливо зберегти налаштування, відправлена форма містить помилки!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Не вдається імпортувати конфігурацію" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Конфігурація містить некоректні дані для деяких полів." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Ви хочете імпортувати параметри які залишились?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Збережено у: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Імпорт з файлу" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Імпортувати з браузера" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Налаштування будуть імпортовані з локальних даних браузера." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "У вас немає збережених налаштувань!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Ця властивість не підтримується вашим веб-браузером" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Злити з поточною конфігурацією" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -14427,25 +14406,25 @@ msgstr "" "Ви можете встановити більше налаштувань змінюючи файл config.inc.php, " "наприклад використовуючи %sSetup script%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Зберегти як файл" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Зберегти у браузері" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Налаштування будуть збережені у вашому браузері." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Існуючі налаштування будуть перезаписані!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Ви можете скинути всі ваші налаштування і відновити їх до значень по " @@ -14455,45 +14434,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Переглянути дамп (схему) баз даних" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Без привілеїв" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s припинено." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Завантажити" @@ -14503,18 +14482,18 @@ msgstr "" "Неправильний набір форм, перевірте масив $formsets у файлі setup/frames/form." "inc.php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Неможливо завантажити або зберегти конфігурацію" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -14522,24 +14501,27 @@ msgstr "" "Ви використовуєте незахищене з'єднання; всі дані (у тому числі потенційно " "чутлива інформація, на кшталт паролей) передаються в незашифрованому вигляді!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Якщо ваш сервер також налаштований на прийом HTTPS запитів, щоб " "використовувати захищене з'єднання, перейдіть за [a@%s]цим посиланням[/a], ." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Незахищене з'єднання" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Конфігурація збережена." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -14548,61 +14530,61 @@ msgstr "" "верхнього рівня. Щоб використовувати його скопіюйте цей файл на один рівень " "вище і видаліть каталог конфігурації." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Конфігурація збережена." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Огляд" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Показати приховані повідомлення (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Налаштовані сервери відсутні" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Новий сервер" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Стандартна мова" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "дозволити вибір користувачеві" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- немає -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Сервер за замовчанням" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Кінець рядка" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Відобразити" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Завантажити" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Домашня сторінка phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Пожертва" @@ -14638,7 +14620,7 @@ msgstr "Ігнорувати помилки" msgid "Show form" msgstr "Показати форму" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -14646,15 +14628,15 @@ msgstr "" "Не вдалося отримати поточну версію. Можливо, ви від'єднані від мережі або " "сервер оновлення не відповідає." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Від сервера отримано неприпустимий рядок версії" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Нечитабельний вміст рядка версії" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -14663,7 +14645,7 @@ msgstr "" "Якщо використовується Git версія, запустіть [kbd]git pull[/kbd] :-)" "[br]Остання стабільна версія %s, випущена %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Нова стабільна версія відсутня" @@ -14676,12 +14658,12 @@ msgstr "Неправильні дані" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Бази даних \"%s\" не існує." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Таблиця %s вже існує!" @@ -14694,35 +14676,35 @@ msgstr "Переглянути дамп (схему) таблиці" msgid "Invalid table name" msgstr "Неправильна назва таблиці" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Рядків не вибрано" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Відстеження %s - активне." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Обраних користувачів видалено вдало." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Рядків не вибрано" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL вирази виконано." @@ -14930,7 +14912,7 @@ msgid "List of available transformations and their options" msgstr "Перелік доступних перетворень та їх варіантів" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14956,7 +14938,7 @@ msgstr "" "\\xyz' чи 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -15433,17 +15415,17 @@ msgid "Size" msgstr "Розмір" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Створення" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Останнє оновлення" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Остання перевірка" @@ -15480,6 +15462,12 @@ msgstr "" "Ваш браузер містить налаштування phpMyAdmin для даного домену. Хочете " "імпортувати їх для поточної сесії?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Видалити дані відстеження" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database:" @@ -15502,10 +15490,45 @@ msgstr "Додати привілеї для цієї таблиці:" msgid "Add privileges on the following table:" msgstr "Додати привілеї для цієї таблиці:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Новий" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Немає" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Видалити обраних користувачів" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Відмінити всі активні привілеї користувачів та видалити їх після того." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Видалити бази даних, які мають такі ж назви, як імена користувачів." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Привілеї, що стосуються стовпчиків таблиці" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Обмеження ресурсів" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Вибрати двійковий журнал для перегляду" @@ -15538,7 +15561,7 @@ msgstr "Плагін" msgid "Author" msgstr "Автор" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "відключено" @@ -15704,7 +15727,7 @@ msgstr "Користувач:" msgid "Comment:" msgstr "Коментар:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15744,22 +15767,22 @@ msgstr "" msgid "Foreign key constraint" msgstr "Обмеження зовнішнього ключа" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додати обмеження" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Інтернаціональні зв'язки" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Внутрішні відносини" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15767,7 +15790,7 @@ msgstr "" "Внутрішній зв'язок не вимагається, якщо існує відповідний зв'язок за " "допомогою зовнішнього ключа (FOREIGN KEY)." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Виберіть стовпець для відображення:" @@ -15823,11 +15846,11 @@ msgstr "Початковий рядок" msgid "Replaced string" msgstr "Рядок заміни" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Заміна" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Додаткові критерії пошуку" @@ -15906,7 +15929,7 @@ msgid "at beginning of table" msgstr "На початку таблиці" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15942,28 +15965,28 @@ msgstr "Довжина рядка" msgid "Index length" msgstr "Довжина рядка" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "розділений" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Видалити розділи" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Редагувати подання" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Простір, що використовується" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Ефективність" @@ -15992,31 +16015,31 @@ msgstr "Запропонувати структуру таблиці" msgid "Track view" msgstr "Відслідковувати таблицю" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Статистика рядка" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "статичний" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "динамічний" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "розділений" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Довжина рядка" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Розмір рядка" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Наступний автоіндекс" @@ -16029,50 +16052,50 @@ msgstr "Стовпчик %s було знищено." msgid "Click to toggle" msgstr "Клікніть, щоб змінити" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Тема" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Ще теми!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Доступні MIME-types" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Доступні перетворення" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Доступні перетворення" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "Перехід до наступного кроку…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ви для цього маєте недостатньо прав!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профіль було поновлено." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -16151,7 +16174,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16176,19 +16199,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." msgstr "Жодної таблиці не обрано." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16251,29 +16274,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Подія %1$s була створена." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Шаблон імені таблиці" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На початку таблиці" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16292,10 +16315,16 @@ msgstr "Неочікувані символи в рядку %s." msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "На початку таблиці" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16342,7 +16371,7 @@ msgstr "" msgid "strict error" msgstr "Збирати помилки" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17643,6 +17672,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert встановлено у 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Авторизація за допомогою cookie" + #~ msgid "Try to connect without password." #~ msgstr "Спробувати з'єднатись без пароля." diff --git a/po/ur.po b/po/ur.po index da2d66f151..dd835b92cf 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "تعاون کریں" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "بنیادی کلید چھوڑ دیا گیا ہے" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "کھوج رپورٹ" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "ہوچکا" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Create the following table" msgstr "کوائفیہ استحقاق کی پڑتال کریں \"%s\"." -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "تلاش" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Comments" msgid "Column maximum:" msgstr "آراء-رائے" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Comments" msgid "Column minimum:" msgstr "آراء-رائے" -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "زیادہ سے زیادہ جداول" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "زیادہ سے زیادہ جداول" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "کالم اضافہ/حذف کریں" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "سطریں کے آخر میں" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "اندرونی حد %d:" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "بیرونی حد:" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "محولہ کلید منتخب کریں" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "فارن کلید منتخب کریں" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحہ نمبر" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "سارا منتخب کریں" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "سارا منتخب کریں" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "کھولیں" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "سارا منتخب کریں" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid page name" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "کالم کے لیے ایک اختیار اضافہ کریں " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "آراء-رائے" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "تمام دکھائیں" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "سطریں کے آخر میں" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "منسوخ کریں" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "طے شدہ درآمد" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "سارا منتخب کریں" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "چھاپیں" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Logo link URL" msgid "Go to link:" msgstr "علامت ربط URL" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "آراء-رائے" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "مزید" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "تمام دکھائیں" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "اشاریے" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2638,122 +2643,122 @@ msgstr "" "%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show color" msgid "Show report details" msgstr "کلر دکھائیں" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "نظر انداز کریں" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy msgid "Execute this query again?" msgstr "SQL طلب" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to delete user group \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "کیا آپ واقعی صارفین کے گروپ \"%s\" کو حذف کرنا چاہتے ہیں؟" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جدول تبصرے" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "Hide search criteria" msgid "Hide arguments" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2762,38 +2767,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "کوائفیہ نقل کریں بطرف" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "پچھلا" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2801,149 +2826,149 @@ msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "آج" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "جنوری" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "فروری" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "مارچ" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "اپریل" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "مئی" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "جون" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "جولائی" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "اگست" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "ستمبر" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "اکتوبر" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "نومبر" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "پیر" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2951,207 +2976,207 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "ہفتہ وار" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "Done" msgctxt "Year suffix" msgid "none" msgstr "ہوچکا" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "منٹ" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "سیکنڈ" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "متن قطعے" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid credit card number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a value less than or equal to {0}" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "نقص" @@ -3213,20 +3238,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "ترتیب" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3423,7 +3448,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3471,56 +3496,56 @@ msgstr "" msgid "Font size" msgstr "فانٹ سائز" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "تلاش" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL طلب خانہ" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Configuration file" msgid "Failed to set configured collation connection!" msgstr "تشکیلی مسل" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Enter server connection parameters" msgid "Missing connection parameters!" msgstr "سرور سے جڑنے کے لیے پیرا میٹر داخل کریں" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3628,74 +3653,74 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "کوائفیہ کے لیے %s SQL طلب:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "طلب بھیجیں" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "تلاش" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "تلاش" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "تلاش" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "نشانی دکھاتے ہوئے" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Search" msgid "Delete bookmark" msgstr "تلاش" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "کم از کم لفظوں میں سے ایک" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "تمام الفاظ" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "بعین فقرہ" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "بطور باقاعدہ اظہار" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "تلاش نتائج برائے \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "تمام: %s مشابہ" msgstr[1] "تمام: %s مشابہات" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -3704,52 +3729,47 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "براؤز" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "اس جدول کے مشابہات حذف %s کریں؟" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "کوائفیہ میں تلاش کریں" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الفاظ یا قدروں کی تلاش برائے (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "ڈھونڈیں:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "الفاظ ایک خالی حرف سے جدا جدا ہیں (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "جدول میں:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "تمام انتخاب ختم کریں" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "کالم میں:" @@ -3777,16 +3797,16 @@ msgstr "ابتدائیہ" msgid "Search this table" msgstr "کوائفیہ میں تلاش کریں" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3795,8 +3815,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "پچھلا" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3805,8 +3825,8 @@ msgctxt "Next page" msgid "Next" msgstr "اگلا" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3817,7 +3837,7 @@ msgstr "اختتام" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3826,8 +3846,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3849,10 +3869,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3894,36 +3914,36 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The bookmark has been deleted." msgid "The row has been deleted." msgstr "نشانی حذف ہو چکی ہے۔" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [doc@faq1-11]عمومی سوالات 1.11[/doc]" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3931,81 +3951,81 @@ msgid "" msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d total" msgstr "%s جدول" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "مع منتخب:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "تمام پڑتال کریں" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Theme %s not found!" msgid "Link not found!" msgstr "خیالیہ %s نیہں ملا!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4013,77 +4033,77 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "درآمد" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "اپ لوڈ مسل نے HTML فارم میں مخصوص MAX_FILE_SIZE ہدایات سے تجاوز کی۔" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "ایک عارضی پوشہ موجود نہیں ہے۔" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "ڈسک پر مسل تحریر ناکام ہوا۔" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "مسل قابل مطالعہ نہیں ہے" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [doc@faq1-11]عمومی سوالات 1.11[/doc]" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4092,28 +4112,28 @@ msgstr "" "آپ نے غیر معاون سکڑاؤ (%s) کے ساتھ مسل لوڈ کرنے کی کوشش کی ہے۔ ممکن ہے کہ یہ " "معاونت لاگو نہیں ہے یا پھر تشکیل میں نااہل کیا گیا ہے۔" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "چھپائی منظر" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4124,20 +4144,20 @@ msgid "No index defined!" msgstr "کوئی اشاریہ موجود نہیں!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "اشاریے" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4147,59 +4167,59 @@ msgstr "اشاریے" msgid "Action" msgstr "عمل" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "کلید نام" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "منفرد" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "باندھنا" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "درجہ تعلق داری" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "تبصرہ" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "بنیادی کلید چھوڑ دیا گیا ہے" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "اشاریہ %s چھوڑ دیا گیا ہے۔" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "گرائیں" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -4208,19 +4228,19 @@ msgstr "" "اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا " "جائے گا۔" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "صفحہ نمبر:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "" @@ -4244,11 +4264,11 @@ msgstr "سرور" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4267,14 +4287,15 @@ msgid "View" msgstr "نقل جدول" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4283,8 +4304,8 @@ msgid "Table" msgstr "جدول" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4292,45 +4313,45 @@ msgstr "جدول" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "تلاش" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "داخل کریں" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "عملیات" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4346,16 +4367,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4363,22 +4384,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "کوائفیے" @@ -4387,53 +4408,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "چربہ کاری" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d صف مناثر ہوئے۔" msgstr[1] "%1$d صفیں متاثر ہوئیں۔" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d صف حذف ہوئے۔" msgstr[1] "%1$d صفیں حذف ہوئیں۔" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4499,31 +4520,31 @@ msgstr "حداول کی گنتی کریں" msgid "Favorites" msgstr "حداول کی گنتی کریں" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "Missing information to save the bookmarked search." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "Error: relation already exists." msgid "An entry with this name already exists." msgstr "غلطی : ریلیشن پہلے سے موجود ہے۔" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" @@ -4586,7 +4607,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4642,87 +4663,87 @@ msgid_plural "%d minutes" msgstr[0] "منٹ" msgstr[1] "منٹ" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "اس ذخیرہ انجن کے متعلق تفصیلی معلومات موجود نہیں ہیں۔" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s اس MySQL سرور میں دستیاب ہے۔" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔" -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Count tables" msgid "Unknown table status:" msgstr "حداول کی گنتی کریں" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "خیالیہ %s نیہں ملا!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "غلط کوائفیہ" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "غلط جدول نام" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Could not open file: %s" msgid "Could not save table UI preferences!" msgstr "مسل نہیں کھول سکتا: %s" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4730,19 +4751,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5015,7 +5036,7 @@ msgid "Date and time" msgstr "تخلیق کیا گیا" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5034,70 +5055,70 @@ msgstr "میزان" msgid "Max: %s%s" msgstr "زیادہ سے زیادہ: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL نے کہا: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "SQL وضاحت کو چھوڑیں" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP کوڈ کے بغیر" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "طلب بھیجیں" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP کوڈ بنائیں" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "تازہ کریں" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "تفصیلات" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5105,65 +5126,65 @@ msgid "Edit inline" msgstr "تدوین موڈ" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "اتوار" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y پر %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "کوائفیہ میں جائیں \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے۔" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "خالی" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "" @@ -5177,7 +5198,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -5185,12 +5206,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "تلاش کريں:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5198,7 +5219,7 @@ msgstr "تلاش کريں:" msgid "Description" msgstr "تفصیل" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "یہ قدر استعمال کریں" @@ -5239,22 +5260,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -5265,7 +5286,7 @@ msgstr "" msgid "Attribute" msgstr "تعاون کریں" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5288,13 +5309,13 @@ msgstr "فیلڈ کالمز شامل یا ختم کریں" msgid "Select a column." msgstr "کالم اضافہ/حذف کریں" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add new column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5302,7 +5323,7 @@ msgstr "فیلڈ کالمز شامل یا ختم کریں" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5312,27 +5333,27 @@ msgstr "" "phpMyAdmin کے ساتھ مطابقت نہیں رکھتی اور ساتھ ساتھ اعداد و شمار خراب کرنے کا " "موجب بھی بن سکتی ہے!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "غلط سرور اشاریہ: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سرور" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5340,20 +5361,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5962,7 +5983,7 @@ msgid "Compress on the fly" msgstr "سرعت سے سکیڑیں" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "تشکیلی مسل" @@ -6089,13 +6110,13 @@ msgstr "" msgid "Maximum execution time" msgstr "چلنے کی حد اوقات" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "Add constraints" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "بطور مسل محفوظ کریں" @@ -6105,7 +6126,7 @@ msgstr "مسل کے لیے حروف کی سیٹ" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "وضع" @@ -6240,7 +6261,7 @@ msgid "Save on server" msgstr "سرور پہ محفوظ کریں" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "موجودہ مسل پر تحریر کریں" @@ -6255,7 +6276,7 @@ msgid "Remember file name template" msgstr "مسل نام سانچا یاد رکھیں" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" @@ -6264,7 +6285,7 @@ msgid "Enclose table and column names with backquotes" msgstr "جدول اور کالم نام کو الٹے کوٹ سے بند کریں" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL موازنت موڈ" @@ -6298,7 +6319,7 @@ msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "اضافہ کریں %s" @@ -6502,7 +6523,7 @@ msgid "Customize the navigation tree." msgstr "گشت چوکھٹے کی تخصیص کریں" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "سرور" @@ -7583,7 +7604,7 @@ msgstr "HTTP اختیار" msgid "Authentication method to use." msgstr "توثیق کا طریقہ جو استعمال ہو" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "توثیق قسم" @@ -8373,7 +8394,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -8381,10 +8402,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -8535,25 +8556,25 @@ msgstr "" msgid "OpenDocument Text" msgstr "اوپن دستاویز" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "جدول %s خالی ہوچکا ہے" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -8568,12 +8589,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -8582,7 +8603,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -8596,16 +8617,16 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "ڈیٹا بیس %1$s بنا دیا گیا ہے۔" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8613,26 +8634,26 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "کوائفیہ %s چھوڑ دیا گیا ہے۔" msgstr[1] "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "صفیں" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "میزان" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "مجموعی" @@ -8659,34 +8680,34 @@ msgstr "" msgid "Enable statistics" msgstr "طلب شماریات" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "data" msgid "No data to display" msgstr "کوائف" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -8739,7 +8760,7 @@ msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -8759,12 +8780,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -8787,13 +8808,13 @@ msgstr "" msgid "Distinct values" msgstr "یہ قدر استعمال کریں" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8815,190 +8836,194 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "درآمد پلگ ان لوڈ نہیں ہو سکے، اپنی تنصیب کی پڑتال کریں!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "پاس ورڈ:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password:" msgid "Password Hashing:" msgstr "پاس ورڈ:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "No tables found in database." msgid "Exporting databases from the current server" msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "No tables found in database." msgid "Exporting tables from \"%s\" database" msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "No tables found in database." msgid "Exporting rows from \"%s\" table" msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export type" msgid "Export templates:" msgstr "برآمد قسم" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "Page number:" msgid "New template:" msgstr "صفحہ نمبر" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Page number:" msgid "Template name" msgstr "صفحہ نمبر" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template:" msgstr "%s جدول" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "تازہ کی گئی" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select All" msgid "Select a template" msgstr "سارا منتخب کریں" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export method" msgid "Export method:" msgstr "برآمد طریقہ" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "کوائفیے" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "جداول" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -9006,115 +9031,115 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "No tables found in database." msgid "Export databases as separate files" msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "Export method" msgid "Export tables as separate files" msgstr "برآمد طریقہ" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select All" msgid "Select database" msgstr "سارا منتخب کریں" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select All" msgid "Select table" msgstr "سارا منتخب کریں" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "Database" msgid "New database name" msgstr "ڈیٹا بیس" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "Page number:" msgid "New table name" msgstr "صفحہ نمبر" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Comments" msgid "Old column name" msgstr "آراء-رائے" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Comments" msgid "New column name" msgstr "آراء-رائے" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "General relation features" msgid "committed on %1$s by %2$s" msgstr "جنرل ریلیشن فیچرز" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "General relation features" msgid "authored on %1$s by %2$s" @@ -9527,13 +9552,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "مسل %s محفوظ کرنے کے لیے ناکافی جگہ ہے۔" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9541,78 +9566,78 @@ msgstr "" "مسل %s اس سرور میں پہلے سے موجود ہے، مسل نام تبدیل کریں یا بر تحریر اختیار " "پڑتال کریں۔" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "اس مسل %s کو محفوظ کرنے کے لیے ویب سرور کے پاس اجازت نہیں ہے۔" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "کوائفیہ جائیں" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "حداول کی گنتی کریں" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "صرف ساخت" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9623,88 +9648,89 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "یا" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "Select from the web server upload directory %s:" msgid "web server upload directory:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "داخل کریں" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "اور پھر" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -9715,31 +9741,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "صرف ساخت" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "ساخت اور کوائف" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "کوائف صرف" @@ -9750,14 +9776,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "پابندیاں لگائیں" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Reloading Privileges" @@ -9816,8 +9842,8 @@ msgstr "طریقہ چھوڑا جارہا ہے" msgid "Views:" msgstr "ویو" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "ظاہر کریں" @@ -9864,19 +9890,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "بطور مسل محفوظ کریں" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -9892,7 +9918,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -9915,7 +9941,7 @@ msgstr "" msgid "Database operations" msgstr "کوائفیہ دکھانے کے اختیارات" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -10020,13 +10046,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete columns" msgid "Select one…" msgstr "کالم اضافہ/حذف کریں" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "No such column" @@ -10280,8 +10306,8 @@ msgid "Rename database to" msgstr "کوائفیہ نام بدلیں" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10327,81 +10353,81 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "جدول تبصرے" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "جدول تجزیہ کریں" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "جدول پڑتال کریں" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "جدول پڑتال کریں" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "جدول احسن کریں" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "جدول مرمت کریں" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -10409,105 +10435,105 @@ msgstr "جدول مرمت کریں" msgid "Delete data or table" msgstr "اس ٹیبل کیلئے ٹریکنگ ڈیٹا حذف کریں " -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "ڈیٹا بیس کاپی کریں" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "بند" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -10534,18 +10560,18 @@ msgstr "کلر دکھائیں" msgid "Only show keys" msgstr "صرف کیز دیکھیں" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "جڑ نہیں سکتا: غلط ترتیبات۔" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "%s میں خوش آمدید" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -10554,7 +10580,7 @@ msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -10565,7 +10591,7 @@ msgstr "" "ہوسٹ، صارف نام، پاس ورڈ کو اپنے تشکیل میں پڑتال کریں اور اثبات کریں کہ دی " "گئی معلومات MySQL سرور منتظم نے دیے ہیں۔" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -10592,15 +10618,15 @@ msgstr "صارف نام:" msgid "Server Choice:" msgstr "سرور انتخاب" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -10663,7 +10689,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10672,7 +10698,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -10680,8 +10706,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -10781,7 +10807,7 @@ msgstr "کالم نام پہلے صف میں ڈالیں" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -11340,7 +11366,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -11690,18 +11716,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11709,41 +11735,41 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -11752,309 +11778,309 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "% aborted connections" msgid "Master connection:" msgstr "جڑنے کو سکیڑیں" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "سٹرکچر صرف" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "سٹرکچر صرف" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "Username:" msgid "User name:" msgstr "صارف نام:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Portrait" msgid "Port:" msgstr "پورٹریٹ" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "متن قطعے" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "پاس ورڈ بنائیں" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "نقص" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -12077,7 +12103,7 @@ msgstr "Table %s has been dropped" msgid "Event %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12088,85 +12114,85 @@ msgstr "" msgid "Edit event" msgstr "نیا صارف اضافہ کریں" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Page number:" msgid "Event name" msgstr "صفحہ نمبر" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "ابتدائیہ" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "اختتام" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "داخل کرنا مکمل ہوا" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "غلط جدول نام" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in Processing Request" @@ -12189,7 +12215,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Action" msgid "Returns" @@ -12203,150 +12229,150 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "تدوین موڈ" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "غلط سرور اشاریہ: %s" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "آراء-رائے" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "بنائیں" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "کوائفیہ ہٹائیں" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "عمل" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "سلامتی" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "غلط جدول نام" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -12372,44 +12398,44 @@ msgstr "کوائفیہ $1%s بن گئی ہے۔" msgid "Edit trigger" msgstr "نیا صارف اضافہ کریں" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Page number:" msgid "Trigger name" msgstr "صفحہ نمبر" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "وقت" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "غلط جدول نام" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "غلط جدول نام" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "غلط جدول نام" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "غلط جدول نام" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -12548,601 +12574,554 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "بہتر جوڑ" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "بہتر جوڑ" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Routine" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "توثیق" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "خفیہ ہندسہ تبدیل کریں" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Authentication" -msgid "Native MySQL Authentication" -msgstr "توثیق" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "صارف نام:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Comments" msgid "Host name" msgstr "آراء-رائے" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "توثیق" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "پاس ورڈ:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Add %s" msgid "Add user account" msgstr "اضافہ کریں %s" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Databases display options" msgid "Database for user account" msgstr "کوائفیہ دکھانے کے اختیارات" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Check privileges for database \"%s\"." msgid "Grant all privileges on database %s." msgstr "کوائفیہ استحقاق کی پڑتال کریں \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "استحقاق پڑتال کریں" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Removing Selected Users" -msgid "Remove selected user accounts" -msgstr "منتخب صارفین حذف کیے جا رہے ہیں" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "استحقاق پڑتال کریں" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13151,7 +13130,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13160,11 +13139,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -13462,12 +13441,12 @@ msgstr "حکم" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show logo in left frame" msgid "Show only active" @@ -13495,12 +13474,12 @@ msgstr "منٹ" msgid "per second:" msgstr "سیکنڈ" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -13530,33 +13509,33 @@ msgstr "بائیں جھروکہ میں علامت دکھائیں" msgid "Related links:" msgstr "لپیٹنا" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13564,78 +13543,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13643,7 +13622,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13651,42 +13630,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13694,33 +13673,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13729,244 +13708,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "درآمد مسل کی وضع" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13974,99 +13953,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14074,18 +14053,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14093,13 +14072,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "کھوج غیر فعال ہے۔" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -14134,47 +14113,47 @@ msgstr "کوائفیہ سرور" msgid "Table level tabs" msgstr "جدول تبصرے" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "ویو" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add %s" msgid "Add user group" msgstr "اضافہ کریں %s" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Comments" msgid "Group name:" msgstr "آراء-رائے" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version:" msgid "Server-level tabs" msgstr "سرور نسخہ:" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "کوائفیہ سرور" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14286,7 +14265,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "SQL طلب لاگ جدول" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -14377,183 +14356,183 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "بنایا" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "تازہ کی گئی" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Use light version" msgid "Delete version" msgstr "ہلکا ورژن استعمال کریں" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "کھوج رپورٹ" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "ساخت تصویر" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "فعال" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "غیر فعال" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "data" msgid "No data" msgstr "کوائف" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "کھوج فعال ہے۔" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "کھوج فعال ہے۔" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "General relation features" msgid "Version %1$s of %2$s was deleted." msgstr "جنرل ریلیشن فیچرز" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "بغیر کھوج جداول" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "جدول کھوج" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "کھوج شدہ جداول" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "آخری نسخہ" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "کھوج کوائف حذف کیا جا رہے ہیں" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "نسخہ جات" @@ -14563,7 +14542,7 @@ msgstr "نسخہ جات" msgid "Manage your settings" msgstr "جنرل ریلیشن فیچرز" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -14589,7 +14568,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -14597,82 +14576,82 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "بطور مسل محفوظ کریں" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -14680,45 +14659,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -14726,101 +14705,100 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." msgstr "تشکیل ذخیرہ" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration storage" msgid "Configuration not saved!" msgstr "تشکیل ذخیرہ" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -14856,28 +14834,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -14892,12 +14870,12 @@ msgstr "کوائف" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -14910,36 +14888,36 @@ msgstr "" msgid "Invalid table name" msgstr "غلط جدول نام" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "Removing Selected Users" msgid "No row selected." msgstr "منتخب صارفین حذف کیے جا رہے ہیں" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." msgstr "کھوج فعال ہے۔" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "Database %s has been dropped." msgid "Tracking versions deleted successfully." msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "Removing Selected Users" msgid "No versions selected." msgstr "منتخب صارفین حذف کیے جا رہے ہیں" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -15148,7 +15126,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Servers display options" msgid "Browser display transformation" @@ -15170,7 +15148,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Version information:" msgid "Input transformation" @@ -15706,17 +15684,17 @@ msgid "Size" msgstr "ناپ" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "بنائیں" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "آخری دفعہ کی تازہ کاری" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "آخری دفعہ کی پڑتال" @@ -15751,6 +15729,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Deleting tracking data" +msgid "Delete settings " +msgstr "کھوج کوائف حذف کیا جا رہے ہیں" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Check privileges for database \"%s\"." @@ -15771,10 +15755,45 @@ msgstr "کوائفیہ استحقاق کی پڑتال کریں \"%s\"." msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Removing Selected Users" +msgid "Remove selected user accounts" +msgstr "منتخب صارفین حذف کیے جا رہے ہیں" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -15809,7 +15828,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -15999,7 +16018,7 @@ msgstr "صارف:" msgid "Comment:" msgstr "تبصرہ" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -16037,30 +16056,30 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "پابندیاں لگائیں" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 #, fuzzy #| msgid "Internal relation added" msgid "Internal relations" msgstr "اندرونی ریلیشن شامل ہو گیا" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16126,13 +16145,13 @@ msgstr "سطریں کے آخر میں" msgid "Replaced string" msgstr "لپیٹنا" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replicated" msgid "Replace" msgstr "نقل ہوا" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" @@ -16219,7 +16238,7 @@ msgid "at beginning of table" msgstr "ٹیبلز کی جسامت دیکھیں" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16251,30 +16270,30 @@ msgstr "سطریں کے آخر میں" msgid "Index length" msgstr "اشاریے" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "Relations" msgid "Partition table" msgstr "تعلقات" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Edit mode" msgid "Edit partitioning" msgstr "تدوین موڈ" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "چھپائی منظر" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -16305,33 +16324,33 @@ msgstr "کوائفیے" msgid "Track view" msgstr "جدول کھوج" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Query statistics" msgid "Row statistics" msgstr "طلب شماریات" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -16347,48 +16366,48 @@ msgstr "Table %s has been dropped" msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Tables display options" msgid "Available browser display transformations" msgstr "جداول دکھانے کے اختیارات" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "کھوج رپورٹ" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password:" msgid "Password is too long!" @@ -16463,7 +16482,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -16488,19 +16507,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "Removing Selected Users" msgid "An alias was expected." msgstr "منتخب صارفین حذف کیے جا رہے ہیں" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -16557,29 +16576,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "جدول نام سانچا" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "ٹیبلز کی جسامت دیکھیں" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -16596,10 +16615,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Show dimension of tables" +msgid "Unexpected ordering of clauses." +msgstr "ٹیبلز کی جسامت دیکھیں" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16644,7 +16669,7 @@ msgstr "" msgid "strict error" msgstr "نقائص اکھٹی کریں" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -17818,6 +17843,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "توثیق" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/uz.po b/po/uz.po index 3822aa1dc9..bc715e3cc3 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-04-03 12:44+0000\n" "Last-Translator: Murodjon Abduvohidov \n" "Language-Team: Uzbek 1);\n" "X-Generator: Weblate 2.6-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -27,31 +27,31 @@ msgstr "" "Ушбу тизимда %s файли мавжуд эмас, мархамат, қўшимча маълумотларни олиш учун " "www.phpmyadmin.net сайтига ташриф буюринг." -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "Саралаш учун сичқон тугмасини чертинг" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "%1$s -дан %2$s гача қаторларни кўрсатиш" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "Маълумотлар базасига изоҳ" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "Изоҳлар жадвали:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -63,13 +63,13 @@ msgstr "Изоҳлар жадвали:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -80,9 +80,9 @@ msgstr "Изоҳлар жадвали:" msgid "Column" msgstr "Устун" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -93,12 +93,12 @@ msgstr "Устун" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -110,9 +110,9 @@ msgstr "Устун" msgid "Type" msgstr "Тур" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -123,15 +123,15 @@ msgstr "Тур" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "Null" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -142,14 +142,14 @@ msgstr "Null" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "Андоза" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -159,7 +159,7 @@ msgstr "Андоза" msgid "Links to" msgstr "Алоқалар" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -173,19 +173,19 @@ msgstr "Алоқалар" msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "Бирламчи" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -193,13 +193,13 @@ msgstr "Бирламчи" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -207,17 +207,17 @@ msgstr "Бирламчи" msgid "No" msgstr "Йўқ" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -226,13 +226,13 @@ msgstr "Йўқ" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -244,15 +244,15 @@ msgstr "Ҳа" msgid "View dump (schema) of database" msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -261,8 +261,8 @@ msgid "Tables" msgstr "Жадваллар" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -270,10 +270,10 @@ msgstr "Жадваллар" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,30 +286,30 @@ msgstr "Тузилиши" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "Маълумотлар" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 #, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Барчасини белгилаш" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:137 +#: db_operations.php:138 #, fuzzy, php-format #| msgid "Database %1$s has been renamed to %2$s." msgid "Database %1$s has been renamed to %2$s." msgstr "\"%1$s\" маълумотлар базасининг номи \"%2$s\" га ўзгартирилди" -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "%1$s базасидан %2$s базасига нусха кўчирилди" @@ -325,44 +325,44 @@ msgstr "" "PhpMyAdmin нинг баъзи қўшимча имкониятлари фаол эмас. Сабабларини аниқлаш " "учун %sбу ерга%s босинг." -#: db_qbe.php:125 +#: db_qbe.php:126 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sсўровларнинг визуал таркибига%s ўтиш" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "Рухсат берилмади!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data deleted successfully." msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: db_tracking.php:61 +#: db_tracking.php:62 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: db_tracking.php:92 +#: db_tracking.php:93 #, fuzzy #| msgid "No databases selected." msgid "No tables selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "База лог файлини" @@ -402,165 +402,165 @@ msgstr "Суров тури нотугри!" msgid "Bad parameters!" msgstr "Параметрлар нотугри!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Индекс(лар)ни сақлаш" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Қаторлар бўлувчиси" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Polygon %d:" msgstr "Устун(лар) қўшиш" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" msgstr "Устун(лар) қўшиш" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "OK" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -#: import.php:63 +#: import.php:64 #, fuzzy #| msgid "Access denied!" msgid "Succeeded" msgstr "Рухсат берилмади!" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "" -#: import.php:71 +#: import.php:72 #, fuzzy #| msgid "Complete inserts" msgid "Incomplete params" msgstr "Тўла қўйиш" -#: import.php:195 +#: import.php:196 #, fuzzy, php-format #| msgid "" #| "You probably tried to upload too large file. Please refer to " @@ -572,15 +572,15 @@ msgstr "" "Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " "%sдокументацияда%s келтирилган." -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "Хатчўп ўчирилди." -#: import.php:489 +#: import.php:486 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 " @@ -590,20 +590,20 @@ msgstr "" "қилинаётган файл ҳажми PHP конфигурацион файлида кўрсатилган максимал " "қийматдан катта. Қаранг: [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 #, fuzzy msgid "Could not load import plugins, please check your installation!" msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." msgstr "\"%s\" хатчўпи тузилди" -#: import.php:593 +#: import.php:590 #, fuzzy, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." @@ -611,7 +611,7 @@ msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Импорт муваффақиятли тугатилди, бажарилган сўровлар сони: %d." msgstr[1] "Импорт муваффақиятли тугатилди, бажарилган сўровлар сони: %d." -#: import.php:622 +#: import.php:619 #, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " @@ -624,7 +624,7 @@ msgstr "" "ўша файлни танлаган ҳолда уни қайта ишга туширинг ва жараён узилган жойдан " "бошлаб давом этади." -#: import.php:632 +#: import.php:629 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." @@ -633,7 +633,7 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." @@ -641,19 +641,19 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "Орқага" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 #, fuzzy #| msgid "phpMyAdmin homepage" msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin сайти" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -661,53 +661,53 @@ msgid "" "at %s." msgstr "" -#: index.php:166 +#: index.php:167 #, fuzzy #| msgid "General relation features" msgid "General settings" msgstr "Алоқаларнинг асосий имкониятлари" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "Паролни ўзгартириш" -#: index.php:213 +#: index.php:214 #, fuzzy #| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "MySQL билан уланишни чоғиштириш" -#: index.php:234 +#: index.php:235 #, fuzzy #| msgid "Other core settings" msgid "Appearance settings" msgstr "Бошқа созланишлар" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 #, fuzzy #| msgid "settings" msgid "More settings" msgstr "танловлар" -#: index.php:288 +#: index.php:289 #, fuzzy #| msgid "Database for user" msgid "Database server" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "Сервер:" -#: index.php:295 +#: index.php:296 #, fuzzy #| msgid "Server port" msgid "Server type:" msgstr "Сервер порти" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 #, fuzzy @@ -715,85 +715,85 @@ msgstr "Сервер порти" msgid "Server version:" msgstr "Сервер версияси" -#: index.php:305 +#: index.php:306 #, fuzzy #| msgid "Protocol version" msgid "Protocol version:" msgstr "Протокол версияси" -#: index.php:309 +#: index.php:310 #, fuzzy #| msgid "User" msgid "User:" msgstr "Фойдаланувчи" -#: index.php:314 +#: index.php:315 #, fuzzy #| msgid "Server socket" msgid "Server charset:" msgstr "Сервер сокети" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "Веб сервер" -#: index.php:338 +#: index.php:339 #, fuzzy #| msgid "Use light version" msgid "Database client version:" msgstr "Енгил версиядан фойдаланиш" -#: index.php:342 +#: index.php:343 #, fuzzy #| msgid "PHP extension" msgid "PHP extension:" msgstr "PHP кенгайтмаси" -#: index.php:356 +#: index.php:357 #, fuzzy #| msgid "PHP Version" msgid "PHP version:" msgstr "PHP версиясм" -#: index.php:377 +#: index.php:378 #, fuzzy #| msgid "Version information" msgid "Version information:" msgstr "Версия ҳақида маълумот" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Документация" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "phpMyAdmin расмий веб-саҳифаси" -#: index.php:402 +#: index.php:403 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибутлар" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "" -#: index.php:416 +#: index.php:417 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Ўзгариш йўқ" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "" -#: index.php:443 +#: index.php:444 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 " @@ -804,13 +804,13 @@ msgstr "" "маълумот йўқолишига олиб келиши мумкин. PHP \"mbstring\" кенгайтмасини " "ўрнатиш қатъий тавсия этилади." -#: index.php:458 +#: index.php:459 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 "" -#: index.php:473 +#: index.php:474 #, fuzzy #| msgid "" #| "Your PHP parameter [a@https://secure.php.net/manual/en/session." @@ -830,7 +830,7 @@ msgstr "" "ҳақиқийлиги давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin " "дастурида конфигурация қилганингиздан тезроқ тугайди." -#: index.php:492 +#: index.php:493 #, fuzzy #| msgid "" #| "r PHP parameter [a@https://secure.php.net/manual/en/session.configuration." @@ -847,17 +847,17 @@ msgstr "" "ҳақиқийлиги давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin " "дастурида конфигурация қилганингиздан тезроқ тугайди." -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "cookie-аутентификация ишлатилганда, конфигурацион файлдаги " "$cfg[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -#: index.php:528 +#: index.php:529 #, fuzzy #| msgid "" #| "Directory [code]config[/code], which is used by the setup script, still " @@ -873,7 +873,7 @@ msgstr "" "каталоги ҳалиям мавжуд. phpMyAdmin муваффақиятли ўрнатилгандан кейин, уни " "ўчириш тавсия этилади." -#: index.php:544 +#: index.php:545 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -885,12 +885,12 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -899,7 +899,7 @@ msgstr "" "MySQL-клиент версияси (\"%s\") ўрнатилган MySQL-сервер версияси(\"%s\")дан " "фарқ қилмоқда. Бу ҳолат нохуш оқибатларга олиб келиши мумкин." -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -1086,7 +1086,7 @@ msgid "Save & close" msgstr "Файл каби сақлаш" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "Тозалаш" @@ -1130,7 +1130,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Edit index" msgstr "Таҳрирлаш усули" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s) to index" @@ -1166,10 +1166,10 @@ msgstr "Устун(лар) қўшиш" msgid "You have to add at least one column." msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт." -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "" @@ -1185,7 +1185,7 @@ msgstr "сўров бўйича" msgid "Matched rows:" msgstr "Блокировка қилинган саҳифалар сони" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -1206,13 +1206,13 @@ msgstr "Хост номи бўш!" msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" @@ -1222,8 +1222,8 @@ msgstr "Киритилган пароллар бир хил эмас!" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "Ёпиш" @@ -1251,19 +1251,19 @@ msgstr "Ёзув ўчирилди" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "," @@ -1389,40 +1389,40 @@ msgid "Processes" msgstr "Жараёнлар" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "ЭБ" @@ -1443,7 +1443,7 @@ msgstr "Версиялар" msgid "Traffic" msgstr "Трафик" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "settings" @@ -1461,16 +1461,16 @@ msgid "Please add at least one variable to the series!" msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "Йўқ" @@ -1675,20 +1675,20 @@ msgstr "Таҳлил" msgid "Explain output" msgstr "Сўров таҳлили" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "Ҳолат" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "Вақт" @@ -1788,10 +1788,10 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "Импорт" @@ -1878,7 +1878,7 @@ msgstr "Параметрлар нотугри!" msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 #, fuzzy #| msgid "Other core settings" msgid "Page-related settings" @@ -1928,8 +1928,8 @@ msgid "Error text: %s" msgstr "" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." @@ -1977,7 +1977,7 @@ msgstr "Маълумотлар базасидан қуйидагига нусх msgid "Changing charset" msgstr "Кодировка" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" @@ -2018,76 +2018,81 @@ msgstr "Кўриб чиқиш" msgid "Deleting" msgstr "\"%s\" ўчирилмоқда" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s жадвалидаги мосликларни ўчирасизми?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "Экспорт" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "%s устуни учун қийматлар" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Янги фойдаланувчи қўшиш" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -2095,106 +2100,106 @@ msgstr "SQL сўровлари қутиси" msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Ўчириш" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас." -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "" -#: js/messages.php:416 +#: js/messages.php:417 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Ўзгарувчи" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "" -#: js/messages.php:420 +#: js/messages.php:421 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:421 +#: js/messages.php:422 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Маълумотлар базасида қидириш" -#: js/messages.php:423 +#: js/messages.php:424 #, 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 "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибутлар" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" га бирламчи калит қўшилди" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Кузатиш ҳисоботи" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2202,556 +2207,556 @@ msgstr "" msgid "End of step" msgstr "Сатр охири" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Қуйидаги сўровлар бажарилди:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сақлаш" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Қидириш" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Майдон номлари" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Майдон номлари" -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Максимал жадваллар сони" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Максимал жадваллар сони" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Устун қўшиш/ўчириш" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Қаторлар бўлувчиси" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Қаторлар бўлувчиси" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Кўрсатиладиган майдонни танлаш" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Саҳифа рақами: " -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Жадвалларни танланг" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Жадвалларни танланг" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Бўш саҳифалар сони" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Жадвалларни танланг" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Нотўғри порт номери" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Алоқалар схемасини тахрирлаш ёки экспорт қилиш" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "%s устуни учун қийматлар" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Бажариш" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Майдон номлари" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Барчасини кўрсатиш" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Асл позиция" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Бекор қилиш" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Узилди" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Импорт" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Журнал файли остонаси" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Жадвалларни танланг" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Чоп этиш" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ушбу кўринишга ўтиш" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Майдон номлари" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Барчасини кўрсатиш" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Чап рамкада логотипни кўрсатиш" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Асосий рамкани мослаштириш" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Асосий рамкани мослаштириш" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2762,129 +2767,129 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Сервер порти" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Сервер порти" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Бошқа созланишлар" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Очиқ жадваллар рўйхати" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Эътибор бермаслик" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ушбу сўровни қайта кўрсатиш" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL сўровлари" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Жадвал изоҳи" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL сўровлари қутиси" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2893,36 +2898,56 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Жадвал префиксини алмаштириш" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Жадвални префикси билан нусхалаш" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Орқага" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2930,96 +2955,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Май" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3027,78 +3052,78 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Дек" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3106,86 +3131,86 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3194,139 +3219,139 @@ msgstr "Вики" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Йўқ" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундига" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Матнмайдонини ишлатиш" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Нотўғри порт номери" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Нотўғри порт номери" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Нотўғри порт номери" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Нотўғри порт номери" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Нотўғри порт номери" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Нотўғри порт номери" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Нотўғри порт номери" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Нотўғри порт номери" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Нотўғри порт номери" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Нотўғри порт номери" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Нотўғри порт номери" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Нотўғри порт номери" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Хатолик" @@ -3389,20 +3414,20 @@ msgid "Charset" msgstr "Кодировка" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Таққослаш" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Иккилик" @@ -3599,7 +3624,7 @@ msgid "Czech-Slovak" msgstr "Чехословакча" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "номаълум" @@ -3652,32 +3677,32 @@ msgstr "" msgid "Font size" msgstr "Шрифт ўлчами" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Боғлиқликни ўчириш" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL сўровлари қутиси" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to set configured collation connection!" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3685,27 +3710,27 @@ msgid "" "configured)." msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер жавоб бермаяпти" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Тафсилотлар…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Муолажалар" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида " @@ -3815,74 +3840,74 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" маълумотлар базасига SQL-сўров:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "сўровни бажариш" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Қидириш" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Боғлиқликни ўчириш" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Боғлиқликни ўчириш" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Хатчўпларни кўрсатиш" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Боғлиқликни ўчириш" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "сўзлардан бири" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "барча сўзлар" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "аниқ мослик" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "мунтазам ибора" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" учун қидирув натижалари \"%s\":" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Жами \"%s\" та мослик" msgstr[1] "Жами \"%s\" та мослик" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3890,48 +3915,43 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Кўриб чиқиш" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s жадвалидаги мосликларни ўчирасизми?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Маълумотлар базасида қидириш" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Қидириш учун сўзлар ёки қийматлар (гурух белгиси: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Излаш:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Жадваллардан:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Белгилашни бекор қилиш" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Майдондан:" @@ -3958,16 +3978,16 @@ msgstr "Фильтр" msgid "Search this table" msgstr "Маълумотлар базасида қидириш" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Боши" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3976,8 +3996,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Орқага" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3986,8 +4006,8 @@ msgctxt "Next page" msgid "Next" msgstr "Кейинги" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3998,7 +4018,7 @@ msgstr "Охири" msgid "All" msgstr "Барча" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -4009,8 +4029,8 @@ msgstr "Майдонлар сони " msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -4032,10 +4052,10 @@ msgstr "Индекс бўйича сортировка қилиш" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Параметрлар" @@ -4083,35 +4103,35 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Ёзув ўчирилди" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Тугатиш" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Тахминий бўлиши мумкин. [doc@faq3-11]\"FAQ 3.11\"[/doc]га қаранг" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "SQL сўрови муваффақиятли бажарилди" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4120,76 +4140,76 @@ msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Ёзувларни кўрсатиш" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "жами" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Белгиланганларни:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Барчасини белгилаш" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Алоқа топилмади" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4197,7 +4217,7 @@ msgid "None" msgstr "Йўқ" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4205,29 +4225,29 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Импорт" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Автоматик тиклаш режими" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган " "\"upload_max_filesize\" директиваси қийматидан катта." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4235,37 +4255,37 @@ msgstr "" "Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " "директиваси қийматидан катта." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Юкланаётган файл фақатгина қисман юкланди." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Файлни ўқиб бўлмади!!" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4273,15 +4293,15 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [doc@faq1-11]\"FAQ 1.11\"[/doc]га " "қаранг" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4291,30 +4311,30 @@ msgstr "" "эмас, шунинг учун ушбу файлни импорт қилиб бўлмайди. Агар дастур мавжуд " "бўлса, демак у конфигурация вақтида ўчириб қўйилган." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Версия ҳақида маълумот" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin дастурини янги ойнада очиш" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Чоп этиш версияси" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4325,20 +4345,20 @@ msgid "No index defined!" msgstr "Индекс белгиланмаган!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Индекслар" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4348,78 +4368,78 @@ msgstr "Индекслар" msgid "Action" msgstr "Амал" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Индекс номи" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Уникал" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Элементлар сони" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Изоҳ" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Бирламчи калит ўчирилди." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "\"%s\" индекси ўчирилди." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Ўчириш" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Саҳифа рақами:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Тил" @@ -4443,11 +4463,11 @@ msgstr "Сервер" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4466,14 +4486,15 @@ msgid "View" msgstr "Намойиш" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4482,8 +4503,8 @@ msgid "Table" msgstr "Жадвал" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4491,45 +4512,45 @@ msgstr "Жадвал" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Қидириш" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Қўйиш" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегиялар" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Операциялар" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Кузатиш" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4545,16 +4566,16 @@ msgstr "Триггерлар" msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Сўров" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Муолажалар" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4562,22 +4583,22 @@ msgstr "Муолажалар" msgid "Events" msgstr "Ҳодисалар" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Маълумотлар базалари" @@ -4588,39 +4609,39 @@ msgid "User accounts" msgstr "Фойдаланувчи" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Иккилик журнал" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Жадвал турлари" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." @@ -4628,7 +4649,7 @@ msgid_plural "%1$d rows affected." msgstr[0] "%1$d та қаторларга таъсир этди." msgstr[1] "%1$d та қаторларга таъсир этди." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." @@ -4636,7 +4657,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "%1$d та қаторлар ўчирилди." msgstr[1] "%1$d та қаторлар ўчирилди." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." @@ -4705,29 +4726,29 @@ msgstr "Ўзгарувчилар" msgid "Favorites" msgstr "Ўзгарувчилар" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "\"%s\" номли фойдаланувчи мавжуд!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." @@ -4790,7 +4811,7 @@ msgstr "Очиқ жадваллар рўйхати" msgid "Show slave hosts" msgstr "Тобе серверлар ҳақида маълумот" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" @@ -4848,88 +4869,88 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "ишлатилмоқда" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Манба база" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" мавзуси топилмади!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Нотўғри маълумотлар базаси" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Жадвал номи нотўғри" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save table UI preferences!" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4937,19 +4958,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Бирламчи индекс номи \"PRIMARY\" бўлиши керак!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Индексни \"PRIMARY\"га қайта номлаб бўлмади!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Индекс қисмлари белгиланмаган!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5223,7 +5244,7 @@ msgid "Date and time" msgstr "Янги индекс тузиш" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5242,70 +5263,70 @@ msgstr "Журнал файллари сони" msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-код олиб ташлаш" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "сўровни бажариш" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-код" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Янгилаш" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Профиллаштириш" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5313,70 +5334,70 @@ msgid "Edit inline" msgstr "Таҳрирлаш усули" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Якш" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Муолажалар" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" маълумотлар базасига ўтиш." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "\"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Кўрсатилган каталокка юклаб бўлмади." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Тозалаш" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5392,7 +5413,7 @@ msgstr "минутига" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "соатига" @@ -5400,14 +5421,14 @@ msgstr "соатига" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Қидириш" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5415,7 +5436,7 @@ msgstr "Қидириш" msgid "Description" msgstr "Тавсифи" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Ушбу қийматни ишлатиш" @@ -5456,22 +5477,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Номи" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Узунлик/қийматлар" @@ -5482,7 +5503,7 @@ msgstr "Узунлик/қийматлар" msgid "Attribute" msgstr "Атрибутлар" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5505,13 +5526,13 @@ msgstr "Устун(лар) қўшиш" msgid "Select a column." msgstr "Устун қўшиш/ўчириш" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column(s)" msgid "Add new column" msgstr "Устун(лар) қўшиш" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5519,7 +5540,7 @@ msgstr "Устун(лар) қўшиш" msgid "Attributes" msgstr "Атрибутлар" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5529,31 +5550,31 @@ msgstr "" "func_overload параметри ёқилган. Маълумот йўқолиши олдини олиш учун, ушбу " "параметр ўчирилиши керак!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5561,20 +5582,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6302,7 +6323,7 @@ msgid "Compress on the fly" msgstr "Бирйўла қисиш" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Конфигурацион файл" @@ -6434,13 +6455,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимум бажарилиш вақти" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Тавсиф" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Файл каби сақлаш" @@ -6450,7 +6471,7 @@ msgstr "Файл кодировкаси" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Формат" @@ -6595,7 +6616,7 @@ msgid "Save on server" msgstr "Серверга сақлаш" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Мавжуд файл(лар) устидан ёзиш" @@ -6610,7 +6631,7 @@ msgid "Remember file name template" msgstr "Файл номи шаблонини ёдда сақлаш" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" @@ -6621,7 +6642,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" @@ -6658,7 +6679,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" @@ -6862,7 +6883,7 @@ msgid "Customize the navigation tree." msgstr "Навигация панелини мослаштириш" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Серверлар" @@ -7958,7 +7979,7 @@ msgstr "HTTP Бўлими" msgid "Authentication method to use." msgstr "Фойдаланиладиган аутентификация усули" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Аутентификация усули" @@ -8844,7 +8865,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Охирги версияни текшириш" @@ -8852,10 +8873,10 @@ msgstr "Охирги версияни текшириш" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Версияни текшириш" @@ -9017,25 +9038,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument матн" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "\"%s\" жадвали тозаланди." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "\"%s\" намойиши ўчирилди" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -9050,12 +9071,12 @@ msgid "Position" msgstr "Позиция" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Ҳодиса тури" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Сервер ID си" @@ -9064,7 +9085,7 @@ msgid "Original position" msgstr "Асл позиция" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Маълумот" @@ -9078,42 +9099,42 @@ msgstr "Сўровларни қисқартириб кўрсатиш" msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Маълумотлар базаси мавжуд эмас" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s маълумотлар базаси тузилди." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" маълумотлар базаси муваффақиятли ўчирилди." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Қаторларсони" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Жами" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Фрагментланган" @@ -9146,35 +9167,35 @@ msgstr "" msgid "Enable statistics" msgstr "Статискани ёқиш" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Сервер ўзгарувчилари ва созланишлари" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Маълумотлар базаси мавжуд эмас" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s жадвали муваффақиятли ўзгартирилди." @@ -9231,7 +9252,7 @@ msgstr "Белгиланган фойдаланувчилар муваффақи #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -9251,12 +9272,12 @@ msgstr "Ўзгартириш" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Индекс" @@ -9279,13 +9300,13 @@ msgstr "Матн тўлалигича" msgid "Distinct values" msgstr "Турли қийматларни кўриб чиқиш" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ўзгариш йўқ" @@ -9308,208 +9329,212 @@ msgstr "" "export каталогини текширинг." #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Парол йўқ" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Парол:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Тасдиқлаш" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Паролни хешлаш" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export tables" msgid "Export templates:" msgstr "Жадвалларни экспорт қилиш" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Файл номи шаблони" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Жадвал номи" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Тузиш" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Файл номи шаблони" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "Жадваллар сони: \"%s\"" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Янгиланди" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Жадвалларни танланг" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Эскпорт тури" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 #, fuzzy #| msgid "Customize default export options" msgid "Custom - display all possible options" msgstr "Экспорт афзалликларини созлаш" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Маълумотлар базалари" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Жадваллар" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Формат" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "Ўгиришлар параметрлари" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy #| msgid "Recoding engine" msgid "Encoding Conversion:" msgstr "Кодировкалаш функцияси" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Қаторларсони" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 #, fuzzy #| msgid "Dump all rows" msgid "Dump some row(s)" msgstr "Барча қаторларни дамп қилиш" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Барча қаторларни дамп қилиш" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Сервердаги \"%s\" каталокка сақлаш" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Файл номи шаблони" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -9524,127 +9549,127 @@ msgstr "" "вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " "%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Файл кодировкаси:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Сиқиш" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Файл каби сақлаш" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views" msgid "Export databases as separate files" msgstr "Кўринишларни экспорт қилиш" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "горизонтал (айлантирилган сарлавҳалар)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Файл каби сақлаш" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Жадвалларни танланг" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Жадвалларни танланг" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "маълумотлар базаси номи" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Янги жадвал" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Майдон номлари" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Майдон номлари" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Экспорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -10119,13 +10144,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -10133,40 +10158,40 @@ msgstr "" "\"%s\" файли серверда мавжуд, унинг номини ўзгартиринг ёки қайта ёзиш " "параметрини ёқинг." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10174,47 +10199,47 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Фақат тузилиши" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ушбу кўринишга ўтиш" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -10226,85 +10251,86 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "\"%s\" майдон учун индекс тузиш" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Яшириш" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Функция" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Маълумотлар кўплиги сабали
ўзгартириш қийишлашиши мумкин" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ёки" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Юклаш каталогидан" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Қўйиш" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "ва сўнг" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10313,8 +10339,8 @@ msgid "" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -10325,31 +10351,31 @@ msgstr "" msgid "Value" msgstr "Қиймати" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Фақат тузилиши" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Фақат маълумотлар" @@ -10360,14 +10386,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Чекловлар қўшиш" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10430,8 +10456,8 @@ msgstr "Муолажалар" msgid "Views:" msgstr "Намойиш" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Кўрсатиш" @@ -10478,19 +10504,19 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Файл каби сақлаш" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -10506,7 +10532,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -10529,7 +10555,7 @@ msgstr "" msgid "Database operations" msgstr "Маълумотлар базаси экспорт параметрлари" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -10634,13 +10660,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Устун қўшиш/ўчириш" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -10895,8 +10921,8 @@ msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10944,83 +10970,83 @@ msgstr "(устун)" msgid "Move table to (database.table)" msgstr "Жадвални (маълумотлар базаси.жадвал) га кўчириш" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Жадвал номини ўзгартириш" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Жадвал изоҳи" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Жадвал параметрлари" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Жадвал тури" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Нусха олинган жадвалга ўтиш" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Жадвалга хизмат кўрсатиш" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Жадвални текшириш" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Жадвални текшириш" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Жадвални дефрагментациялаш" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "\"%s\" жадвали кеши янгиланди." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Жадвал кешини янгилаш (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Жадвални тиклаш" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -11028,105 +11054,105 @@ msgstr "Жадвални тиклаш" msgid "Delete data or table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Ушбу базага ўтиш" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Таҳлил" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Текшириш" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Оптимизация" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Қайта қуриш" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Тиклаш" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Ёпиш" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "бўлакларга хизмат кўрсатиш" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "\"%s\" бўлаги" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Жадвални ўз-ўзига кўчириб бўлмайди!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Жадвалнинг ўзидан ўзига нусха кўчириш мумкин эмас!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "\"%s\" жадвали \"%s\" га кўчирилди." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" жадвали \"%s\" га кўчирилди." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Жадвал номи кўрсатилмаган!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -11159,18 +11185,18 @@ msgstr "Рангда кўрсатиш" msgid "Only show keys" msgstr "Фақат калитларни кўрсатиш" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Уланиб бўлмади: нотўғри созланган." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "\"%s\" дастурига хуш келибсиз" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -11179,7 +11205,7 @@ msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -11190,7 +11216,7 @@ msgstr "" "файлидаги хост, фойдаланувчи ва паролни текширинг ва улар MySQL сервери " "администраторидан олинган маълумотларга мос келишига ишонч ҳосил қилинг." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -11217,15 +11243,15 @@ msgstr "Фойдаланувчи:" msgid "Server Choice:" msgstr "Серверни танланг" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -11306,7 +11332,7 @@ msgstr "Маълумотлар базаларини кўрсатиш афзал #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" @@ -11315,7 +11341,7 @@ msgstr "Жадвал маълумотларини дамп қилиш" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Ҳодиса" @@ -11323,8 +11349,8 @@ msgstr "Ҳодиса" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -11428,7 +11454,7 @@ msgstr "Майдон номларини биринчи қаторга жойла #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -12012,7 +12038,7 @@ msgstr "Мундарижа" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Қўшимча" @@ -12470,18 +12496,18 @@ msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "тавсиф мавжуд эмас" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12492,13 +12518,13 @@ msgstr "" "pmadb усули ишлатилмоқда, лекин phpMyAdmin конфигурацион файлида " "фойдаланувчи белгиланмаган" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12507,28 +12533,28 @@ msgstr "" "pmadb усули ишлатилмоқда, лекин phpMyAdmin конфигурацион файлида " "фойдаланувчи белгиланмаган" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Бош сервер репликацияси" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Уланган тобе серверларни кўрсатиш" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Бош сервер конфигурацияси" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -12549,19 +12575,19 @@ msgstr "" "бермаслик ва баъзиларини репликация қилишни (бир нечта базаларнигина " "репликация қилишда фойдали) танлашингиз мумкин. Репликация усулини танланг:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Барча базаларни репликация қилиш; Қуйидагилардан ташқари:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Барча базаларга эътибор бермаслик; Қуйидагилардан ташқари:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Базаларни танланг:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -12569,7 +12595,7 @@ msgstr "" "Энди қуйидаги қаторларни \"my.cnf\" файлининг охирига қўшинг ва MySQL " "серверини қайта юкланг." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -12579,81 +12605,81 @@ msgstr "" "ушбу сервер \"бош сервер\" деб конфигурация қилинганлиги ҳақидаги маълумотни " "кўришингиз керак." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Тобе сервер репликацияси" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Нохавфсиз уланиш" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Тобе SQL Оқими ишламаяпти!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Тобе кириш/чиқиш оқими ишламаяпти!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация қилинган. " "Қуйидаги амаллардан бирини танланг:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Тобе сервер статуси жадвалини кўриш" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Тобе серверни назорат қилиш:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Барчасини бошлаш" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Барчасини тўхтатиш" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Тобе серверни тиклаш" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -12662,11 +12688,11 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Хатоликларни бошқариш:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -12674,17 +12700,17 @@ msgstr "" "Хатолик(лар)ни ташлаб кетиш бош ва тобе серверларнинг тўла синхронизация " "қилинмаганлигига олиб келиши мумкин!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Жорий хатоликларни ташлаб кетиш" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Жорий хатоликларни ташлаб кетиш" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -12693,11 +12719,11 @@ msgstr "" "Ушбу сервер репликация жараёнида \"бош сервер\" деб конфигурация қилинмаган. " "Сиз уни конфигурация қилмоқчимисиз?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Тобе сервер конфигурацияси" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -12706,57 +12732,57 @@ msgstr "" "ҳосил қилинг. Агар шундай бўлмаса, қуйидаги қаторларни [mysqld] бўлимига " "қўшинг:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Фойдаланувчи номи" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Фойдаланувчи номи" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Парол" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Порт" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Бош сервер статуси" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Тобе сервер статуси" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Ўзгарувчи" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Хост" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -12764,41 +12790,41 @@ msgstr "" "Рўйхатда фақат \"--report-host=host_name\" танлови ёрдамда юкланган тобе " "серверлар кўрсатилмоқда." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Локал" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ушбу хост" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Матнмайдонини ишлатиш" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12806,96 +12832,96 @@ msgstr "" "Агар Хостлар жадвалидан фойдаланилса, ушбу майдонга эътибор берилмайди ва " "унинг ўрнига Хостлар жадвалидаги қийматлар ишлатилади." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Тасдиқлаш" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Парол ўрнатиш" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Репликация статуси" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Бош сервер репликацияси" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Бош сервер репликацияси" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Репликация статуси" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Бош сервер репликацияси" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Хатолик" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Номаълум хатолик" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "%s бош серверига уланиб бўлмади." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Бош сервер позициясини ўқиб бўлмади. Сервердаги привилегиларда муаммо бўлиши " "мумкин." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Бош серверни ўзгартириб бўлмади" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s." msgstr "Бош репликация сервери қуйидагига ўзгартирилди: %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, fuzzy, php-format @@ -12919,7 +12945,7 @@ msgstr "\"%s\" жадвали ўчирилди" msgid "Event %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12930,90 +12956,90 @@ msgstr "" msgid "Edit event" msgstr "Серверларни таҳрирлаш" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Тафсилотлар…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Ҳодиса тури" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Ўзгартириш" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Белгиланган сўровни бажариш" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Бошланғич" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Охири" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Тўла қўйиш" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Жадвал номи нотўғри" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -13036,7 +13062,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -13050,154 +13076,154 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Таҳрирлаш усули" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "\"%s\" жадвали ўчирилди" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "\"%s\" жадвали ўчирилди" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Муолажалар" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Тўғридан-тўғри боғланишлар" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Индекс(лар)ни сақлаш" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Узунлик/қийматлар" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Жадвал параметрлари" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Хавфсизлик" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Жадвал номи нотўғри" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -13225,44 +13251,44 @@ msgstr "%1$s жадвали тузилди." msgid "Edit trigger" msgstr "Янги фойдаланувчи қўшиш" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Триггерлар" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Вақт" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Жадвал номи нотўғри" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Жадвал номи нотўғри" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Жадвал номи нотўғри" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Жадвал номи нотўғри" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -13410,94 +13436,94 @@ msgstr "Кодировкалар ва таққослашлар" msgid "Databases statistics" msgstr "Маълумотлар базаси статискаси" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Привилегиялар йўқ." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13507,44 +13533,44 @@ msgstr "" "(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " "беради." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13552,95 +13578,65 @@ msgstr "" "Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " "тузиш ва уларни ўчиришга рухсат беради." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Йўқ" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Доимий уланишлар" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Доимий уланишлар" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Ресурслардан фойдаланишни чеклаш" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " -"қилади." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13648,418 +13644,395 @@ msgstr "" "Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " "маълумотлар базасини ўзгартирадиган буйруқлар сони." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " "уланишлар сони." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Муолажалар" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Администрация" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Глобал привилегиялар" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "Глобал" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " "привилегиялар қўшишга рухсат беради." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL authentication" msgstr "Аутентификация тартиби" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Аутентификация тартиби" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Host authentication order" -msgid "Native MySQL Authentication" -msgstr "Аутентификация тартиби" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Фойдаланувчи номи" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Журнал файли" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication type" msgid "Authentication Plugin" msgstr "Аутентификация усули" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Паролни хешлаш" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" маълумотлар базасига барча привилегияларни бериш." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" намойиши ўчирилди" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Ҳар қайси" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "Глобал" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Бекор қилиш" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Серверларни таҳрирлаш" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "ва эскисини сақлаш." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Майдон привилегиялари" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Белгиланган фойдаланувчиларни ўчириш" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " -"ўчириш." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" учун привилегиялар ўзгартирилди." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" номли фойдаланувчи мавжуд!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегиялар" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Фойдаланувчи" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Фойдаланувчи" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -14072,7 +14045,7 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -14091,11 +14064,11 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." @@ -14414,13 +14387,13 @@ msgstr "Буйруқ" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Фильтр" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -14450,12 +14423,12 @@ msgstr "минутига" msgid "per second:" msgstr "секундига" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Тавсиф" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -14487,19 +14460,19 @@ msgstr "Очиқ жадваллар рўйхати" msgid "Related links:" msgstr "Алоқалар" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14508,16 +14481,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14530,11 +14503,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14542,7 +14515,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14550,31 +14523,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14584,7 +14557,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14593,7 +14566,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -14602,7 +14575,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14612,7 +14585,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14621,7 +14594,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY … " "DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14634,7 +14607,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14646,35 +14619,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14684,7 +14657,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14696,11 +14669,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14709,7 +14682,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14718,12 +14691,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14731,7 +14704,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14744,51 +14717,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14796,35 +14769,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -14833,51 +14806,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14885,7 +14858,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14893,7 +14866,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14902,17 +14875,17 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Импорт қилинаётган файл формати" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14923,26 +14896,26 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14953,19 +14926,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14973,42 +14946,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб " "\"fopen()\" функцияси ёрдамида очилган файлга айтилади." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -15020,7 +14993,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -15028,19 +15001,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -15048,13 +15021,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -15063,7 +15036,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -15072,17 +15045,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -15090,13 +15063,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -15104,12 +15077,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -15119,25 +15092,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -15149,7 +15122,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса " "жадвал(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -15160,11 +15133,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -15176,13 +15149,13 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Кузатиш фаол эмас." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." @@ -15219,49 +15192,49 @@ msgstr "Фойдаланувчи учун маълумотлар базаси" msgid "Table level tabs" msgstr "Жадвал номи" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Намойиш" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Привилегиялар йўқ" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Майдон номлари" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Сервер версияси" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -15375,7 +15348,7 @@ msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)н msgid "Run SQL query/queries on table %s" msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Тозалаш" @@ -15468,105 +15441,105 @@ msgstr "Ҳозир фаолсизлантириш" msgid "Version" msgstr "Версия" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Тузилди" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Янгиланди" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Версиясини тузиш" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Тузилма расми" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "фаол" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "фаол эмас" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Кузатиш операторлари" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Маълумотлар базаси мавжуд эмас" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL дампи (файлни юклаб олиш)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL дамп" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL бажаруви" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "\"%s\" деб экспорт қилиш" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Маълумотларни бошқариш операторини" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Маълумотлар таърифи операторини" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Санани" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Фойдаланувчи" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s версия расми (SQL коди)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15574,19 +15547,19 @@ msgctxt "None for default" msgid "None" msgstr "Йўқ" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -15594,67 +15567,67 @@ msgstr "" "Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун " "етарли привилегияларга эга бўлишингиз керак." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" жадвали учун кузатув ҳисоботи" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Жадвални кузатиш" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Кузатилган жадваллар" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Охирги версия" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Версиялар" @@ -15664,7 +15637,7 @@ msgstr "Версиялар" msgid "Manage your settings" msgstr "Бошқа созланишлар" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -15692,7 +15665,7 @@ msgstr "Ушбу ZIP архивда хатолик:" msgid "No files found inside ZIP archive!" msgstr "ZIP-архив ичида файл мавжуд эмас!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -15702,90 +15675,90 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Берилган формада хатолар мавжуд" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin документацияси" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Файлларни импорт қилиш" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Бошқа созланишлар" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Сервер конфигурацияси" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Файл каби сақлаш" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -15793,45 +15766,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Привилегиялар йўқ" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" жараёни муваффақиятли якунланди." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Юклаб олиш" @@ -15839,11 +15812,11 @@ msgstr "Юклаб олиш" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " @@ -15860,7 +15833,7 @@ msgstr "" "em] номли каталог очинг. Акс ҳолда, Сиз уни фақат юклаб олишингиз ёки " "кўришингиз мумкин бўлади." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -15868,86 +15841,89 @@ msgstr "" "Сизнинг уланишингиз хавфсиз эмас; барча маълумотлар (шу жумладан, сирли " "маълумотлар, масалан, пароллар) шифрланмаган ҳолда узатилади!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Агар серверингиз HTTPS талабларига жавоб бера олса, унда хавфсиз уланишни " "ишлатиш учун [a@\"%s\"]ушбу боғдан[/a] фойдаланинг." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Нохавфсиз уланиш" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Configuration file" msgid "Configuration saved." msgstr "Конфигурацион файл" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration file" msgid "Configuration not saved!" msgstr "Конфигурацион файл" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Кўриб чиқиш" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Яширин хабарларни кўрсатиш (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Янги сервер" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Тил" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "фойдаланувчига танлаш имконини бериш" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- йўқ -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Сервер" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Сатр охири" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Кўрсатиш" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Юклаш" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin сайти" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Садақа" @@ -15983,7 +15959,7 @@ msgstr "Хатоларга эътибор бермаслик" msgid "Show form" msgstr "Формани кўрсатиш" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -15991,15 +15967,15 @@ msgstr "" "Версияни аниқлаб бўлмади. Балки Сиз оффлайндасиз ёки сервер жавоб бера " "олмаяпти." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Сервердар версия ҳақида ноўрин маълумот олинди" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Версия ҳақида тушунарсиз маълумот" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, fuzzy, php-format #| msgid "" #| " are using subversion version, run [kbd]svn update[/kbd] :-)[br]The est " @@ -16011,7 +15987,7 @@ msgstr "" "Сиз субверсиядан фойдаланмоқдасиз. Ўз версиянгизни янгилашингизни тавсия " "этамиз. Энг янги версия \"%s\" бўлиб, у \"%s\" санада чиқарилган." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Янгироқ версия ҳали мавжуд эмас" @@ -16026,12 +16002,12 @@ msgstr "Маълумотлар базаси мавжуд эмас" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' номли база мавжуд эмас." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" номли жадвал мавжуд!" @@ -16044,36 +16020,36 @@ msgstr "Жадвал дампини (схемасини) намойиш этиш msgid "Invalid table name" msgstr "Жадвал номи нотўғри" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL сўрови бажарилди." @@ -16305,7 +16281,7 @@ msgid "List of available transformations and their options" msgstr "Мавжуд ўгиришлар" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -16331,7 +16307,7 @@ msgstr "" "\"a\\\"b\"." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16875,17 +16851,17 @@ msgid "Size" msgstr "Ҳажми" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Тузиш" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Охирги янгиланиш" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Охирги текширув" @@ -16920,6 +16896,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete settings " +msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -16944,10 +16926,51 @@ msgstr "Қуйидаги жадвалга привилегия қўшиш" msgid "Add privileges on the following table:" msgstr "Қуйидаги жадвалга привилегия қўшиш" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Йўқ" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Белгиланган фойдаланувчиларни ўчириш" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " +"ўчириш." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Ресурслардан фойдаланишни чеклаш" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " +"қилади." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" @@ -16984,7 +17007,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -17182,7 +17205,7 @@ msgstr "Фойдаланувчи" msgid "Comment:" msgstr "Изоҳ" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -17220,24 +17243,24 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ташқи калит чегаралари" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Чекловлар қўшиш" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Ички алоқалар" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ички алоқалар" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -17245,7 +17268,7 @@ msgstr "" "Агар ташқи калит (FOREIGN KEY) орқали алоқа мавжуд бўлса, ички алоқа ўрнатиш " "шарт эмас." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -17313,13 +17336,13 @@ msgstr "Асл позиция" msgid "Replaced string" msgstr "Алоқалар" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Репликация (захира нусха кўчириш)" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "SQL Query box" msgid "Additional search criteria" @@ -17409,7 +17432,7 @@ msgid "at beginning of table" msgstr "Жадвал бошига" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17445,30 +17468,30 @@ msgstr "Қатор узунлиги" msgid "Index length" msgstr "Қатор узунлиги" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "бўлакларга бўлинган" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Чоп этиш версияси" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Фойдаланилаётган жой" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Эффективлик" @@ -17499,33 +17522,33 @@ msgstr "Жадвал тузилиши таҳлили" msgid "Track view" msgstr "Жадвални кузатиш" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Қаторлар статистикаси" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "статик" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "динамик" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "бўлакларга бўлинган" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Қатор узунлиги" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Қатор ҳажми" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -17541,52 +17564,52 @@ msgstr "\"%s\" жадвали ўчирилди" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Кўпроқ мавзуга эга бўлинг!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Мавжуд MIME турлари" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Мавжуд ўгиришлар" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Мавжуд ўгиришлар" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Тавсифи" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Кузатиш ҳисоботи" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Профил янгиланди." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -17660,7 +17683,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -17685,19 +17708,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -17758,29 +17781,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "%1$s жадвали тузилди." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Жадвал номи шаблони" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Жадвал бошига" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -17797,10 +17820,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Жадвал бошига" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17847,7 +17876,7 @@ msgstr "" msgid "strict error" msgstr "Хатоларга эътибор бермаслик" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -19065,6 +19094,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#, fuzzy +#~| msgid "Host authentication order" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Аутентификация тартиби" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/uz@latin.po b/po/uz@latin.po index df57144e69..b78c6f549a 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2015-12-29 19:19+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributlar" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" ga birlamchi kalit qo‘shildi" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Kuzatish hisoboti" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 #, fuzzy @@ -2197,557 +2203,557 @@ msgstr "" msgid "End of step" msgstr "Satr oxiri" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Quyidagi so‘rovlar bajarildi:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Saqlash" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:475 +#: js/messages.php:476 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:476 +#: js/messages.php:477 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Qidirish" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Maydon nomlari" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Maydon nomlari" -#: js/messages.php:479 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maksimal jadvallar soni" -#: js/messages.php:480 +#: js/messages.php:481 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maksimal jadvallar soni" -#: js/messages.php:483 +#: js/messages.php:484 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Ustun qo‘shish/o‘chirish" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Qatorlar bo‘luvchisi" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Yangi foydalanuvchi qo‘shish" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Qatorlar bo‘luvchisi" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:547 +#: js/messages.php:548 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Ko‘rsatiladigan maydonni tanlash" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sahifa raqami: " -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Jadvallarni tanlang" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Jadvallarni tanlang" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Bo‘sh sahifalar soni" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Jadvallarni tanlang" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Tahrirlash lozim bo‘lgan sahifani tanlash" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Aloqalar sxemasi" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Maydonlar soni " -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Bajarish" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Maydon nomlari" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Asl pozitsiya" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Bekor qilish" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Uzildi" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Jurnal fayli ostonasi" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Jadvallarni tanlang" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Chop etish" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ushbu ko‘rinishga o‘tish" -#: js/messages.php:632 +#: js/messages.php:633 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Maydon nomlari" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:645 +#: js/messages.php:646 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:647 +#: js/messages.php:648 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Chap ramkada logotipni ko‘rsatish" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Asosiy ramkani moslashtirish" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Asosiy ramkani moslashtirish" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2758,129 +2764,129 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:662 +#: js/messages.php:663 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: js/messages.php:667 +#: js/messages.php:668 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Server porti" -#: js/messages.php:668 +#: js/messages.php:669 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Server porti" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Boshqa sozlanishlar" -#: js/messages.php:673 +#: js/messages.php:674 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Ochiq jadvallar ro‘yxati" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "E`tibor bermaslik" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: js/messages.php:714 +#: js/messages.php:715 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 +#: js/messages.php:719 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL so‘rovlari" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:720 +#: js/messages.php:721 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Jadval izohi" -#: js/messages.php:721 +#: js/messages.php:722 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2889,38 +2895,58 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Orqaga" -#: js/messages.php:762 +#: js/messages.php:770 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2928,96 +2954,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:769 +#: js/messages.php:777 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "" -#: js/messages.php:771 +#: js/messages.php:779 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:772 +#: js/messages.php:780 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "May" -#: js/messages.php:774 +#: js/messages.php:782 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:775 +#: js/messages.php:783 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:776 +#: js/messages.php:784 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "" -#: js/messages.php:778 +#: js/messages.php:786 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3025,78 +3051,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Dek" -#: js/messages.php:815 +#: js/messages.php:823 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:816 +#: js/messages.php:824 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:817 +#: js/messages.php:825 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "" -#: js/messages.php:820 +#: js/messages.php:828 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3104,86 +3130,86 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3192,139 +3218,139 @@ msgstr "Viki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Yo‘q" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:887 +#: js/messages.php:895 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundiga" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Matnmaydonini ishlatish" -#: js/messages.php:900 +#: js/messages.php:908 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:901 +#: js/messages.php:909 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:902 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:905 +#: js/messages.php:913 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:907 +#: js/messages.php:915 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:910 +#: js/messages.php:918 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:912 +#: js/messages.php:920 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:915 +#: js/messages.php:923 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:939 +#: js/messages.php:947 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:944 +#: js/messages.php:952 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:950 +#: js/messages.php:958 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:955 +#: js/messages.php:963 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Xatolik" @@ -3388,20 +3414,20 @@ msgid "Charset" msgstr "Kodirovka" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Taqqoslash" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Ikkilik" @@ -3598,7 +3624,7 @@ msgid "Czech-Slovak" msgstr "Chexoslovakcha" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "noma`lum" @@ -3651,31 +3677,31 @@ msgstr "" msgid "Font size" msgstr "Shrift o‘lchami" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/Console.php:130 +#: libraries/Console.php:128 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL so‘rovlari qutisi" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to set configured collation connection!" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3683,27 +3709,27 @@ msgid "" "configured)." msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server javob bermayapti" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Tafsilotlar…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Muolajalar" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida " @@ -3817,67 +3843,67 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "so‘rovni bajarish" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "Qidirish" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 #, fuzzy #| msgid "Delete relation" msgid "New bookmark" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 #, fuzzy #| msgid "Delete relation" msgid "Create bookmark" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 #, fuzzy #| msgid "Delete relation" msgid "Delete bookmark" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "so‘zlardan biri" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "barcha so‘zlar" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "aniq moslik" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "muntazam ibora" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" uchun qidiruv natijalari \"%s\":" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -3885,7 +3911,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Jami: \"%s\" o‘xshashlik" msgstr[1] "Jami: \"%s\" o‘xshashlik" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -3893,54 +3919,48 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Ko‘rib chiqish" -#: libraries/DbSearch.php:360 -#, fuzzy, php-format -#| msgid "Delete tracking data for this table" -msgid "Delete the matches for the %s table?" -msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Ma`lumotlar bazasida qidirish" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" "Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Izlash:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Quyidagi jadval(lar)da qidirish:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 #, fuzzy #| msgid "Unselect All" msgid "Unselect all" msgstr "Belgilashni bekor qilish" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -3969,16 +3989,16 @@ msgstr "Filtr" msgid "Search this table" msgstr "Ma`lumotlar bazasida qidirish" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Boshi" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 #, fuzzy @@ -3987,8 +4007,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Orqaga" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 #, fuzzy @@ -3997,8 +4017,8 @@ msgctxt "Next page" msgid "Next" msgstr "Keyingi" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4009,7 +4029,7 @@ msgstr "Oxiri" msgid "All" msgstr "Barcha" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" @@ -4020,8 +4040,8 @@ msgstr "Maydonlar soni " msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -4043,10 +4063,10 @@ msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Parametrlar" @@ -4094,35 +4114,35 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Yozuv o‘chirildi" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Tugatish" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Taxminiy bo‘lishi mumkin. [doc@faq3-11]\"FAQ 3.11\"[/doc]ga qarang" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4131,76 +4151,76 @@ msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "jami" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Belgilanganlarni:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 #, fuzzy #| msgid "Check All" msgid "Check all" msgstr "Barchasini belgilash" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 #, fuzzy #| msgid "Link not found" msgid "Link not found!" msgstr "Aloqa topilmadi" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 #, fuzzy #| msgid "None" msgctxt "None encoding conversion" @@ -4208,7 +4228,7 @@ msgid "None" msgstr "Yo‘q" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -4216,29 +4236,29 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 #, fuzzy #| msgid "Import" msgid "Report" msgstr "Import" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically send report next time" msgstr "Avtomatik tiklash rejimi" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan " "\"upload_max_filesize\" direktivasi qiymatidan katta." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -4246,37 +4266,37 @@ msgstr "" "Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" " "direktivasi qiymatidan katta." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Faylni diskka yozishdaxatolik yuz berdi." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 #, fuzzy #| msgid "File could not be read" msgid "File could not be read!" msgstr "Faylni o‘qib bo‘lmadi" -#: libraries/File.php:480 +#: libraries/File.php:490 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4284,15 +4304,15 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [doc@faq1-11]\"FAQ 1.11\"[/" "doc]ga qarang" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -4302,30 +4322,30 @@ msgstr "" "mavjud emas, shuning uchun ushbu faylni import qilib bo‘lmaydi. Agar dastur " "mavjud bo‘lsa, demak u konfiguratsiya vaqtida o‘chirib qo‘yilgan." -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 #, fuzzy #| msgid "Version information" msgid "Git information missing!" msgstr "Versiya haqida ma`lumot" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin dasturini yangi oynada ochish" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Chop etish versiyasi" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point!" @@ -4336,20 +4356,20 @@ msgid "No index defined!" msgstr "Indeks belgilanmagan!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Indekslar" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -4359,78 +4379,78 @@ msgstr "Indekslar" msgid "Action" msgstr "Amal" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Indeks nomi" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Unikal" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Elementlar soni" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Izoh" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Birlamchi kalit o‘chirildi." -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "\"%s\" indeksi o‘chirildi." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "O‘chirish" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Sahifa raqami:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Til" @@ -4454,11 +4474,11 @@ msgstr "Server" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -4477,14 +4497,15 @@ msgid "View" msgstr "Namoyish" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -4493,8 +4514,8 @@ msgid "Table" msgstr "Jadval" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -4502,45 +4523,45 @@ msgstr "Jadval" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Qidirish" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Qo‘yish" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegiyalar" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Kuzatish" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -4556,16 +4577,16 @@ msgstr "Triggerlar" msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "So‘rov" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Muolajalar" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4573,22 +4594,22 @@ msgstr "Muolajalar" msgid "Events" msgstr "Hodisalar" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Ma`lumotlar bazalari" @@ -4599,39 +4620,39 @@ msgid "User accounts" msgstr "Foydalanuvchi" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Ikkilik jurnal" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Jadval turlari" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." @@ -4639,7 +4660,7 @@ msgid_plural "%1$d rows affected." msgstr[0] "%1$d ta qatorlarga ta`sir etdi." msgstr[1] "%1$d ta qatorlarga ta`sir etdi." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, fuzzy, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." @@ -4647,7 +4668,7 @@ msgid_plural "%1$d rows deleted." msgstr[0] "%1$d ta qatorlar o‘chirildi." msgstr[1] "%1$d ta qatorlar o‘chirildi." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, fuzzy, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." @@ -4716,29 +4737,29 @@ msgstr "O‘zgaruvchilar" msgid "Favorites" msgstr "O‘zgaruvchilar" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 #, fuzzy #| msgid "The user %s already exists!" msgid "An entry with this name already exists." msgstr "\"%s\" nomli foydalanuvchi mavjud!" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 #, fuzzy msgid "Error while loading the search." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." @@ -4801,7 +4822,7 @@ msgstr "Ochiq jadvallar ro‘yxati" msgid "Show slave hosts" msgstr "Tobe serverlar haqida ma`lumot" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" @@ -4859,88 +4880,88 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "ishlatilmoqda" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "Ushbu turdagi jadvallar haqida qo‘shimcha ma`lumot mavjud emas." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi." -#: libraries/Table.php:301 +#: libraries/Table.php:313 #, fuzzy #| msgid "Show slave status" msgid "Unknown table status:" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Manba baza" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" mavzusi topilmadi!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Noto‘g‘ri ma`lumotlar bazasi" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save table UI preferences!" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4948,19 +4969,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birlamchi indeks nomi \"PRIMARY\" bo‘lishi kerak!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Indeksni \"PRIMARY\"ga qayta nomlab bo‘lmadi!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Indeks qismlari belgilanmagan!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5235,7 +5256,7 @@ msgid "Date and time" msgstr "Yangi indeks tuzish" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" @@ -5254,70 +5275,70 @@ msgstr "Jurnal fayllari soni" msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-kod olib tashlash" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "so‘rovni bajarish" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-kod" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Yangilash" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Profillashtirish" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5325,70 +5346,70 @@ msgid "Edit inline" msgstr "Tahrirlash usuli" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "Yaksh" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Muolajalar" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" ma`lumotlar bazasiga o‘tish." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "\"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil " "ma`lumot uchun qarang \"%s\"" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tozalash" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 #, fuzzy #| msgid "User" msgid "Users" @@ -5404,7 +5425,7 @@ msgstr "minutiga" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "soatiga" @@ -5412,14 +5433,14 @@ msgstr "soatiga" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 #, fuzzy #| msgid "Search" msgid "Search:" msgstr "Qidirish" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -5427,7 +5448,7 @@ msgstr "Qidirish" msgid "Description" msgstr "Tavsifi" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Ushbu qiymatni ishlatish" @@ -5468,22 +5489,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Nomi" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Uzunlik/qiymatlar" @@ -5494,7 +5515,7 @@ msgstr "Uzunlik/qiymatlar" msgid "Attribute" msgstr "Atributlar" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -5517,13 +5538,13 @@ msgstr "Ustun(lar) qo‘shish" msgid "Select a column." msgstr "Ustun qo‘shish/o‘chirish" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 #, fuzzy #| msgid "Add column(s)" msgid "Add new column" msgstr "Ustun(lar) qo‘shish" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -5531,7 +5552,7 @@ msgstr "Ustun(lar) qo‘shish" msgid "Attributes" msgstr "Atributlar" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -5541,32 +5562,32 @@ msgstr "" "func_overload parametri yoqilgan. Ma`lumot yo‘qolishi oldini olish uchun, " "ushbu parametr o‘chirilishi kerak!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5574,20 +5595,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -6319,7 +6340,7 @@ msgid "Compress on the fly" msgstr "Biryo‘la qisish" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Konfiguratsion fayl" @@ -6451,13 +6472,13 @@ msgstr "" msgid "Maximum execution time" msgstr "Maksimum bajarilish vaqti" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Tavsif" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Fayl kabi saqlash" @@ -6467,7 +6488,7 @@ msgstr "Fayl kodirovkasi" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Format" @@ -6612,7 +6633,7 @@ msgid "Save on server" msgstr "Serverga saqlash" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Mavjud fayl(lar) ustidan yozish" @@ -6627,7 +6648,7 @@ msgid "Remember file name template" msgstr "Fayl nomi shablonini yodda saqlash" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" @@ -6638,7 +6659,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Jadval va maydon nomlarini teskari qo‘shtirnoqqa olish" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" @@ -6675,7 +6696,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" @@ -6879,7 +6900,7 @@ msgid "Customize the navigation tree." msgstr "Navigatsiya panelini moslashtirish" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Serverlar" @@ -7980,7 +8001,7 @@ msgstr "HTTP Bo‘limi" msgid "Authentication method to use." msgstr "Foydalaniladigan autentifikatsiya usuli" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Autentifikatsiya usuli" @@ -8869,7 +8890,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Oxirgi versiyani tekshirish" @@ -8877,10 +8898,10 @@ msgstr "Oxirgi versiyani tekshirish" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Versiyani tekshirish" @@ -9042,25 +9063,25 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument matn" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "\"%s\" jadvali tozalandi." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "\"%s\" namoyishi o‘chirildi" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." @@ -9075,12 +9096,12 @@ msgid "Position" msgstr "Pozitsiya" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Hodisa turi" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "Server ID si" @@ -9089,7 +9110,7 @@ msgid "Original position" msgstr "Asl pozitsiya" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Ma`lumot" @@ -9103,42 +9124,42 @@ msgstr "So‘rovlarni qisqartirib ko‘rsatish" msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Ma`lumotlar bazasi mavjud emas" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ma`lumotlar bazasi tuzildi." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Qatorlarsoni" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Jami" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Fragmentlangan" @@ -9171,35 +9192,35 @@ msgstr "" msgid "Enable statistics" msgstr "Statiskani yoqish" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "Server o‘zgaruvchilari va sozlanishlari" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 #, fuzzy #| msgid "No databases" msgid "No data to display" msgstr "Ma`lumotlar bazasi mavjud emas" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi." @@ -9256,7 +9277,7 @@ msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -9276,12 +9297,12 @@ msgstr "O‘zgartirish" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Indeks" @@ -9304,13 +9325,13 @@ msgstr "Matn to‘laligicha" msgid "Distinct values" msgstr "Turli qiymatlarni ko‘rib chiqish" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -9334,208 +9355,212 @@ msgstr "" "export katalogini tekshiring!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Parol yo‘q" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Parol:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 #, fuzzy #| msgid "Re-type" msgid "Re-type:" msgstr "Tasdiqlash" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" msgstr "Parolni xeshlash" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 #, fuzzy #| msgid "Export tables" msgid "Export templates:" msgstr "Jadvallarni eksport qilish" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 #, fuzzy #| msgid "File name template" msgid "New template:" msgstr "Fayl nomi shabloni" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 #, fuzzy #| msgid "Table name" msgid "Template name" msgstr "Jadval nomi" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Tuzish" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 #, fuzzy #| msgid "File name template" msgid "Existing templates:" msgstr "Fayl nomi shabloni" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 #, fuzzy #| msgid "%s table(s)" msgid "Template:" msgstr "Jadvallar soni: \"%s\"" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 #, fuzzy #| msgid "Updated" msgid "Update" msgstr "Yangilandi" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 #, fuzzy #| msgid "Select Tables" msgid "Select a template" msgstr "Jadvallarni tanlang" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 #, fuzzy #| msgid "Export type" msgid "Export method:" msgstr "Eskport turi" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 #, fuzzy #| msgid "Customize default export options" msgid "Custom - display all possible options" msgstr "Eksport afzalliklarini sozlash" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 #, fuzzy #| msgid "Databases" msgid "Databases:" msgstr "Ma`lumotlar bazalari" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 #, fuzzy #| msgid "Tables" msgid "Tables:" msgstr "Jadvallar" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 #, fuzzy #| msgid "Format" msgid "Format:" msgstr "Format" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" msgstr "O‘girishlar parametrlari" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 #, fuzzy #| msgid "Recoding engine" msgid "Encoding Conversion:" msgstr "Kodirovkalash funksiyasi" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 #, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Qatorlarsoni" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 #, fuzzy #| msgid "Dump all rows" msgid "Dump some row(s)" msgstr "Barcha qatorlarni damp qilish" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Barcha qatorlarni damp qilish" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, fuzzy, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Serverdagi \"%s\" katalokka saqlash" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 #, fuzzy #| msgid "File name template" msgid "File name template:" msgstr "Fayl nomi shabloni" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -9550,127 +9575,127 @@ msgstr "" "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " "ishlatilishi mumkin: %3$s. Matnning boshqa qismlari o‘zgarishsiz qoladi." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Fayl kodirovkasi:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 #, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Siqish" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" msgstr "zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" msgstr "gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 #, fuzzy #| msgid "Save as file" msgid "View output as text" msgstr "Fayl kabi saqlash" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 #, fuzzy #| msgid "Export views" msgid "Export databases as separate files" msgstr "Ko‘rinishlarni eksport qilish" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" msgstr "gorizontal (aylantirilgan sarlavhalar)" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 #, fuzzy #| msgid "Save as file" msgid "Save output to a file" msgstr "Fayl kabi saqlash" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 #, fuzzy #| msgid "Select Tables" msgid "Select database" msgstr "Jadvallarni tanlang" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 #, fuzzy #| msgid "Select Tables" msgid "Select table" msgstr "Jadvallarni tanlang" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 #, fuzzy #| msgid "database name" msgid "New database name" msgstr "ma`lumotlar bazasi nomi" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 #, fuzzy #| msgid "New table" msgid "New table name" msgstr "Yangi jadval" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 #, fuzzy #| msgid "Column names" msgid "Old column name" msgstr "Maydon nomlari" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 #, fuzzy #| msgid "Column names" msgid "New column name" msgstr "Maydon nomlari" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Eksport modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -10148,13 +10173,13 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -10162,40 +10187,40 @@ msgstr "" "\"%s\" fayli serverda mavjud, uning nomini o‘zgartiring yoki qayta yozish " "parametrini yoqing." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " "amallarni bajarishingiz mumkin:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10203,47 +10228,47 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Faqat tuzilishi" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ushbu ko‘rinishga o‘tish" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -10255,85 +10280,86 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "\"%s\" maydon uchun indeks tuzish" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Yashirish" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Funksiya" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Ma`lumotlar ko‘pligi sabali
o‘zgartirish qiyishlashishi mumkin" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Yoki" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Yuklash katalogidan" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Qo‘yish" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Qo‘yilayotgan qatorlar soni: \"%s\"" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "va so‘ng" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10343,8 +10369,8 @@ msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -10355,31 +10381,31 @@ msgstr "" msgid "Value" msgstr "Qiymati" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Faqat tuzilishi" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Faqat ma`lumotlar" @@ -10390,14 +10416,14 @@ msgid "Add AUTO INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10460,8 +10486,8 @@ msgstr "Muolajalar" msgid "Views:" msgstr "Namoyish" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Ko‘rsatish" @@ -10507,19 +10533,19 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 #, fuzzy #| msgid "Save as file" msgid "Clear fast filter" msgstr "Fayl kabi saqlash" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -10535,7 +10561,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -10558,7 +10584,7 @@ msgstr "" msgid "Database operations" msgstr "Ma`lumotlar bazasi eksport parametrlari" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 #, fuzzy #| msgid "Show grid" msgid "Show hidden items" @@ -10663,13 +10689,13 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select one…" msgstr "Ustun qo‘shish/o‘chirish" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 #, fuzzy #| msgid "Remove column(s)" msgid "No such column" @@ -10924,8 +10950,8 @@ msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10977,83 +11003,83 @@ msgstr "(ustun)" msgid "Move table to (database.table)" msgstr "Jadvalni (ma`lumotlar bazasi.jadval) ga ko‘chirish" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Jadval nomini o‘zgartirish" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Jadval izohi" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Jadval parametrlari" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Jadval turi" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Nusxa olingan jadvalga o‘tish" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Jadvalga xizmat ko‘rsatish" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Jadval tahlili" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Jadvalni tekshirish" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Jadvalni tekshirish" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Jadvalni defragmentatsiyalash" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "\"%s\" jadvali keshi yangilandi." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Jadval keshini yangilash (\"FLUSH\")" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Jadvalni tiklash" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 #, fuzzy @@ -11061,105 +11087,105 @@ msgstr "Jadvalni tiklash" msgid "Delete data or table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Ushbu bazaga o‘tish" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Tahlil" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Tekshirish" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Optimizatsiya" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Qayta qurish" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Tiklash" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Yopish" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "bo‘laklarga xizmat ko‘rsatish" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "\"%s\" bo‘lagi" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Jadvalni o‘z-o‘ziga ko‘chirib bo‘lmaydi!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Jadvalning o‘zidan o‘ziga nusxa ko‘chirish mumkin emas!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "\"%s\" jadvali \"%s\" ga ko‘chirildi." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" jadvali \"%s\" ga ko‘chirildi." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Jadval nomi ko‘rsatilmagan!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -11192,18 +11218,18 @@ msgstr "Rangda ko‘rsatish" msgid "Only show keys" msgstr "Faqat kalitlarni ko‘rsatish" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "\"%s\" dasturiga xush kelibsiz" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -11212,7 +11238,7 @@ msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -11223,7 +11249,7 @@ msgstr "" "faylidagi xost, foydalanuvchi va parolni tekshiring va ular MySQL serveri " "administratoridan olingan ma`lumotlarga mos kelishiga ishonch hosil qiling." -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -11250,15 +11276,15 @@ msgstr "Foydalanuvchi:" msgid "Server Choice:" msgstr "Serverni tanlang" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -11339,7 +11365,7 @@ msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" @@ -11348,7 +11374,7 @@ msgstr "Jadval ma`lumotlarini damp qilish" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Hodisa" @@ -11356,8 +11382,8 @@ msgstr "Hodisa" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 #, fuzzy #| msgid "Description" msgid "Definition" @@ -11461,7 +11487,7 @@ msgstr "Maydon nomlarini birinchi qatorga joylashtirish" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -12054,7 +12080,7 @@ msgstr "Mundarija" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Qo‘shimcha" @@ -12516,18 +12542,18 @@ msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "tavsif mavjud emas" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12538,13 +12564,13 @@ msgstr "" "pmadb usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion faylida " "foydalanuvchi belgilanmagan" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12553,29 +12579,29 @@ msgstr "" "pmadb usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion faylida " "foydalanuvchi belgilanmagan" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Bosh sеrvеr rеplikatsiyasi" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Ulangan tobе sеrvеrlarni ko‘rsatish" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Bosh sеrvеr konfiguratsiyasi" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -12597,19 +12623,19 @@ msgstr "" "bazalarnigina rеplikatsiya qilishda foydali) tanlashingiz mumkin. " "Rеplikatsiya usulini tanlang:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Barcha bazalarni rеplikatsiya qilish; Quyidagilardan tashqari:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Barcha bazalarga e’tibor bеrmaslik; Quyidagilardan tashqari:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Bazalarni tanlang:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -12617,7 +12643,7 @@ msgstr "" "Endi quyidagi qatorlarni \"my.cnf\" faylining oxiriga qo‘shing va MySQL " "sеrvеrini qayta yuklang." -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -12627,81 +12653,81 @@ msgstr "" "So‘ng, ushbu sеrvеr \"bosh sеrvеr\" dеb konfiguratsiya qilinganligi haqidagi " "ma’lumotni ko‘rishingiz kеrak." -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Tobе sеrvеr rеplikatsiyasi" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "Noxavfsiz ulanish" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Tobе SQL Oqimi ishlamayapti!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Tobе kirish/chiqish oqimi ishlamayapti!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilingan. Quyidagi amallardan birini tanlang:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Tobе sеrvеrni nazorat qilish:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Barchasini boshlash" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Barchasini to‘xtatish" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Tobе sеrvеrni tiklash" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Faqat %s qirish/chiqish oqimini" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Faqat %s qirish/chiqish oqimini" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Bosh sеrvеrni o‘zgartirish yoki qayta konfiguratsiya qilish" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -12710,11 +12736,11 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Xatoliklarni boshqarish:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -12722,17 +12748,17 @@ msgstr "" "Xatolik(lar)ni tashlab kеtish bosh va tobе sеrvеrlarning to‘la " "sinxronizatsiya qilinmaganligiga olib kеlishi mumkin!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Joriy xatoliklarni tashlab kеtish" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "Joriy xatoliklarni tashlab kеtish" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -12741,11 +12767,11 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Tobе sеrvеr konfiguratsiyasi" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -12754,57 +12780,57 @@ msgstr "" "ishonch hosil qiling. Agar shunday bo‘lmasa, quyidagi qatorlarni [mysqld] " "bo‘limiga qo‘shing:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "Foydalanuvchi nomi" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Foydalanuvchi nomi" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Parol" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "Port" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Bosh rеplikatsiya sеrvеri statusi" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "O‘zgaruvchi" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Xost" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -12812,41 +12838,41 @@ msgstr "" "Ro‘yxatda faqat \"--report-host=host_name\" tanlovi yordamda yuklangan tobе " "sеrvеrlar ko‘rsatilmoqda." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Ushbu xost" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Har qaysi foydalanuvchi" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Matnmaydonini ishlatish" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12854,96 +12880,96 @@ msgstr "" "Agar Xostlar jadvalidan foydalanilsa, ushbu maydonga e`tibor berilmaydi va " "uning o‘rniga Xostlar jadvalidagi qiymatlar ishlatiladi." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Tasdiqlash" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate Password" msgid "Generate password:" msgstr "Parol o‘rnatish" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "Replikatsiya statusi" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "Bosh sеrvеr rеplikatsiyasi" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "Bosh sеrvеr rеplikatsiyasi" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "Replikatsiya statusi" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "Bosh sеrvеr rеplikatsiyasi" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "Xatolik" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Noma’lum xatolik" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "%s bosh sеrvеriga ulanib bo‘lmadi." -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Bosh sеrvеr pozitsiyasini o‘qib bo‘lmadi. Sеrvеrdagi privilеgilarda muammo " "bo‘lishi mumkin." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "Bosh sеrvеrni o‘zgartirib bo‘lmadi" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s." msgstr "Bosh rеplikatsiya sеrvеri quyidagiga o‘zgartirildi: %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, fuzzy, php-format @@ -12967,7 +12993,7 @@ msgstr "\"%s\" jadvali o‘chirildi" msgid "Event %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -12978,90 +13004,90 @@ msgstr "" msgid "Edit event" msgstr "Serverlarni tahrirlash" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 #, fuzzy #| msgid "Details…" msgid "Details" msgstr "Tafsilotlar…" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Hodisa turi" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "O‘zgartirish" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Belgilangan so‘rovni bajarish" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Boshlang‘ich" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Oxiri" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "To‘la qo‘yish" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "Invalid table name" msgid "You must provide an event name!" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Processes" @@ -13084,7 +13110,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 #, fuzzy #| msgid "Return type" msgid "Returns" @@ -13098,154 +13124,154 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Tahrirlash usuli" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "\"%s\" jadvali o‘chirildi" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Routine %1$s has been modified." msgstr "\"%s\" jadvali o‘chirildi" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Muolajalar" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "To‘g‘ridan-to‘g‘ri bog‘lanishlar" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Indеks(lar)ni saqlash" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Uzunlik/qiymatlar" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Jadval parametrlari" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Xavfsizlik" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a routine name!" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -13273,44 +13299,44 @@ msgstr "%1$s jadvali tuzildi." msgid "Edit trigger" msgstr "Yangi foydalanuvchi qo‘shish" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Triggerlar" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Vaqt" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a trigger name!" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid timing for the trigger!" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid event for the trigger!" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name!" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -13458,94 +13484,94 @@ msgstr "Kodirovkalar va taqqoslashlar" msgid "Databases statistics" msgstr "Ma`lumotlar bazasi statiskasi" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Privilegiyalar yo‘q." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13556,45 +13582,45 @@ msgstr "" "global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " "o‘chirish)." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " "ruxsat beradi." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13602,99 +13628,69 @@ msgstr "" "Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " "jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat " "beradi." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Yo‘q" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "Doimiy ulanishlar" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Doimiy ulanishlar" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Resurslardan foydalanishni cheklash" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " -"qiladi." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13702,296 +13698,289 @@ msgstr "" "Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval " "yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " "soni." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " "ulanishlar soni." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "Muolajalar" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Administratsiya" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Global privilegiyalar" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "Global" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " "privilegiyalar qo‘shishga ruxsat beradi." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Host authentication order" -msgid "Native MySQL Authentication" -msgstr "Autentifikatsiya tartibi" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Foydalanuvchi nomi" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Jurnal fayli" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication type" msgid "Authentication Plugin" msgstr "Autentifikatsiya usuli" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Parolni xeshlash" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Har qaysi foydalanuvchi" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "\"%s\" ma`lumotlar bazasiga barcha privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" namoyishi o‘chirildi" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Har qaysi" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "Guruhlash belgisi" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Bekor qilish" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Serverlarni tahrirlash" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "va eskisini saqlash." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13999,124 +13988,107 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish…" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Maydon privilegiyalari" -#: libraries/server_privileges.lib.php:3808 -#, fuzzy -#| msgid "Remove selected users" -msgid "Remove selected user accounts" -msgstr "Belgilangan foydalanuvchilarni o‘chirish" - -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -"Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " -"ularni o‘chirish." -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" uchun privilegiyalar o‘zgartirildi." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" nomli foydalanuvchi mavjud!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegiyalar" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Foydalanuvchi" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 #, fuzzy #| msgid "User" msgid "User account" msgstr "Foydalanuvchi" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -14129,7 +14101,7 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -14148,11 +14120,11 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." @@ -14476,13 +14448,13 @@ msgstr "Buyruq" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 #, fuzzy msgid "Filters" msgstr "Filtr" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 #, fuzzy #| msgid "Show open tables" msgid "Show only active" @@ -14512,12 +14484,12 @@ msgstr "minutiga" msgid "per second:" msgstr "sekundiga" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Tavsif" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "" @@ -14549,19 +14521,19 @@ msgstr "Ochiq jadvallar ro‘yxati" msgid "Related links:" msgstr "Aloqalar" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14570,16 +14542,16 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14592,11 +14564,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14604,7 +14576,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14612,31 +14584,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14646,7 +14618,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14655,7 +14627,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -14664,7 +14636,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14674,7 +14646,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14683,7 +14655,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14697,7 +14669,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14709,35 +14681,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14747,7 +14719,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14759,11 +14731,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14772,7 +14744,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14781,12 +14753,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14794,7 +14766,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14808,51 +14780,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14860,35 +14832,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -14897,51 +14869,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14949,7 +14921,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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." @@ -14957,7 +14929,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14966,17 +14938,17 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Import qilinayotgan fayl formati" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14988,26 +14960,26 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -15018,19 +14990,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -15038,42 +15010,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb " "\"fopen()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -15085,7 +15057,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -15093,19 +15065,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -15113,13 +15085,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -15129,7 +15101,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -15138,17 +15110,17 @@ msgstr "" "birlashma so‘rovlar soni. (Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -15156,13 +15128,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -15170,12 +15142,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -15185,26 +15157,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -15217,7 +15189,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -15228,11 +15200,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -15244,13 +15216,13 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Kuzatish faol emas." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." @@ -15287,49 +15259,49 @@ msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" msgid "Table level tabs" msgstr "Jadval nomi" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "View" msgid "View users" msgstr "Namoyish" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Har qaysi foydalanuvchi" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Privilegiyalar yo‘q." -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Maydon nomlari" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Server versiyasi" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -15443,7 +15415,7 @@ msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish" msgid "Run SQL query/queries on table %s" msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Tozalash" @@ -15536,105 +15508,105 @@ msgstr "Hozir faolsizlantirish" msgid "Version" msgstr "Vеrsiya" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Tuzildi" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Yangilandi" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Vеrsiyasini tuzish" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Tuzilma rasmi" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "faol" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "faol emas" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Kuzatish opеratorlari" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL dampi (faylni yuklab olish)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL damp" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "SQL bajaruvi" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "\"%s\" dеb eksport qilish" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Ma’lumotlarni boshqarish opеratorini" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Ma’lumotlar ta’rifi opеratorini" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Sanani" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Foydalanuvchi" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s vеrsiya rasmi (SQL kodi)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15642,19 +15614,19 @@ msgctxt "None for default" msgid "None" msgstr "Yo‘q" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -15662,67 +15634,67 @@ msgstr "" "Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning " "uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" jadvali uchun kuzatuv hisoboti" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s vеrsiya tuzildi, \"%s.%s\" ni kuzatishsh faollashtirilgan." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Jadvalni kuzatish" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Oxirgi vеrsiya" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Vеrsiyalar" @@ -15732,7 +15704,7 @@ msgstr "Vеrsiyalar" msgid "Manage your settings" msgstr "Boshqa sozlanishlar" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." @@ -15760,7 +15732,7 @@ msgstr "Ushbu ZIP arxivda xatolik:" msgid "No files found inside ZIP archive!" msgstr "ZIP-arxiv ichida fayl mavjud emas!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -15770,90 +15742,90 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "Berilgan formada xatolar mavjud" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin dokumentatsiyasi" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Fayllarni import qilish" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Boshqa sozlanishlar" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Server konfiguratsiyasi" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Fayl kabi saqlash" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -15861,46 +15833,46 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" jarayoni muvaffaqiyatli yakunlandi." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Yuklab olish" @@ -15908,11 +15880,11 @@ msgstr "Yuklab olish" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " @@ -15929,7 +15901,7 @@ msgstr "" "[em]config[/em] nomli katalog oching. Aks holda, Siz uni faqat yuklab " "olishingiz yoki ko‘rishingiz mumkin bo‘ladi." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -15937,86 +15909,89 @@ msgstr "" "Sizning ulanishingiz xavfsiz emas; barcha ma`lumotlar (shu jumladan, sirli " "ma`lumotlar, masalan, parollar) shifrlanmagan holda uzatiladi!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Agar serveringiz HTTPS talablariga javob bera olsa, unda xavfsiz ulanishni " "ishlatish uchun [a@\"%s\"]ushbu bog‘dan[/a] foydalaning." -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Noxavfsiz ulanish" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 #, fuzzy #| msgid "Configuration file" msgid "Configuration saved." msgstr "Konfiguratsion fayl" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration file" msgid "Configuration not saved!" msgstr "Konfiguratsion fayl" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Ko‘rib chiqish" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Yashirin xabarlarni ko‘rsatish (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Yangi server" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Til" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "foydalanuvchiga tanlash imkonini berish" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- yo‘q -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Server" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Satr oxiri" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Ko‘rsatish" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Yuklash" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin sayti" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Sadaqa" @@ -16052,7 +16027,7 @@ msgstr "Xatolarga e`tibor bermaslik" msgid "Show form" msgstr "Formani ko‘rsatish" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -16060,15 +16035,15 @@ msgstr "" "Versiyani aniqlab bo‘lmadi. Balki Siz offlayndasiz yoki server javob bera " "olmayapti." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Serverdar versiya haqida noo‘rin ma`lumot olindi" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Versiya haqida tushunarsiz ma`lumot" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, fuzzy, php-format #| msgid "" #| " are using subversion version, run [kbd]svn update[/kbd] :-)[br]The est " @@ -16080,7 +16055,7 @@ msgstr "" "Siz subversiyadan foydalanmoqdasiz. O‘z versiyangizni yangilashingizni " "tavsiya etamiz. Eng yangi versiya \"%s\" bo‘lib, u \"%s\" sanada chiqarilgan." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Yangiroq versiya hali mavjud emas" @@ -16095,12 +16070,12 @@ msgstr "Ma`lumotlar bazasi mavjud emas" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "'%s' nomli baza mavjud emas." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" nomli jadval mavjud!" @@ -16113,38 +16088,38 @@ msgstr "Jadval dampini (sxemasini) namoyish etish" msgid "Invalid table name" msgstr "Jadval nomi noto‘g‘ri" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL so‘rovi bajarildi." @@ -16376,7 +16351,7 @@ msgid "List of available transformations and their options" msgstr "Mavjud o‘girishlar" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -16402,7 +16377,7 @@ msgstr "" "\" yoki \"a\\\"b\"." #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -16952,17 +16927,17 @@ msgid "Size" msgstr "Hajmi" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Tuzish" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Oxirgi yangilanish" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Oxirgi tekshiruv" @@ -16997,6 +16972,12 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete settings " +msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" + #: templates/privileges/add_privileges_database.phtml:2 #, fuzzy #| msgid "Add privileges on the following database" @@ -17021,10 +17002,52 @@ msgstr "Quyidagi jadvalga privilegiya qo‘shish" msgid "Add privileges on the following table:" msgstr "Quyidagi jadvalga privilegiya qo‘shish" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Yo‘q" + +#: templates/privileges/delete_user_fieldset.phtml:3 +#, fuzzy +#| msgid "Remove selected users" +msgid "Remove selected user accounts" +msgstr "Belgilangan foydalanuvchilarni o‘chirish" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " +"ularni o‘chirish." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Resurslardan foydalanishni cheklash" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " +"qiladi." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" @@ -17061,7 +17084,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 #, fuzzy #| msgid "Disabled" msgid "disabled" @@ -17259,7 +17282,7 @@ msgstr "Foydalanuvchi" msgid "Comment:" msgstr "Izoh" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -17297,24 +17320,24 @@ msgstr "" msgid "Foreign key constraint" msgstr "Tashqi kalit chegaralari" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Cheklovlar qo‘shish" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Ichki aloqalar" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ichki aloqalar" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -17322,7 +17345,7 @@ msgstr "" "Agar tashqi kalit (FOREIGN KEY) orqali aloqa mavjud bo‘lsa, ichki aloqa " "o‘rnatish shart emas." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -17390,13 +17413,13 @@ msgstr "Asl pozitsiya" msgid "Replaced string" msgstr "Aloqalar" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 #, fuzzy #| msgid "Replication" msgid "Replace" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 #, fuzzy #| msgid "SQL Query box" msgid "Additional search criteria" @@ -17486,7 +17509,7 @@ msgid "at beginning of table" msgstr "Jadval boshiga" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17522,30 +17545,30 @@ msgstr "Qator uzunligi" msgid "Index length" msgstr "Qator uzunligi" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "bo‘laklarga bo‘lingan" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Chop etish versiyasi" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Foydalanilayotgan joy" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Effektivlik" @@ -17576,33 +17599,33 @@ msgstr "Jadval tuzilishi tahlili" msgid "Track view" msgstr "Jadvalni kuzatish" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "Qatorlar statistikasi" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "statik" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "dinamik" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "bo‘laklarga bo‘lingan" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Qator uzunligi" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Qator hajmi" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -17618,52 +17641,52 @@ msgstr "\"%s\" jadvali o‘chirildi" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Ko‘proq mavzuga ega bo‘ling!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Mavjud MIME turlari" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Mavjud o‘girishlar" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "Mavjud o‘girishlar" -#: transformation_overview.php:53 +#: transformation_overview.php:54 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Tavsifi" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Tracking report" msgid "Taking you to the target site." msgstr "Kuzatish hisoboti" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Profil yangilandi." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing" msgid "Password is too long!" @@ -17737,7 +17760,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -17762,19 +17785,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -17836,29 +17859,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "%1$s jadvali tuzildi." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "Jadval nomi shabloni" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Jadval boshiga" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -17875,10 +17898,16 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Jadval boshiga" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17925,7 +17954,7 @@ msgstr "" msgid "strict error" msgstr "Xatolarga e`tibor bermaslik" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -19144,6 +19173,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#, fuzzy +#~| msgid "Host authentication order" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Autentifikatsiya tartibi" + #, fuzzy #~| msgid "Try to connect without password" #~ msgid "Try to connect without password." diff --git a/po/vi.po b/po/vi.po index feda54bc20..afc88b7df1 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-10-10 19:30+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese Are you sure you " "want to continue?" @@ -1900,51 +1905,51 @@ msgstr "" "Thao tác này có thể thay đổi một số định nghĩa các cột.
Bạn có chắc muốn " "tiếp tục không?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "Tiếp tục" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "Thêm khóa chính" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "Đã thêm khóa chính." -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "Đưa bạn đến bước kế tiếp…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Bước đầu của việc tiêu chuẩn hóa là đủ cho bảng '%s'." -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "Bước cuối" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "Bước thứ hai của việc tiêu chuẩn hóa (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "Xong" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "Xác nhận các phần phục thuộc một phần" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "Chọn các phần phục thuộc một phần được hiển thị ở dưới đây:" -#: js/messages.php:446 +#: js/messages.php:447 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1952,197 +1957,197 @@ msgstr "" "Chú ý: a, b -> d,f ngầm ý là giá trị của các cột a và biến kết hợp cùng nhau " "có thể xác định các giá trị của cột d và cột f." -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "Chưa chọn cơ sở dữ liệu." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Hiển thị cho tôi xem các phần phụ thuộc một phần trên dữ liệu trong bảng" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "Ẩn danh sách các phần phục thuộc một phần" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "Bước" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "Những thao tác sau đây sẽ được thực hiện:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP cột %s từ bảng %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "Tạo ra bảng sau đây" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "Bước thứ ba của việc tiêu chuẩn hóa (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "Chưa chọn ô điều khiển." -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Ghi lại" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "Ẩn kết quả tìm kiếm" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "Hiển thị kết quả tìm kiếm" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "Vùng tìm kiếm" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "Giá trị tối đa" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "Chiều cao nhỏ nhất" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "Giá trị tối thiểu" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "Giá trị tối đa" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "Ẩn kết quả tìm kiếm" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "Hiển thị hộp thoại tìm kiếm." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "Mỗi điểm biểu diễn một dòng dữ liệu." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "Di chuột lên trên một điểm sẽ hiển thị nhãn của nó." -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Để phóng to, chọn một vùng của biểu đồ bằng chuột." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "Bấm chuột vào nút đặt lại phóng to để trở lại trạng thái ban đầu." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "Bấm vào điểm dữ liệu để xem và gần như chắc là sửa dòng dữ liệu." -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Biểu đồ có thể được thay đổi cỡ bằng cách kéo nó ở góc phải dưới." -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "Chọn hai cột" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "Phải chọn hai cột khác nhau" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "bài tóm tắt diễn tả nội dung của dữ liệu này" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "Bỏ qua" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "Chép" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "Điểm" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "Chuỗi-dòng" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "Hình đa giác" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "Hình dạng" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "Vòng trong" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "Vòng ngoài" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "Bạn có thực sự muốn chép khóa mã hóa?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "Khóa mã hóa" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2150,24 +2155,24 @@ msgstr "" "Thấy rằng bạn đã thay đổi trang này; bạn sẽ được nhắc xác nhận trước khi bỏ " "phí những thay đổi" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "Chọn Khóa tham chiếu" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "Chọn Khóa Ngoại" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "Vui lòng chọn khóa chính hoặc một khóa có giá trị độc nhất!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Chọn cột bạn muốn hiển thị" -#: js/messages.php:550 +#: js/messages.php:551 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?" @@ -2175,76 +2180,76 @@ msgstr "" "Bạn chưa lưu các thay đổi trong bố cục. Chúng sẽ mất nếu bạn không lưu lại. " "Bạn vẫn muốn tiếp tục chứ?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "Tên trang" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Ghi lại trang" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Ghi trang bằng tên mới" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Mở trang" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "Xóa trang" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Chưa đặt tên" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "Xin hãy chọn trang bạn muốn hiển thị:" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "Vui lòng nhập vào tên trang hợp lệ" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "Bạn có thực sự muốn lưu các thay đổi vào trang hiện tại không?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "Trang đã được xóa thành công" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "Lược đồ quan hệ" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "Các thay đổi đã được ghi lại" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "Thêm tùy-chọn cho cột \"%s\"." -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "%d đối tượng đã được tạo." -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "Gửi" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "Nhấn vào Esc để hủy sửa chữa." -#: js/messages.php:575 +#: js/messages.php:576 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?" @@ -2252,15 +2257,15 @@ msgstr "" "Bạn đã sửa một số dữ liệu và chúng chưa được lưu lại. Bạn có thực sự muốn " "rời trang này trước khi ghi lại dữ liệu hay không?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "Kéo thả để thay đổi thứ tự." -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "Bấm để sắp xếp kết quả theo cột này." -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2270,26 +2275,26 @@ msgstr "" "
- Ctrl+Click hay Alt+Click (Mac: Shift+Option+Click) để xóa cột khỏi " "mệnh đề ORDER BY" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "Bấm chuột để đánh/bỏ đánh dấu" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "Bấm đúp chuột để sao chép tên cột" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Bấm vào mũi tên chỉ xuống
để bật/tắt tính khả kiến của cột." -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "Hiện tất" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2298,12 +2303,12 @@ msgstr "" "lưới, dấu kiểm, Sửa, Chép hay Xóa liên kết sẽ không hoạt động sau khi ghi " "lại." -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Vui lòng nhập vào chuỗi thập lục phân hợp lệ. Các ký tự hợp lệ là 0-9, A-F." -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2311,103 +2316,103 @@ msgstr "" "Bạn có thực sự muốn xem tất cả các dòng? Với các bảng lớn, việc này có thể " "làm treo trình duyệt." -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "Chiều dài gốc" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "thôi" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Bị hủy bỏ" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "Thành công" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "Trạng thái nhập vào" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "Thả tập tin vào đây" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "Hãy chọn cơ sở dữ liệu trước" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "In" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Bạn cũng có thể sửa phần lớn các giá trị
bằng cách bấm đúp chuột trực " "tiếp vào chúng." -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Bạn cũng có thể sửa phần lớn các giá trị
bằng cách bấm chuột trực tiếp " "vào chúng." -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "Nhảy đến liên kết:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "Chép tên cột." -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "Bấm chuột phải vào tên cột để chép nó vào clipboard của bạn." -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "Tạo mật khẩu" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "Tạo" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "Thêm" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "Hiển thị bảng điều khiển" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "Ẩn bảng điều khiển" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "Hiển thị các mục ẩn cây điều hướng." -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "Liên kết với bảng điều khiển chính" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "Bỏ liên kết với bảng điều khiển chính" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "Trang đã yêu cầu không tìm thấy trong lịch sử, nó có lẽ đã hết hạn." -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2417,49 +2422,49 @@ msgstr "" "bản mới nhất là %s, phát hành vào %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ", phiên bản ổn định mới nhất:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "đã cập nhật" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "Tạo view" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "Gửi báo cáo lỗi" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "Gửi báo cáo lỗi" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Có lỗi JavaScript nghiêm trọng đã xảy ra. Bạn có muốn gửi báo cáo lỗi không?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "Thay đổi các cài đặt báo cáo" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "Hiển thị chi tiết báo cáo" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Việc xuất của bạn chưa hoàn tất, bởi vì giới hạn thực thi thấp ở mức PHP!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2468,59 +2473,59 @@ msgstr "" "Cảnh báo: mẫu đơn trên trang này có nhiều hơn %d trường. Khi được gửi đi, " "một số trường có thể bị bỏ qua, bởi vì phần cấu hình max_input_vars của PHP." -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "Một số lỗi đã thấy trên máy phục vụ!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "Vui lòng xem ở phần dưới của cửa sổ này." -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "Bỏ qua tất" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Với mỗi cài đặt của bạn, chúng hiện đang được gửi đi, vui lòng nhẫn nại." -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "Thực hiện truy vấn này lần nữa?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "Bạn có thực sự muốn xóa đánh dấu này?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "Đã có một số lỗi xảy ra khi lấy thông tin gỡ lỗi SQL." -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "các truy vấn %s thực thi %s lần trong %s giây." -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "đã chuyển qua %s tham số" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "Hiển thị các đối số" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "Ẩn các đối số" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "Thời gian cần:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2529,353 +2534,373 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "Chép các bảng sang" -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Thêm tiền tố cho bảng:" -#: js/messages.php:727 +#: js/messages.php:728 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Thêm tiền tố cho bảng" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Chép bảng với tiền tố" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "Trước" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "Tiếp theo" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "Hôm nay" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "Tháng giêng" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "Tháng hai" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "Tháng ba" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "Tháng tư" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "Tháng năm" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "Tháng sáu" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "Tháng bảy" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "Tháng tám" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "Tháng chín" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "Tháng mười" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "Tháng mười một" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "Tháng mười hai" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "Th1" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "Th2" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "Th3" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "Th4" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "Th5" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "Th6" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "Th7" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "Th8" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "Th9" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "Th10" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "Th10" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "Th12" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "Chủ nhật" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "Thứ hai" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "Thứ ba" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "Thứ tư" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "Thứ năm" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "Thứ sáu" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "Thứ bảy" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "CN" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "T2" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "T3" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "T4" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "T5" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "T6" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "T7" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "CN" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "T2" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "T3" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "T4" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "T5" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "T6" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "T7" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "Tuần" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "không" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "Giờ" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "Phút" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "Giây" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "Trường này là bắt buộc" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "Vui lòng sửa trường này" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "Vui lòng nhập một địa chỉ thư hợp lệ" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "Vui lòng nhập một địa chỉ URL hợp lệ" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "Vui lòng nhập ngày tháng hợp lệ" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "Vui lòng nhập ngày tháng hợp lệ ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "Vui lòng nhập con số hợp lệ" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "Vui lòng nhập thẻ tín dụng hợp lệ" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "Vui lòng chỉ nhập số" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "Vui lòng nhập lại giá trị đó một lần nữa" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "Vui lòng nhập vào nhiều hơn {0} ký tự" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "Vui lòng nhập vào ít nhất {0} ký tự" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "Vui lòng nhập vào một giá trị độ dài giữa {0} và {1} ký tự" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "Vui lòng nhập vào một giá trị giữa {0} và {1}" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "Vui lòng nhập vào một giá trị nhỏ hơn hoặc bằng {0}" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "Vui lòng nhập vào một giá trị lớn hơn hoặc bằng {0}" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "Vui lòng nhập vào một ngày tháng hay thời gian hợp lệ" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "Vui lòng nhập vào một HEX hợp lệ" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "Lỗi" @@ -2938,20 +2963,20 @@ msgid "Charset" msgstr "Tên bộ ký tự" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "Bảng mã đối chiếu" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "Nhị phân" @@ -3146,7 +3171,7 @@ msgid "Czech-Slovak" msgstr "Cộng hòa Xlô-vác" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "không hiểu" @@ -3199,27 +3224,27 @@ msgstr "" msgid "Font size" msgstr "Cỡ phông chữ" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "Không có đánh dấu nào" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "Hộp truy vấn SQL" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Gặp lỗi khi đọc tập tin cấu hình!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3227,25 +3252,25 @@ msgstr "" "Máy phục vụ không trả lời (hoặc ổ cắm mạng của máy phục vụ nội bộ hiện chưa " "được cấu hình)." -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "Máy phục vụ không trả lời." -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "Vui lòng kiểm tra đặc quyền của thư mục chứa cơ sở dữ liệu." -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "Chi tiết…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "Thiếu tham số:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3339,108 +3364,103 @@ msgstr "Chèn:" msgid "Del:" msgstr "Xóa:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "Truy vấn SQL trên cơ sở dữ liệu %s:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "Gửi truy vấn" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "Sửa đổi việc tìm kiếm đã lưu" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "Đánh dấu mới" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "Tạo đánh đánh dấu" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "Cập nhật đánh dấu" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "Xóa đánh dấu" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "ít nhất một trong các từ" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "tất cả các từ" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "đúng nhóm từ" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "dùng biểu thức chính quy" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Kết quả tìm kiếm cho \"%s\" %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Tổng cộng: %s khớp mẫu" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s khớp trong %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "Duyệt" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Xóa những cái khớp cho bảng %s không?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "Tìm kiếm trong cơ sở dữ liệu" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Từ hay giá trị muốn tìm kiếm (wildcard: \"%\"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "Tìm:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "Các từ được ngăn cách nhau bằng ký tự khoảng trắng (\" \")." -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "Trong bảng:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "Bỏ chọn tất cả" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "Trong cột:" @@ -3460,30 +3480,30 @@ msgstr "Số hàng" msgid "Search this table" msgstr "Tìm kiếm trong bảng này" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "Bắt đầu" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "Kế trước" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "Kế tiếp" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "Cuối" @@ -3492,7 +3512,7 @@ msgstr "Cuối" msgid "All" msgstr "Tất cả" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Số hàng:" @@ -3501,8 +3521,8 @@ msgstr "Số hàng:" msgid "Sort by key" msgstr "Sắp xếp theo khóa" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3524,10 +3544,10 @@ msgstr "Sắp xếp theo khóa" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "Tùy chọn" @@ -3567,29 +3587,29 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "Hàng đã bị xóa bỏ." -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Giết" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Có thể chỉ là ước đoán. Xem [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "Truy vấn SQL của bạn đã được thực hiện thành công." -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3597,73 +3617,73 @@ msgid "" msgstr "" "View này có ít nhất số lượng dòng này. Vui lòng tham khảo %stài liệu%s." -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "Hiển thị các hàng %1s - %2s" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "Tổng %1$d, %2$d trong truy vấn" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "tổng %d" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "Truy vấn cần %01.4f giây." -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "Lưu mục đã chọn" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "Theo dõi bảng" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "Chép vào clipboard" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "Kết quả truy vấn các thao tác" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "Hiển thị biểu đồ" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "Định dạng dữ liệu chưa rõ" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "Không tìm thấy liên kết!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "Không" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "Chuyển đổi sang Kana" @@ -3671,23 +3691,23 @@ msgstr "Chuyển đổi sang Kana" msgid "Too many error messages, some are not displayed." msgstr "Quá nhiều lời nhắn lỗi, một số trong chúng sẽ không được hiển thị." -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "Báo cáo" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "Lần sau sẽ tự động gửi báo cáo" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "Tập tin không phải là một tập tin được tải lên" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Tập tin đã tải vượt quá chỉ thị upload_max_filesize trong php.ini." -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3695,48 +3715,48 @@ msgstr "" "Tập tin đã tải vượt quá chỉ thị MAX_FILE_SIZE cái mà được chỉ định trong mẫu " "đơn HTML." -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "Tập tin đã tải chỉ được tải lên một phần." -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "Thiếu thư mục tạm." -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "Gặp lỗi khi ghi tập tin vào đĩa." -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "Tải tập tin bị dừng bởi phần mở rộng." -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "Gặp lỗi chưa biết trong tải tập tin" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "Không thể đọc tập tin!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Lỗi di chuyển tập tin đã tải, vui lòng xem [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "Lỗi khi di chuyển tập tin đã tải lên." -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "Không thể đọc tập tin đã tải lên." -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3745,28 +3765,28 @@ msgstr "" "Bạn đã cố tải tập tin với kiểu nén chưa được hỗ trợ (%s). Hoặc là việc hỗ " "trợ nó chưa được thực hiện hoặc là bị tắt bởi cấu hình của bạn" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "Hiện tại đang chạy Git phiên bản %1$s từ nhánh %2$s." -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "Thiếu thông tin git!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "Mở cửa sổ phpMyAdmin mới" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "Xem thử bản in" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "Bấm vào thanh để cuộn lên đỉnh trang" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "Javascript phải được bật qua điểm này!" @@ -3775,20 +3795,20 @@ msgid "No index defined!" msgstr "Chưa định nghĩa chỉ mục!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "Chỉ mục" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3798,59 +3818,59 @@ msgstr "Chỉ mục" msgid "Action" msgstr "Hành động" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "Tên khóa" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "Duy nhất" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "Đã đóng gói" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "Số lượng" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "Chú thích" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "Khóa chính đã được xóa bỏ" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "Chỉ mục %s đã được xóa bỏ." -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "Xóa" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3859,19 +3879,19 @@ msgstr "" "Các chỉ mục %1$s và %2$s dường như là giống nhau và một trong số chúng có " "thể gần như chắc chắn nên được xóa bỏ." -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "Số trang:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "Bỏ qua mã ngôn ngữ không được hỗ trợ." -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Ngôn ngữ" @@ -3897,11 +3917,11 @@ msgstr "Máy phục vụ" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3920,14 +3940,15 @@ msgid "View" msgstr "View" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3936,8 +3957,8 @@ msgid "Table" msgstr "Bảng" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3945,45 +3966,45 @@ msgstr "Bảng" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "Tìm kiếm" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "Chèn" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Đặc quyền" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "Thao tác" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "Theo dõi" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3999,16 +4020,16 @@ msgstr "Bẫy" msgid "Database seems to be empty!" msgstr "Cơ sở dữ liệu có vẻ là đang trống rỗng!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "Truy vấn" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "Thủ tục" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -4016,20 +4037,20 @@ msgstr "Thủ tục" msgid "Events" msgstr "Sự kiện" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "Bộ thiết kế" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Các cột trung tâm" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "Cơ sở dữ liệu" @@ -4038,51 +4059,51 @@ msgid "User accounts" msgstr "Các tài khoản người dùng" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Nhật ký nhị phân" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Bản sao" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Biến" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "Bảng mã" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "Bộ máy" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Phần bổ sung" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d hàng chịu tác động." -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d hàng được xóa." -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4129,27 +4150,27 @@ msgstr "Bảng ưa dùng" msgid "Favorites" msgstr "Ưa dùng" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "Vui lòng cung cấp một tên cho tìm kiếm đã đánh dấu này." -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "Thiếu thông tin để ghi tìm kiếm đã đánh dấu." -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "Một mục tin với tên này đã có rồi." -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "Thiếu thông tin để xóa tìm kiếm." -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "Thiếu thông tin để tải tìm kiếm." -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "Gặp lỗi khi đang tải tìm kiếm." @@ -4211,7 +4232,7 @@ msgstr "Hiện các bảng mở" msgid "Show slave hosts" msgstr "Hiển thị máy lệ thuộc" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "Hiện trạng thái máy chính" @@ -4263,70 +4284,70 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d phút" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Không có thông tin trạng thái chi tiết sẵn có nào cho bộ máy lưu trữ này." -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s là bộ máy lưu trữ mặc định trên máy chủ MySQL này." -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s sẵn sàng trên máy chủ MySQL này." -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s đã bị tắt cho máy chủ MySQL này." -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Máy chủ MySQL này không hỗ trợ bộ máy lưu trữ %s." -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "Không hiểu các trạng thái bảng:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "Không tìm thấy cơ sở dữ liệu nguồn “%s“!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "Không tìm thấy cơ sở dữ liệu đích “%s“!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "Cơ sở dữ liệu không hợp lệ:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "Tên bảng không hợp lệ" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Gặp lỗi khi đổi tên bảng %1$s thành %2$s" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Bảng %1$s đã được đổi tên thành %2$s." -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "Không thể ghi lại bảng mới dùng" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4335,7 +4356,7 @@ msgstr "" "Gặp lỗi khi dọn dẹp tùy thích bảng UI (xem $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4343,19 +4364,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Tên của khóa chính phải là \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "Không thể đổi tên chỉ mục thành PRIMARY!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "Chưa định nghĩa bộ phận chỉ mục nào!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Gặp lỗi khi tạo khóa ngoại trên %1$s (kiểm tra lại kiểu dữ liệu)" @@ -4624,7 +4645,7 @@ msgid "Date and time" msgstr "Ngày giờ" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "Chuỗi" @@ -4639,126 +4660,126 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "T.Đa: %s%s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "Thống kê phân tích:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "Đã phát sinh %d lỗi trong quá trình phân tích." -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL đã nói: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "Giải thích SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "Bỏ qua giảng giải SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "Analyze Explain tại %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "Không mã PHP" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "Gửi truy vấn" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "Tạo mã PHP" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "Làm tươi lại" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "Hồ sơ" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Sửa chung dòng" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "CN" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y lúc %I:%M %p" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ngày, %s giờ, %s phút và %s giây" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "Thiếu tham số:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "Nhảy tới cơ sở dữ liệu \"%s\"." -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Hàm %s bị ảnh hưởng bởi lỗi đã biết, xem %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "Duyệt máy tính của bạn:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Chọn từ thư mục tải lên của máy phục vụ web %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "Thư mục bạn đặt cho việc tải lên không thể tiếp cận được." -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "Không có tập tin nào để tải lên!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Rỗng" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "Thi hành" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Người dùng" @@ -4772,7 +4793,7 @@ msgstr "mỗi phút" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "mỗi giờ" @@ -4780,12 +4801,12 @@ msgstr "mỗi giờ" msgid "per day" msgstr "mỗi ngày" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "Tìm kiếm:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4793,7 +4814,7 @@ msgstr "Tìm kiếm:" msgid "Description" msgstr "Mô tả" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "Dùng giá trị này" @@ -4830,22 +4851,22 @@ msgstr "CÓ" msgid "NO" msgstr "KHÔNG" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "Tên" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "Dài/Giá-trị" @@ -4854,7 +4875,7 @@ msgstr "Dài/Giá-trị" msgid "Attribute" msgstr "Thuộc tính" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "A_I" @@ -4871,11 +4892,11 @@ msgstr "Thêm cột" msgid "Select a column." msgstr "Chọn một cột." -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "Thêm cột mới" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4883,34 +4904,34 @@ msgstr "Thêm cột mới" msgid "Attributes" msgstr "Thuộc tính" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "Chỉ mục máy chủ không hợp lệ: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Tên máy không hợp lệ cho máy phục vụ %1$s. Vui lòng xem lại cấu hình của bạn." -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "Máy chủ %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "Phương thức xác thực trong cấu hình không hợp lệ:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4918,20 +4939,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Bạn nên nâng cấp lên %s %s hay bản mới hơn." -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "Lỗi: Không khớp thẻ" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "Cố gắng kết nối gặp lỗi" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "Kết quả có thể" @@ -5482,7 +5503,7 @@ msgid "Compress on the fly" msgstr "Nén khi đang truyền (on-the-fly)" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "Tập tin cấu hình" @@ -5590,12 +5611,12 @@ msgstr "" msgid "Maximum execution time" msgstr "Thời gian thi hành tối đa" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "Dùng câu lệnh %s" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "Lưu thành tập tin" @@ -5605,7 +5626,7 @@ msgstr "Bảng mã của tập tin" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "Định dạng" @@ -5730,7 +5751,7 @@ msgid "Save on server" msgstr "Ghi lại tại máy chủ" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "Ghi đè lên tập tin đã có" @@ -5743,7 +5764,7 @@ msgid "Remember file name template" msgstr "Nhớ mẫu tên tập tin" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "Thêm giá trị AUTO_INCREMENT" @@ -5752,7 +5773,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Bao quanh tên bảng và cột bằng dấu nháy ngược" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "Chế độ tương thích SQL" @@ -5782,7 +5803,7 @@ msgstr "Xuất siêu dữ liệu quan hệ từ kho cấu hình phpMyAdmin" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "Thêm %s" @@ -5952,7 +5973,7 @@ msgid "Customize the navigation tree." msgstr "Cá nhân hóa cây điều hướng." #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "Máy phục vụ" @@ -6843,7 +6864,7 @@ msgstr "HTTP Realm" msgid "Authentication method to use." msgstr "Phương thức xác thực sẽ dùng" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "Kiểu xác thực" @@ -7540,7 +7561,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "Bật tab Phát triển trong các cài đặt" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "Kiểm tra phiên bản mới nhất" @@ -7548,10 +7569,10 @@ msgstr "Kiểm tra phiên bản mới nhất" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Cho phép kiểm tra phiên bản mới nhất trên trang phpMyAdmin chính." -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "Kiểm tra phiên bản" @@ -7696,24 +7717,24 @@ msgstr "Kiểu Word 2000 của Microsoft™" msgid "OpenDocument Text" msgstr "Văn bản OpenDocument" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "Danh sách Ưa dùng đã đầy!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "Bảng %s đã được làm trống." -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "View %s đã được xóa bỏ." -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "Bảng %s đã được xóa bỏ." @@ -7727,12 +7748,12 @@ msgid "Position" msgstr "Vị trí" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "Kiểu sự kiện" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "ID máy chủ" @@ -7741,7 +7762,7 @@ msgid "Original position" msgstr "Vị trí nguyên bản" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "Thông tin" @@ -7755,41 +7776,41 @@ msgstr "Cắt cụt các truy vấn hiện" msgid "Show Full Queries" msgstr "Hiện Toàn bộ các truy vấn" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "Không có cơ sở dữ liệu nào" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "Cơ sở dữ liệu %1$s đã được tạo ra." -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d cơ sở dữ liệu được xóa thành công." -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "Hàng" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "Tổng cộng" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "Tổng chi phí" @@ -7816,32 +7837,32 @@ msgstr "" msgid "Enable statistics" msgstr "Bật thống kê" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "Không đủ đặc quyền để xem các cài đặt và biến máy phục vụ: %s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "Gặp lỗi khi cài đặt biến" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "Chưa đặt truy vấn SQL nào để mà có thể lấy dữ liệu về từ đó." -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "Không hiện diện cột mang giá trị bằng số nào trong bảng để vẽ cả." -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "Không có dữ liệu để hiển thị" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "Bảng %1$s đã thay đổi thành công." @@ -7883,7 +7904,7 @@ msgstr "Các cột được di chuyển thành công." #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "Lỗi truy vấn" @@ -7900,12 +7921,12 @@ msgstr "Thay đổi" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "Chỉ mục" @@ -7926,14 +7947,14 @@ msgstr "Toàn văn" msgid "Distinct values" msgstr "Giá trị Distinct" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" "Thiếu phần mở rộng %s. Vui lòng kiểm tra lại phần cấu hình PHP của bạn." -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "Không thay đổi gì" @@ -7956,31 +7977,35 @@ msgstr "" "Không thể tải phần bổ sung lược đồ, vui lòng kiểm tra bản cài đặt của bạn!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "Không Mật khẩu" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "Mật khẩu:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "Gõ lại:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "Mã băm mật khẩu:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -7990,83 +8015,83 @@ msgstr "" "không mã hóa cái mà mã hóa mật khẩu dùng RSA'; trong khi kết nối đến máy " "phục vụ." -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "Xuất các cơ sở dữ liệu ra từ máy phục vụ hiện tại" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "Xuất các bảng từ cơ sở dữ liệu \"%s\"" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "Xuất các hàng từ bảng \"%s\"" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "Xuất các mẫu:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "Mẫu mới:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "Tên mẫu" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "Tạo" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "Các mẫu sẵn có:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "Mẫu:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "Cập nhật" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "Chọn một mẫu" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "Phương thức xuất:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "Nhanh - chỉ hiển thị các tùy chọn tối thiểu" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "Tùy thích - hiển thị toàn bộ các tùy chọn có thể" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "Cơ sở dữ liệu:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "Bảng:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "Định dạng:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "Tùy chọn đặc-tả-định-dạng:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." @@ -8074,52 +8099,52 @@ msgstr "" "Cuộn xuống để diền vào các tùy chọn cho định dạng đã chọn và bỏ qua các tùy " "chon cho các định dạng khác." -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "Chuyển đổi bảng mã:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "Hàng:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "Đổ một số hàng" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "Hàng bắt đầu từ:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "Đổ tất cả các hàng" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "Xuất:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "Lưu trên máy chủ phục vụ ở thư mục %s" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "Tên tập tin mẫu:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ sẽ thay thế bởi tên máy chủ" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ sẽ được thay bằng tên cơ sở dữ liệu" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ", @TABLE@ sẽ được thay thế bằng tên bảng" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8131,99 +8156,99 @@ msgstr "" "Các chữ khác sẽ được nguyên như nó vốn có. Xem %4$sFAQ%5$s để biết thêm chi " "tiết." -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "dùng các cài đặt này cho lần xuất tới" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "Bảng mã của tập tin:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "Nén:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "đã nén zip" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "đã nén gzip" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "Hiển thị dạng chữ thường" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "Xuất các cơ sở dữ liệu thành các tập tin khác nhau" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "Xuất các bảng thành các tập tin khác nhau" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "Đổi tên các cơ sở dữ liệu/bảng/cột đã xuất" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "Ghi kết xuất ra tập tin" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "Bỏ qua các bảng lớn hơn" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "Chọn cơ sở dữ liệu" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "Chọn bảng" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "Tên cơ sở dữ liệu mới" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "Tên bảng mới" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "Tên cột cũ" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "Tên cột mới" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" "Không thể tải phần bổ xung xuất, vui lòng kiểm tra bản cài đặt của bạn!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s từ %2$s nhánh" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "không nhánh nào" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Phiên bản git:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "chuyển giao vào %1$s bởi %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "xác thực lúc %1$s bởi %2$s" @@ -8634,90 +8659,90 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "Không đủ chỗ để lưu tập tin %s." -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "Tập tin %s đã sẵn có trên máy chủ, đổi tên hay kiểm tra tùy chọn ghi đè." -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Trình phục vụ web không có quyền lưu tập tin %s." -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "Đổ đã được lưu vào tập tin %s." -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL trả về kết quả là trống rỗng (vd. không có hàng nào)." -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[đã nảy sinh ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Các cấu trúc sau đây hoặc là được tạo hoặc là bị sửa chữa. Ở đây bạn có thể:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "Xem nội dung của cấu trúc bằng cách bấm vào tên của nó." -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Thay đổi bất kỳ các tùy chọn của nó bằng các bấm vào liên kết \"Tùy chọn\" " "tương ứng." -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "Sửa cấu trúc bằng cách bấm vào liên kết \"Cấu trúc\"." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "Chuyển đến cơ sở dữ liệu: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "Sửa các cài đặt cho %s" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "Chuyển đến bảng: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "Cấu trúc của %s" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "Chuyển đến view: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Chỉ các truy vấn UPDATE và DELETE trên một bảng được mô phỏng." -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8730,86 +8755,87 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "Tạo một chỉ mục trên  %s columns" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "Ẩn" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "Hàm" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "Bởi vì chiều dài của nó,
cột này có thể không sửa được." -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "Nhị phân (Binary) - đừng sửa" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Hoặc" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "thư mục để tải lên máy chủ:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Sửa/Chèn" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "Tiếp tục chèn với %s hàng" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "và sau đó" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "Chèn hàng mới" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "Chèn hàng mới và bỏ qua các lỗi" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "Hiện câu truy vấn chèn dữ liệu" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "Trở về trang kế trước" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "Chèn thêm một hàng mới nữa" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "Trở lại trang này" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "Sửa hàng kế tiếp" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Dùng phím TAB để di chuyển từ giá trị này sang giá trị khác và CTRL+phím mũi " "tên để di chuyển ở chỗ khác." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8820,31 +8846,31 @@ msgstr "" msgid "Value" msgstr "Giá trị" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "Hiện truy vấn SQL" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "Chỉ số id người dùng kép: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Thành công!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "Chỉ cấu trúc" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "Cấu trúc và dữ liệu" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "Chỉ dữ liệu" @@ -8855,14 +8881,14 @@ msgid "Add AUTO INCREMENT value" msgstr "Thêm giá trị AUTO_INCREMENT" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "Thêm ràng buộc" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Chỉnh đặc quyền" @@ -8907,8 +8933,8 @@ msgstr "Thủ tục:" msgid "Views:" msgstr "Trình bày:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "Hiện" @@ -8950,17 +8976,17 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "Tìm thấy %s kết quả" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "Gõ bộ vào hộp bộ lọc, Enter để tìm tất cả" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "Xóa bộ lọc nhanh" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "Mở rộng tất cả" @@ -8975,7 +9001,7 @@ msgstr "Tên lớp không hợp lệ \"%1$s\", nên dùng mặc định của \" msgid "Could not load class \"%1$s\"" msgstr "Không thể tải lớp \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "Dãn/Co" @@ -8994,7 +9020,7 @@ msgstr "Mới" msgid "Database operations" msgstr "Thao tác hiển thị" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "Hiện các mục tin ẩn" @@ -9093,11 +9119,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "Chọn một…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "Không có cột nào như vậy" @@ -9333,8 +9359,8 @@ msgid "Rename database to" msgstr "Đổi tên cơ sở dữ liệu thành" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9380,177 +9406,177 @@ msgstr "(đơn)" msgid "Move table to (database.table)" msgstr "Di chuyển bảng đến (cơ sở dữ liệu.bảng)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "Đổi tên bảng thành" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "Chú thích về bảng" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "Tùy chọn về bảng" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "Bộ máy lưu trữ" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "Thay đổi mọi bảng mã đối chiếu cột" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "Chép bảng đến (cơ sở dữ liệu.bảng)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "Không có bảng nào để in" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "Bảo trì bảng" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "Phân tích bảng" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "Kiểm tra bảng" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Tổng kiểm tra bảng" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "Chống phân mảnh bảng" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "Bảng %s đã được đẩy dữ liệu từ bộ nhớ lên đĩa." -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "Đẩy dữ liệu từ bảng lên đĩa cứng (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "Tối ưu hóa bảng" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "Sửa chữa bảng" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "Xóa dữ liệu hay bảng" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "Xóa dữ liệu của bảng (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "Xóa bảng (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "Phân tích" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "Kiểm tra" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "Tối ưu hóa" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "Xây dụng lại" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "Sửa chữa" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "Cắt ngắn" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "Hợp nhất" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "Bảo trì phân vùng" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "Phân vùng %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Xóa phân vùng" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "Kiểm tra tính nguyên vẹn dữ liệu của đĩa" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "Không thể di chuyển bảng đến cùng một cái!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "Không thể sao chép bảng đến cùng một cái!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Bảng %s đã được chuyển sang %s. Đặc quyền đã được điều chỉnh lại." -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Bảng %s đã được chép sang %s. Đặc quyền đã được điều chỉnh lại." -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "Bảng %s được chuyển sang %s." -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "Bảng %s được chép sang %s." -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "Tên bảng còn để trống!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "Định dạng này không có tùy-chọn" @@ -9578,18 +9604,18 @@ msgstr "Hiện màu" msgid "Only show keys" msgstr "Chỉ hiện biểu tượng" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "Không thể kết nối: cài đặt sai." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "Chúc mừng bạn dùng %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9598,7 +9624,7 @@ msgstr "" "Bạn gần như chắc chắn là chưa tạo tập tin cấu hình. Bạn có lẽ nên dùng " "%1$strang cài đặt%2$s để tạo cho mình một cái." -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9606,7 +9632,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "Thử kết nối lại" @@ -9632,15 +9658,15 @@ msgstr "Tài khoản:" msgid "Server Choice:" msgstr "Chọn Máy chủ:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "Captcha đã nhập là sai, hãy thử lại!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "Vui lòng nhập captcha đúng!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "Bạn không được phép đăng nhập vào máy MySQL này!" @@ -9701,7 +9727,7 @@ msgstr "Hiển thị hộp thoại tùy chọn" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Đang đổ dữ liệu cho bảng" @@ -9710,7 +9736,7 @@ msgstr "Đang đổ dữ liệu cho bảng" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "Sự kiện" @@ -9718,8 +9744,8 @@ msgstr "Sự kiện" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "Định nghĩa" @@ -9805,7 +9831,7 @@ msgstr "Đặt tên các cột ở hàng đầu tiên" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "Máy chủ:" @@ -10317,7 +10343,7 @@ msgstr "Mục lục" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "Thêm" @@ -10637,57 +10663,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "không có mô tả" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "Máy chính" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "Máy phục vụ này được cấu hình là máy chính trong tiến trình bản sao." -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "Hiển thị các máy phụ đã kết nối" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "Thêm người dùng máy bản sao phụ" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "Cấu hình chính" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10696,96 +10722,96 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "Nhân bản mọi cơ sở dữ liệu: Bỏ qua:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "Bỏ qua mọi cơ sở dữ liệu: Nhân bản:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "Hãy chọn một cơ sở dữ liệu:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "Máy phụ" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "Kết nối chính:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "Tuyến trình SQL phụ thuộc không chạy!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "Tuyến trình IO phụ thuộc không chạy!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Máy phục vụ được cấu hình là một máy phụ trong tiến trình bản sao. Bạn có " "muốn:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "Xem bảng trạng thái máy phụ" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "Điều khiển máy phụ:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "Khởi động toàn bộ" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "Tắt toàn bộ" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "Khởi động lại máy khách" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "Chỉ chạy tuyến trình SQL" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "Chỉ dừng tuyến trình SQL" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "Chỉ chạy tuyến trình IO" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "Chỉ dừng tuyến trình IO" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "Thay đổi hoặc cấu hình lại máy phục vụ chính" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10794,25 +10820,25 @@ msgstr "" "Máy phục vụ này không được cấu hình là máy phụ trong một tiến trình tái tạo " "bản sao. Bạn có muốn cấu hình nó?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "Quản lý lỗi:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Bỏ qua các lỗi có thể dẫn đến sự bất đồng bộ giữa máy chính và máy phụ!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "Bỏ qua lỗi hiện tại" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "Bỏ qua %s lỗi kế" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10821,11 +10847,11 @@ msgstr "" "Máy phục vụ này không được cấu hình là máy chính trong một tiến trình tái " "tạo bản sao. Bạn có muốn cấu hình nó?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "Cấu hình máy phụ" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -10833,53 +10859,53 @@ msgstr "" "Hãy chắc là bạn có mã-số-máy-chủ không trùng lặp trong tập tin cấu hình (my." "cnf) của bạn. Nếu không hãy thêm dòng sau đây vào phần [mysqld]:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Tài khoản:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Tài khoản" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "Mật khẩu" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "Cổng:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "Trạng thái máy chính" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "Trạng thái máy phụ" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Biến" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "Máy chủ" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -10887,39 +10913,39 @@ msgstr "" "Chỉ máy phụ thuộc khởi chạy với tùy chọn --report-host=tên_máy là hiện diện " "trong danh sách này." -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "Mọi máy" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "Nội bộ" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "Máy chủ này" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "Mọi người dùng" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "Trường nhập văn bản:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "Dùng bảng máy chủ" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -10927,77 +10953,77 @@ msgstr "" "Khi dùng bảng máy chủ, trường này sẽ bị bỏ qua và các giá trị lưu trong bảng " "Máy chủ được dùng để thay thế." -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "Gõ lại" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "Tạo mật khẩu:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "Máy bản sao đã được khởi chạy thành công." -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "Có lỗi khi khởi chạy máy bản sao." -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "Máy bản sao đã được dừng thành công." -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "Có lỗi khi dừng máy bản sao." -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "Máy bản sao đã được cài đặt lại thành công." -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "Có lỗi khi cài đặt lại máy bản sao." -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "Thành công." -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "Lỗi." -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "Lỗi chưa biết" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "Không thể kết nối tới máy chính %s" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Không thể đọc vị trí nhật ký máy chính. Gần như chắc chắn là có trục trặc " "với đặc quyền trên máy chính." -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "Không thể đổi máy chính!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "Máy phục vụ chính đã thay đổi thành công thành %s." #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11018,7 +11044,7 @@ msgstr "Sự kiện %1$s đã bị sửa đổi." msgid "Event %1$s has been created." msgstr "Sự kiện %1$s đã được tạo ra." -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "Có một hay nhiều lỗi xảy ra khi đang xử lý yêu cầu của bạn:" @@ -11027,75 +11053,75 @@ msgstr "Có một hay nhiều lỗi xảy ra khi đang xử lý yêu cầu của msgid "Edit event" msgstr "Sửa sự kiện" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "Chi tiết" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "Tên sự kiện" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "Thay đổi thành %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "Thực hiện lúc" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "Thực thi mỗi" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "Bắt đầu" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "Cuối" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "Đóng cong khi tạo xong" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "Bộ định nghĩa" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "Định nghĩa phải ở định dạng \"username@hostname\"!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "Phải ghi rõ tên tập tin." -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "Bạn phải cung cấp giá trị nhịp thời gian hợp lệ cho sự kiện." -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "Bạn phải cung cấp thời gian thi hành hợp lệ cho sự kiện." -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "Bạn phải cung cấp kiểu hợp lệ cho sự kiện." -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "Phải cung cấp một định nghĩa sự kiện." -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "Có lỗi trong yêu cấu xử lý:" @@ -11116,7 +11142,7 @@ msgstr "Các trạng thái lịch biểu sự kiện" msgid "The backed up query was:" msgstr "Truy vấn sao lưu dự phòng là:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "Trả về" @@ -11128,131 +11154,131 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "Sửa thủ tục" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Kiểu thủ tục không hợp lệ: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "Thủ tục %1$s đã được tạo ra." -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "Rất tiếc, chúng tôi gặp lỗi khi khôi phục lịa thủ tục đã xóa." -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Thủ tục %1$s đã bị sửa đổi. Các đặc quyền bị sửa đổi." -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "Thủ tục %1$s đã bị sửa đổi." -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "Tên thủ tục" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "Tham số" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "Hướng" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "Thêm tham số" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "Bỏ rãnh cuối" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "Kiểu trả về" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "gặp giá trị lặp lại sai" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "Tùy chọn trả về" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "Là một tất định" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "Kiểu an ninh" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "Truy cập dữ liệu SQL" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "Phải ghi rõ tên thủ tục!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Chỉ thị không hợp lệ \"%s\" đưa cho tham số." -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "Phải cung cấp định nghĩa thủ tục." -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "Kết quả thực thi của thủ tục %s" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 hàng chịu ảnh hưởng bởi lệnh cuối trong thủ tục." -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "Thực thi thủ tục" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "Tham số thủ tục" @@ -11274,32 +11300,32 @@ msgstr "Bẫy %1$s đã được tạo ra." msgid "Edit trigger" msgstr "Sửa bẫy" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "Tên bẫy" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Thời gian" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "Phải ghi rõ tên bẫy!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "Phải ghi rõ thời điểm hợp lệ cho bẫy!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "Phải ghi rõ sự kiện hợp lệ cho bẫy!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "Phải ghi rõ tên bảng hợp lệ!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "Phải cung cấp định nghĩa bẫy." @@ -11424,91 +11450,91 @@ msgstr "Bảng mã đối chiếu và Bộ ký tự" msgid "Databases statistics" msgstr "Thống kê cơ sở dữ liệu" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "Không có đặc quyền." -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "Bao gồm tất cả các đặc quyền ngoại trừ GRANT." -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "Cho phép đọc dữ liệu." -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "Cho phép chèn và thay đổi dữ liệu." -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "Cho phép thay đổi dữ liệu." -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "Cho phép xóa dữ liệu." -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "Cho phép tạo cơ sở dữ liệu và bảng mới." -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "Cho phép xóa cơ sở dữ liệu và bảng." -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Cho phép tải lại các cài đặt máy chủ và đẩy dữ liệu đệm của máy chủ lên đĩa." -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "Cho phép tắt dịch vụ." -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "Cho phép xem các tiến trình của mọi người dùng." -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "Cho phép nhập dữ liệu vào hay xuất dữ liệu ra các tập tin." -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "Chưa có hiệu quả trong phiên bản MySQL này." -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "Cho phép tạo vào xóa chỉ mục." -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "Cho phép sửa đổi cấu trúc của bảng sẵn có." -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "Cho quyền truy cập toàn bộ danh sách cơ sở dữ liệu." -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11518,125 +11544,99 @@ msgstr "" "các thao tác quản trị cấp cao như là đặt các biến toàn cục hay giết các " "tuyến trình của người dùng khác." -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "Cho phép tại các bảng tạm." -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "Cho phép khóa các bảng cho tuyến trình hiện tại." -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "Cần thiết cho bản sao phụ." -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "Cho phép người dùng hỏi máy chính/phụ ở đâu." -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "Cho phép tạo view mới." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "Cho phép cài đặt các sự kiện cho lịch biểu sự kiện." -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "Cho phép tạo và xóa các bẫy." -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Cho phép thực thi truy vấn SHOW CREATE VIEW." -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "Cho phép tạo thủ tục lưu trữ." -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "Cho phép thay đổi và xóa các thủ tục đã lưu." -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "Cho phép tạo, xóa và đổi tên các tài khoản người dùng." -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "Cho phép thực thi các thủ tục lưu trữ." -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "Không" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "Nhóm người dùng" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "Không yêu cầu các kết nối được mã hóa SSL." -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "Cần các kết nối được mã hóa SSL." -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "Cần giấy chứng nhận X509 hợp lệ." -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "Yêu cầu cái mà phương thức mã hóa được dùng cho một kết nối." -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "Cần giấy chứng nhận X509 hợp lệ được ký bởi CA hiện tại." -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "Cần giấy chứng nhận X509 hợp lệ với chủ thể hiện tại." -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "Giới hạn tài nguyên" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Chú ý: Đặt các tùy chọn này thành 0 (số không) để không giới hạn." - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Giới hạn số lượng truy vấn mà người dùng có thể gửi lên máy phục vụ mỗi giờ." -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -11644,337 +11644,320 @@ msgstr "" "Giới hạn số lượng lệnh mà thay đổi bảng hay cơ sở dữ liệu mà người dùng có " "thể thực thi mỗi giờ." -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "Giới hạn số lượng kết nối mới mà người dùng có thể mở mỗi giờ." -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "Giới hạn số lượng kết nối đồng thời mà người dùng có thể có." -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Thủ tục" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "Cho phép thay đổi và xóa thủ tục này." -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "Cho thực thi thủ tục này." -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Các đặc quyền dành-riêng-cho-thủ-tục" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Chú ý: Các tên đặc quyền MySQL là được biểu diễn bằng tiếng Anh." -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "Quản trị" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "Không đủ quyền." -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "Toàn cục" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "Đặt đặc quyền" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "Cho tạo bảng mới." -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "Cho phép xóa bảng." -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Cho phép thêm tài khoản và đặc quyền mà không cần tải lại bảng đặc quyền." -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "Xác thực MySQL nguyên bản" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "Xác thực dùng mật khẩu SHA256" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "Xác thực MySQL nguyên bản" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "Thông tin đăng nhập" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Dùng trường nhập liệu" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "Tài khoản đã sẵn có với cùng tên nhưng có lẽ là một tên máy khác." -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "Tên máy:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "Tên máy" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "Không thể thay đổi mật khâủ" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "Phần bổ sung xác thực" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "Phương thức băm mật khẩu" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "Mật khẩu của %s đã được thay đổi." -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "Bạn đã thu hồi đặc quyền dành cho %s." -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "Tạo tài khoản người dùng mới" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "Cơ sở dữ liệu cho người dùng" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "Tạo cơ sở dữ liệu với cùng tên và cấp mọi đặc quyền." -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Cấp mọi đặc quyền trên các tên dùng ký tự đại diện (username\\_%)." -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "Cấp mọi đặc quyền trên cơ sở dữ liệu \"%s\"." -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "Những người dùng có quyền truy cập vào \"%s\"" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "Tài khoản đã được thêm vào." -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Quyền cấp" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "Không đủ thẩm quyền để xem các tài khoản." -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "Không tìm thấy người dùng." -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "Bất kỳ" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "toàn cục" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "dành-riêng-cho-cơ-sở-dữ-liệu" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "dành-riêng-cho-bảng" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "Sửa đặc quyền" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "Thu hồi" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "Sửa nhóm người dùng" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… giữ lại cái cũ." -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… xóa những cái cũ từ bảng user." -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… thu hồi mọi đặc quyền đang kích hoạt từ cái cũ và xóa sau đó." -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… xóa cái cũ từ bảng người dùng và tải lại đặc quyền sau đó." -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "Thay đổi thông tin đăng nhập / Chép tài khoản người dùng" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "Tạo tài khoản người dùng mới với cùng đặc quyền và …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Các đặc quyền dành-riêng-cho-thủ-tục" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "Xóa bỏ các tài khoản người dùng đã chọn" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "Nhóm người dùng" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Thu hồi mọi đặc quyền đang được cấp từ người dùng và xóa chúng sau đó." - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "Xóa cơ sở dữ liệu mà có cùng tên như người dùng." - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "Chưa chọn người dùng nào để xóa!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "Tải lại đặc quyền" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "Những người dùng đã chọn đã được xóa thành công." -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "Bạn phải cập nhật đặc quyền cho “%s”." -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "Đang xóa %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "Các đặc quyền đã được tải lại thành công." -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "Tài khoản %s đã sẵn có từ trước rồi!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "Đặc quyền dành cho %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Người dùng" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "Mới" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "Sửa đặc quyền:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "Tài khoản người dùng" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -11982,11 +11965,11 @@ msgstr "" "Chú ý: Bạn đang cố sửa đặc quyền của người dùng cái mà bạn hiện đang dùng nó " "để đăng nhập." -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "Tổng thể tài khoản người dùng" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -11996,7 +11979,7 @@ msgstr "" "hiện tại. Cái này ngăn ngừa những người khác từ các kết nối nếu bộ phận máy " "của tài khoản của họ cho kết nối từ bất kỳ (%s) máy nào." -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12009,7 +11992,7 @@ msgstr "" "những người dùng máy phục vụ, nếu chúng bị thay đổi bằng tay. Trong trường " "hợp này bạn nên %stải lại các đặc quyền%s trước khi tiếp tục." -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12023,11 +12006,11 @@ msgstr "" "hợp này, đặc quyền phải được tại lại nhưng mà hiện tại bạn nên không có đặc " "quyền TẢI LẠI." -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "Người dùng đã chọn không tìm thấy trong bảng đặc quyền." -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "Bạn đã thêm một người dùng mới." @@ -12306,12 +12289,12 @@ msgstr "Lệnh" msgid "Progress" msgstr "Diễn biến" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "Bộ lọc" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "Chỉ hiển thị những cái hoạt động" @@ -12332,12 +12315,12 @@ msgstr "mỗi phút:" msgid "per second:" msgstr "mỗi giây:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "Các câu lệnh" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -12361,33 +12344,33 @@ msgstr "Hiển thị các giá trị không định dạng" msgid "Related links:" msgstr "Liên kết có liên quan:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12395,78 +12378,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "Số hàng INSERT DELAYED được ghi lại." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "Ghi rõ số thứ tự bẫy chuyển hết vùng nhớ tạm ra ngoài" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "Số lượng câu truy vấn COMMIT (chuyển tác) nội tại." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12474,7 +12457,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12482,42 +12465,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "Số lượng trang hiện tại là bẩn." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "Số trang còn trống." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12525,33 +12508,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12560,244 +12543,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "Số lượng thao tác fsync() quá lớn." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "Số lượng thao tác fsync() đang chờ hiện tại." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "Số lượng đọc còn treo." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "Số lượng ghi còn treo." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "Tổng lượng dữ liệu cần đọc quá lớn, tính bằng byte." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "Tổng lượng dữ liệu đã đọc." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "Tổng lượng dữ liệu đã ghi." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "Tổng lượng dữ liệu cần ghi quá lớn, tính bằng byte." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "Số lượng nhật ký I/O đã đạt ngưỡng tối đa" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "Số lượng ghi fsync() thực hiện với tập tin nhật ký." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "Các ghi tập tin nhật ký còn treo." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "Số byte đã ghi vào tập tin nhật ký." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "Số trang đã tạo ra." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "Số trang đã đọc." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "Số trang đã ghi." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "Số hàng được xóa từ các bảng InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "Số hàng được thêm vào các bảng InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "Số hàng được đọc từ các bảng InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "Số hàng được cập nhật vào các bảng InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "Số lượng các tập tin đang được mở." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Số lượng các dòng dữ liệu đang được mợ (được dùng phần lớn cho việc ghi nhật " "ký)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "Số lượng các bảng hiện đang được mở." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "Tổng lượng bộ nhớ đang rảnh rỗi dùng cho việc nhớ đệm các truy vấn." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "Số lần trúng bộ nhớ đệm." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "Số lượng các câu truy vấn được thêm vào bộ nhớ đệm." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12805,99 +12788,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "Số lượng truy vẫn được đăng ký vào trong bộ nhớ đệm." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "Tổng số lượng khối nhớ trong bộ nhớ đệm truy vấn." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "Số dòng hàng sắp xếp." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12905,18 +12888,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "Số lượng kết nối đồng thời hiện mở." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12924,11 +12907,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12957,37 +12940,37 @@ msgstr "Máy chủ cơ sở dữ liệu" msgid "Table level tabs" msgstr "Máy chủ cơ sở dữ liệu" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "Hiện các tài khoản người dùng" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "Thêm nhóm người dùng" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "Sửa nhóm người dùng: “%s”" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "Việc gán trình đơn nhóm người dùng" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "Tên nhóm:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "Tab mức-máy-phục-vụ" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "Tab mức-cơ-sở-dữ-liệu" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "Tab mức-bảng" @@ -13086,7 +13069,7 @@ msgstr "Chạy (các) truy vấn SQL trên cơ sở dữ liệu %s" msgid "Run SQL query/queries on table %s" msgstr "Chạy (các) truy vấn SQL trên bảng %s" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "Xóa sạch" @@ -13171,113 +13154,113 @@ msgstr "Ngưng hoạt động ngay" msgid "Version" msgstr "Phiên bản" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "Đã được tạo" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "Đã được cập nhật" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "Xóa phiên bản" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "Báo cáo theo dõi" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "Chụp cấu trúc" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "tích cực" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "không hoạt động" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "Theo dõi trạng thái" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "Xóa dòng dữ liệu theo dõi từ báo cáo" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "Không có dữ liệu" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Hiển thị %1$s với ngày tháng từ %2$s đến %3$s theo người dùng %4$s %5$s" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "Đổ SQL (tải về tập tin)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "Đổ SQL" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "Tùy chọn này sẽ thay thế bảng và dữ liệu đã chứa." -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "Thực thi SQL" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "Xuất ra thành %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "Chỉ lệnh thao tác dữ liệu" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "Chỉ lệnh định nghĩa dữ liệu" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "Ngày tháng" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Tài khoản" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Phiên bản chụp %s (mã SQL)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Không" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "Đã xóa thành công phần định nghĩa dữ liệu theo dõi" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "Đã xóa thành công phần thao tác dữ liệu theo dõi" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13285,61 +13268,61 @@ msgstr "" "Bạn có thể thực thi đổ bằng cách tạo và dùng một cơ sở dữ liệu tạm. Vui lòng " "chắc chắn rằng bạn có đủ thẩm quyền để làm điều đó." -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "Sửa hai dòng này thành ghi chú nếu bạn không cần chúng." -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Câu lệnh SQL đã được xuất ra. Vui lòng chép phần đổ hoặc thực thi nó." -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "Báo cáo theo dõi cho bảng “%s“" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Theo dõi cho %1$s được kích hoạt tại phiên bản %2$s." -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Theo dõi cho %1$s bị dừng hoạt động tại phiên bản %2$s." -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Phiên bản %1$s trên %2$s đã được tạo." -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Phiên bản %1$s đã được tạo, việc theo dõi %2$s đang hoạt động." -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "Các bảng chưa được theo dõi" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Bảng theo dõi" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "Các bảng được theo dõi" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "Phiên bản cuối" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "Xóa theo dõi" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "Phiên bản" @@ -13347,7 +13330,7 @@ msgstr "Phiên bản" msgid "Manage your settings" msgstr "Quản lý các cài đặt" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "Cấu hình đã được lưu." @@ -13373,7 +13356,7 @@ msgstr "Lỗi trong kho nén ZIP:" msgid "No files found inside ZIP archive!" msgstr "Không tìm thấy tập tin nào trong kho ZIP!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Lỗi nghiêm trọng: Bảng điều hướng chỉ có thể truy cập thông qua AJAX" @@ -13381,57 +13364,57 @@ msgstr "Lỗi nghiêm trọng: Bảng điều hướng chỉ có thể truy cậ msgid "Cannot save settings, submitted form contains errors!" msgstr "Không thể lưu cài đặt, mẫu đơn gửi có chứa lỗi!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Thiếu các bảng lưu trữ cấu hình phpMyAdmin" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "Không thể nhập cấu hình" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "Cấu hình chứa dữ liệu không chính xác cho một số trường." -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "Bạn có muốn nhập các cài đặt còn lại không?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "Ghi lại lúc: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "Nhập vào từ tập tin" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "Nhập từ kho của trình duyệt" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "Các cài đặt sẽ được nhập vào từ kho nội bộ của trình duyệt." -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "Bạn không có cài đặt nào đã lưu!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "Đặc tính này không được hỗ trợ bởi trình duyệt web của bạn" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "Hòa trộn với các cấu hình hiện tại" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13440,25 +13423,25 @@ msgstr "" "Bạn có thể đặt nhiều cài đặt hơn bằng cách sửa chữa config.inc.php, ví dụ " "như dùng %sTrang cài đặt%s." -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "Lưu thành tập tin" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "Ghi vào kho của trình duyệt" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "Các cài đặt sẽ được ghi vào kho nội bộ của trình duyệt." -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "Cài đặt trước đây sẽ bị ghi đè!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" "Bạn có thể đặt lại tất cả các cài đặt và phục hồi lại chúng bằng giá trị mặc " @@ -13468,12 +13451,12 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Xem phần đổ (lược đồ) của cơ sở dữ liệu" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "Không có Đặc quyền gì" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13481,35 +13464,35 @@ msgstr "" "Tên người dùng và máy không thay đổi. Nếu bạn chỉ muốn thay đổi mật khẩu, " "thì có thể dùng tab “Đổi mật khẩu”." -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "Không đủ đặc quyền để xem trạng thái của máy phục vụ." -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "Không đủ đặc quyền để xem cố vấn." -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "Tuyến trình %s đã được giết thành công." -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin không thể giết tuyến trình %s. Gần như chắc chắn rằng nó đã đóng." -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "Không đủ đặc quyền để xem thống kê truy vấn." -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "Không đủ đặc quyền để xem các biến trạng thái." -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "Tải về" @@ -13519,11 +13502,11 @@ msgstr "" "Formset không đúng, kiểm tra lại mảng $formsets trong setup/frames/form.inc." "php!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "Không thể tải hay lưu cấu hình" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -13533,7 +13516,7 @@ msgstr "" "cao nhất của phpMyAdmin như được mô tả trong [doc@setup_script]tài liệu[/" "doc]. Nếu không thì bạn chỉ có thể tải nó về hoặc xem nó." -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" @@ -13541,24 +13524,27 @@ msgstr "" "Bạn đang không sử dụng kết nối an toàn; mọi dữ liệu (bao gồm cả những thông " "tin đặc biệt nhạy cảm, như mật khẩu) được truyền đi mà không được mã hóa!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "Nếu máy phục vụ của bạn đồng thời được cấu hình để chấp nhận các yêu cầu " "HTTPS thì [a@%s]bấm vào liên kết này[/a] để dùng kiểu an toàn" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "Kết nối không an toàn" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "Cấu hình đã được lưu." -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -13567,61 +13553,61 @@ msgstr "" "của phpMyAdmin, chép nó vào thư mục cao nhất và xóa thư mục config để dùng " "nó." -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "Cấu hình đã được lưu." -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "Tổng quan" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "Hiển thị các lời nhắn ẩn (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "Hiện chưa có máy in nào được cấu hình." -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "Máy chủ mới" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "Ngôn ngữ mặc định" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "để người dùng chọn" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- không -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "Máy chủ mặc định" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "Kết thúc dòng" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "Trình bày" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "Tải" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "Trang chủ phpMyAdmin" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "Quyên góp" @@ -13657,7 +13643,7 @@ msgstr "Bỏ qua lỗi" msgid "Show form" msgstr "Hiện mẫu đơn" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." @@ -13665,15 +13651,15 @@ msgstr "" "Việc đọc phiên bản gặp lỗi. Có lẽ bạn không nối mạng hoặc là máy chủ nâng " "cấp không trả lời." -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "Nhận được chuỗi phiên bản không hợp lệ từ máy chủ" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "Chuỗi phiên bản không thể phân tích cú pháp" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -13682,7 +13668,7 @@ msgstr "" "Bạn đang sử dụng phiên bản Git, chạy [kbd]git pull[/kbd] :-)[br]Phiên bản ổn " "định mới nhất là %s, phát hành vào %s." -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "Không có phiên bản ổn định nào mới hơn" @@ -13695,12 +13681,12 @@ msgstr "Sai dữ liệu" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "Cơ sở dữ liệu “%s” không tồn tại." -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "Bảng %s đã sẵn có từ trước rồi!" @@ -13713,29 +13699,29 @@ msgstr "Tới ô xem bảng sóng" msgid "Invalid table name" msgstr "Tên bảng không hợp lệ" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Hàng: %1$s, Cột: %2$s, Lỗi: %3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "Chưa có bảng nào được chọn." -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "Việc theo dõi %s bị bất hoạt." -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "Đã xóa thành công các phiên bản theo dõi." -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "Chưa chọn phiên bản nào." -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "Các chỉ lệnh SQL đã thực hiện." @@ -13901,7 +13887,7 @@ msgid "List of available transformations and their options" msgstr "Liệt kê các chuyển dạng sẵn có và các tùy chọn của chúng" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13919,7 +13905,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -14352,17 +14338,17 @@ msgid "Size" msgstr "Kích thước" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "Tạo" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "Cập nhật lần cuối" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "Lần kiểm tra cuối" @@ -14399,6 +14385,12 @@ msgstr "" "Trình duyệt của bạn có cấu hình phpMyAdmin cho miền này. Bạn có muốn nhập " "vào phiên này không?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "Xóa theo dõi" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "Thêm các đặc quyền vào (các) cơ sở dữ liệu sau đây:" @@ -14417,10 +14409,43 @@ msgstr "Thêm các đặc quyền vào thủ tục sau đây:" msgid "Add privileges on the following table:" msgstr "Thêm các đặc quyền vào bảng sau đây:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "Mới" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "Không" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "Xóa bỏ các tài khoản người dùng đã chọn" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Thu hồi mọi đặc quyền đang được cấp từ người dùng và xóa chúng sau đó." + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "Xóa cơ sở dữ liệu mà có cùng tên như người dùng." + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "Đặc quyền dành-riêng-cho-cột" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "Giới hạn tài nguyên" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Chú ý: Đặt các tùy chọn này thành 0 (số không) để không giới hạn." + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "Chọn nhật ký dạng nhị phân để xem" @@ -14451,7 +14476,7 @@ msgstr "Phần bổ sung" msgid "Author" msgstr "Tác giả" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "tắt" @@ -14605,7 +14630,7 @@ msgstr "Bộ phân tích:" msgid "Comment:" msgstr "Chú thích:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "Kéo thả để thay đổi thứ tự" @@ -14639,27 +14664,27 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ràng buộc khóa ngoại" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "+ Thêm ràng buộc" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "Các quan hệ nội tại" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "Quan hệ nội tại" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Quan hệ nội tại là không cần thiết khi một quan hệ KHÓA NGOẠI đã sẵn có." -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "Chọn cột bạn muốn hiển thị:" @@ -14712,11 +14737,11 @@ msgstr "Chuỗi gốc" msgid "Replaced string" msgstr "Chuỗi thay thế" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "Thay thế" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "Hãy gõ các tiêu chuẩn tìm kiếm." @@ -14786,7 +14811,7 @@ msgid "at beginning of table" msgstr "tại đầu của bảng" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "Phân vùng" @@ -14810,24 +14835,24 @@ msgstr "Độ dài dữ liệu" msgid "Index length" msgstr "Chiều dài chỉ mục" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "Bảng phân vùng" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "Sửa phân vùng" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "Sửa view" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "Dung lượng đĩa đã dùng" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "Hiệu ứng" @@ -14852,31 +14877,31 @@ msgstr "Tăng cường cấu trúc bảng" msgid "Track view" msgstr "Xem vết" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "Thống kê dòng" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "tĩnh" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "động" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "đã phân vùng" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "Độ dài dòng" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "Kích thước hàng" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "Chỉ số tự động kế tiếp" @@ -14889,44 +14914,44 @@ msgstr "Cột %s đã được xóa bỏ." msgid "Click to toggle" msgstr "Nhấn vào để bật/tắt" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "Chủ đề" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "Muốn lấy thêm các chủ đề khác!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "Các kiểu MIME sẵn có" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "Các chuyển dạng hiển thị trình duyệt sẵn có" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "Các chuyển dạng đầu vào sẵn có" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "Mô tả" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "Đưa bạn đến trang đích." -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "Bạn không có đủ đặc quyền cần thiết để có quyền xem trang này!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "Hồ sơ đã được cập nhật." -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -15002,7 +15027,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15025,17 +15050,17 @@ msgid "Unrecognized data type." msgstr "Không nhận ra kiểu dữ liệu." #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "Cần một bí danh." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "Một bí danh đã tìm thấy từ trước đây." -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "Gặp dấu chấm không cần." @@ -15088,24 +15113,24 @@ msgstr "Cần các khoảng trắng trước dấu phân tách." msgid "Expected delimiter." msgstr "Cần dấu phân tách." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "Cần trích dẫn đóng %1$s." -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "Cần tên biến." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "Gặp phần đầu mệnh đề không cần." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "Không thừa nhận kiểu mệnh đề." -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "Chưa có giao địch nào đã bắt đầu trước đây." @@ -15122,10 +15147,16 @@ msgstr "Gặp thẻ bài không cần." msgid "This type of clause was previously parsed." msgstr "Kiểu của mệnh đề này đã được phân tích trước đây." -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "Không nhận ra từ khóa." +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Gặp phần đầu mệnh đề không cần." + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Cần tên của thực thể." @@ -15169,7 +15200,7 @@ msgstr "" msgid "strict error" msgstr "Lỗi nạp" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16257,6 +16288,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert được đặt thành 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Xác thực MySQL nguyên bản" + #~ msgid "Try to connect without password." #~ msgstr "Cố kết nối mà không dùng mật khẩu" diff --git a/po/vls.po b/po/vls.po index 6c647a6dbb..7711dc4253 100644 --- a/po/vls.po +++ b/po/vls.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2014-12-23 23:39+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: West Flemish Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 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 "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 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 "" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:568 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:569 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:570 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:575 +#: js/messages.php:576 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 "" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:581 +#: js/messages.php:582 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 "" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 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 "" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2323,105 +2328,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr "" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:680 +#: js/messages.php:681 #, 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 "" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:718 -#, php-format -msgid "%s queries executed %s times in %s seconds." -msgstr "" - #: js/messages.php:719 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:720 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:721 -msgid "Hide arguments" +msgid "Show arguments" msgstr "" #: js/messages.php:722 -msgid "Time taken:" +msgid "Hide arguments" msgstr "" #: js/messages.php:723 +msgid "Time taken:" +msgstr "" + +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2430,349 +2435,369 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "januoari" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "februoari" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "moarte" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "april" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "meie" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "juni" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "juli" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "ogustus" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "september" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "oktober" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "november" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "ogu" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "dec" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "zundag" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "moandag" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "diesndag" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "dunderdag" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "vrydag" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "zoaterdag" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "zu" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "du" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "du" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "zo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "" @@ -2833,20 +2858,20 @@ msgid "Charset" msgstr "" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "" @@ -3041,7 +3066,7 @@ msgid "Czech-Slovak" msgstr "" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "" @@ -3085,48 +3110,48 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 msgid "Missing connection parameters!" msgstr "" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3220,110 +3245,105 @@ msgstr "" msgid "Del:" msgstr "" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "" @@ -3343,30 +3363,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "" @@ -3375,7 +3395,7 @@ msgstr "" msgid "All" msgstr "" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" @@ -3384,8 +3404,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3407,10 +3427,10 @@ msgstr "" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "" @@ -3450,102 +3470,102 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "" @@ -3553,97 +3573,97 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "" -#: libraries/File.php:599 +#: libraries/File.php:609 #, 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 "" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "" @@ -3652,20 +3672,20 @@ msgid "No index defined!" msgstr "" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3675,78 +3695,78 @@ msgstr "" msgid "Action" msgstr "" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "Toal" @@ -3770,11 +3790,11 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3793,14 +3813,15 @@ msgid "View" msgstr "" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3809,8 +3830,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3818,45 +3839,45 @@ msgstr "" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3872,16 +3893,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3889,20 +3910,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "" @@ -3911,53 +3932,53 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4005,27 +4026,27 @@ msgstr "" msgid "Favorites" msgstr "" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "" @@ -4087,7 +4108,7 @@ msgstr "" msgid "Show slave hosts" msgstr "" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "" @@ -4141,76 +4162,76 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4218,19 +4239,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4497,7 +4518,7 @@ msgid "Date and time" msgstr "" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "" @@ -4512,126 +4533,126 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "zu" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s daagn, %s eurn, %s menuutn and %s secondn" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "Gebrukers" @@ -4645,7 +4666,7 @@ msgstr "" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "" @@ -4653,12 +4674,12 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4666,7 +4687,7 @@ msgstr "" msgid "Description" msgstr "" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "" @@ -4703,22 +4724,22 @@ msgstr "" msgid "NO" msgstr "" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "" @@ -4727,7 +4748,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "" @@ -4744,11 +4765,11 @@ msgstr "" msgid "Select a column." msgstr "" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4756,33 +4777,33 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 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 "" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4790,20 +4811,20 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "" @@ -5328,7 +5349,7 @@ msgid "Compress on the fly" msgstr "" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "" @@ -5428,12 +5449,12 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "" @@ -5443,7 +5464,7 @@ msgstr "" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "" @@ -5568,7 +5589,7 @@ msgid "Save on server" msgstr "" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "" @@ -5581,7 +5602,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5590,7 +5611,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "" @@ -5620,7 +5641,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "" @@ -5786,7 +5807,7 @@ msgid "Customize the navigation tree." msgstr "" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "" @@ -6617,7 +6638,7 @@ msgstr "" msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "" @@ -7252,7 +7273,7 @@ msgstr "" msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "" @@ -7260,10 +7281,10 @@ msgstr "" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "" @@ -7398,24 +7419,24 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "" @@ -7429,12 +7450,12 @@ msgid "Position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "" @@ -7443,7 +7464,7 @@ msgid "Original position" msgstr "" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "" @@ -7457,42 +7478,42 @@ msgstr "" msgid "Show Full Queries" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "" @@ -7517,32 +7538,32 @@ msgstr "" msgid "Enable statistics" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "" @@ -7585,7 +7606,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "" @@ -7602,12 +7623,12 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "" @@ -7628,13 +7649,13 @@ msgstr "" msgid "Distinct values" msgstr "" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7654,165 +7675,169 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr "" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr "" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -7820,98 +7845,98 @@ msgid "" "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -8308,86 +8333,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8398,84 +8423,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8486,31 +8512,31 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "" @@ -8519,14 +8545,14 @@ msgid "Add AUTO INCREMENT value" msgstr "" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -8571,8 +8597,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "" @@ -8613,17 +8639,17 @@ msgid_plural "%s results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "" @@ -8638,7 +8664,7 @@ msgstr "" msgid "Could not load class \"%1$s\"" msgstr "" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "" @@ -8657,7 +8683,7 @@ msgstr "" msgid "Database operations" msgstr "" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "" @@ -8756,11 +8782,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "" @@ -8994,8 +9020,8 @@ msgid "Rename database to" msgstr "" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9039,177 +9065,177 @@ msgstr "" msgid "Move table to (database.table)" msgstr "" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "" @@ -9236,25 +9262,25 @@ msgstr "" msgid "Only show keys" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9262,7 +9288,7 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9287,15 +9313,15 @@ msgstr "Gebrukersnoame:" msgid "Server Choice:" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "" @@ -9356,7 +9382,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9365,7 +9391,7 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "" @@ -9373,8 +9399,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "" @@ -9460,7 +9486,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "" @@ -9954,7 +9980,7 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "" @@ -10274,57 +10300,57 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10333,293 +10359,293 @@ msgid "" "databases to be replicated. Please select the mode:" msgstr "" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 "" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "Gebrukersnoame:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "Gebrukersnoame" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10640,7 +10666,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "" @@ -10649,75 +10675,75 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "" @@ -10738,7 +10764,7 @@ msgstr "" msgid "The backed up query was:" msgstr "" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "" @@ -10750,132 +10776,132 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "" @@ -10897,32 +10923,32 @@ msgstr "" msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "Tyd" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "" @@ -11038,569 +11064,526 @@ msgstr "" msgid "Databases statistics" msgstr "" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 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 "" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Gebrukersnoame:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "User name" msgid "Host name" msgstr "Gebrukersnoame" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "Gebruker" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11609,7 +11592,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11618,11 +11601,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "" @@ -11889,12 +11872,12 @@ msgstr "" msgid "Progress" msgstr "" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "" @@ -11915,12 +11898,12 @@ msgstr "" msgid "per second:" msgstr "" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "#" @@ -11944,33 +11927,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11978,78 +11961,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12057,7 +12040,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12065,42 +12048,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12108,33 +12091,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12143,242 +12126,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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 "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12386,99 +12369,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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 "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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 "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12486,18 +12469,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12505,11 +12488,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "" @@ -12538,37 +12521,37 @@ msgstr "" msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "" @@ -12663,7 +12646,7 @@ msgstr "" msgid "Run SQL query/queries on table %s" msgstr "" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "" @@ -12748,172 +12731,172 @@ msgstr "" msgid "Version" msgstr "" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "Gebrukersnoame" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "" @@ -12921,7 +12904,7 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "" @@ -12945,7 +12928,7 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" @@ -12953,78 +12936,78 @@ msgstr "" msgid "Cannot save settings, submitted form contains errors!" msgstr "" -#: prefs_manage.php:50 +#: prefs_manage.php:52 msgid "phpMyAdmin configuration snippet" msgstr "" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:342 +#: prefs_manage.php:331 msgid "Save as PHP file" msgstr "" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "" @@ -13032,45 +13015,45 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "" @@ -13078,97 +13061,96 @@ msgstr "" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 msgid "" -"If your server is also configured to accept HTTPS requests follow [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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 "" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 msgid "Configuration not saved!" msgstr "" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- geen -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "" @@ -13204,28 +13186,28 @@ msgstr "" msgid "Show form" msgstr "" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "" @@ -13238,12 +13220,12 @@ msgstr "" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "" @@ -13256,29 +13238,29 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "" @@ -13442,7 +13424,7 @@ msgid "List of available transformations and their options" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "" @@ -13460,7 +13442,7 @@ msgid "" msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "" @@ -13888,17 +13870,17 @@ msgid "Size" msgstr "" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "" @@ -13933,6 +13915,10 @@ msgid "" "import it for current session?" msgstr "" +#: templates/prefs_autoload.phtml:14 +msgid "Delete settings " +msgstr "" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "" @@ -13949,10 +13935,43 @@ msgstr "" msgid "Add privileges on the following table:" msgstr "" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "" @@ -13983,7 +14002,7 @@ msgstr "" msgid "Author" msgstr "" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "" @@ -14139,7 +14158,7 @@ msgstr "Gebruker:" msgid "Comment:" msgstr "" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "" @@ -14171,26 +14190,26 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "" @@ -14243,11 +14262,11 @@ msgstr "" msgid "Replaced string" msgstr "" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "" @@ -14316,7 +14335,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "" @@ -14340,24 +14359,24 @@ msgstr "" msgid "Index length" msgstr "" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "" @@ -14382,31 +14401,31 @@ msgstr "" msgid "Track view" msgstr "" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "" @@ -14419,44 +14438,44 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "" @@ -14524,7 +14543,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14545,17 +14564,17 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -14607,24 +14626,24 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -14641,10 +14660,14 @@ msgstr "" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +msgid "Unexpected ordering of clauses." +msgstr "" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14681,7 +14704,7 @@ msgstr "" msgid "strict error" msgstr "" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 7b57f70811..a43b3c297c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-10-22 17:44+0000\n" "Last-Translator: Mingye Wang \n" "Language-Team: Chinese (China) Are you sure you " "want to continue?" msgstr "该操作有可能影响一些列的定义
你确认做此更改吗?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "继续" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "添加主键" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "主键已添加。" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "等待进入下一步…" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "表“%s”标准化过程的第一步已经完成。" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "完成" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "标准化第二步(2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "完成" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "确认局部依赖" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "下面是已经选择的局部依赖:" -#: js/messages.php:446 +#: js/messages.php:447 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 "注意: a, b -> d,f 表示a和b两列结合起来决定d和f两列的值。" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "没有已选择的局部依赖!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "显示基于表中数据可能的局部依赖" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "隐藏局部依赖列表" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "坐好啦!取决于数据大小和表的列数,这可能需要几秒钟。" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "步骤" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "下列操作将被执行:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "将列 %s 从表 %s 中删除" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "创建下列表" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "标准化第三步(3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "确认传递依赖" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "下面是已经选择的依赖:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "没有已选择的依赖!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "保存" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "隐藏搜索条件" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "范围搜索" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "最大列数目:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "最小列数目:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "最小值:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "最大值:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "隐藏搜索替换条件" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "显示搜索替换条件" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "每个点代表一个数据行。" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "悬浮至一个点上会显示它的标签。" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "要放大,请用鼠标选择图表的一块区域。" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "点击重置缩放按钮以回到初始状态。" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "点击数据点以查看或编辑数据行。" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "拖拽右下角以改变图表大小。" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "选择两列" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "选择两个不同的列" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "数据点内容" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "忽略" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "复制" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "点" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "线" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "多边形" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "几何体" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "内环" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "外环" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "是否要复制加密密匙?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "加密密匙" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "检测到您已经对页面做出了修改。因此在您放弃改动时会提示您确认" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "请选择主键或唯一键!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:550 +#: js/messages.php:551 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 "尚未保存当前布局。如果继续将会丢失本次的修改。是否继续?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "页面名称" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "保存页面" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "保存页面为" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "打开页面" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "删除页面" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "未命名" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "请选择一个页面" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "请输入有效页面名称" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "是否保存对该页面的更改?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "成功删除页面" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "导出关系模式" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "已保存修改" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "给字段“%s”添加选项。" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "已创建 %d 个对象。" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "提交" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "按 Esc 键取消编辑。" -#: js/messages.php:575 +#: js/messages.php:576 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 "您已修改了一些数据但尚未保存。您真的要放弃保存并离开吗?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "拖拽以调整顺序。" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "点此排序此列的结果。" -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2222,26 +2227,26 @@ msgstr "" "
使用 Ctrl+Click 或者 Alt+Click (Mac:Shift+Option+Click )即可将列从 " "ORDER BY 语句中移除" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "点击以标记/取消标记。" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "双击以复制字段名。" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "点击下箭头
以设置显示的字段。" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "显示全部" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2249,109 +2254,109 @@ msgstr "" "该表没有唯一字段。在保存后单元格编辑、多选、编辑、复制和删除等功能可能无法正" "常使用。" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "请输入一个有效的十六进制字符串。只有0-9和A-F为有效字符。" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您真的想要查看所有的行吗?若表过大可能会导致浏览器崩溃。" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "原始长度" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "取消" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "已取消" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "成功" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "导入状态" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "将文件拖动至此" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "先选择数据库" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "打印" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以直接双击大部分
单元格以修改其值。" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接点击大部分
单元格以修改其值。" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "前往:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "复制字段名。" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "在字段名上右键以复制到剪贴板。" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "生成" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "更多" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "显示导航面板" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "隐藏导航面板" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "显示隐藏的导航树节点。" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "与主面板链接" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "从主面板取消链接" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "没有在历史记录中找到所请求的页面,页面可能已过期。" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2359,47 +2364,47 @@ msgid "" msgstr "phpMyAdmin 有新版本了,请您考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ",最新稳定版本:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "已更新" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "新建视图" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "发送错误报告" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "提交错误报告" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "发生致命JavaScript错误。是否发送错误报告?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "更改报告设置" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "显示报告详细信息" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "由于PHP设置的执行限制时间过低,您的导入未能完成!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2408,58 +2413,58 @@ msgstr "" "警告:当前表单包含的字段多于 %d,受限于 PHP 中 max_input_vars 值的配置,该次" "提交有可能忽略其中一部分。" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "在服务上检测到错误!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "请查看此窗口的底部。" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "忽略全部" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "正在提交您的设置,请耐心等待。" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "再次执行该查询?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "您真的要删除该书签吗?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "获取SQL调试信息时出错。" -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s查询已执行%s次,耗时%s秒。" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "%s 个参数已传递" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "显示注释" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "隐藏注释" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "用时:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2473,349 +2478,369 @@ msgstr "" "线网站数据”可能会解决这个问题。对于Safari浏览器,这个问题通常是由于“隐私浏览" "模式”导致的。" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "复制数据表到" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "添加表前缀" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "替换表前缀" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "复制表为新前缀" -#: js/messages.php:757 +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "上个月" -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "今天" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "一月" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "二月" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "三月" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "四月" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "五月" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "六月" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "七月" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "八月" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "九月" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "十月" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "十一月" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "十二月" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "星期日" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "星期一" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "星期四" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "星期五" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "周" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "时" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "分" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "秒" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "此字段为必须字段" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "请修改这个字段" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "请输入有效的Email地址" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "请输入一个有效的链接地址" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "请输入有效的日期" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "请输入有效的日期(ISO标准格式)" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "请输入一个有效的数字" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "请输入一个有效的银行卡号码" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "请输入纯数字" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "请重输一遍" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "请输入不超过{0}位字符" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "请输入大于{0}位字符" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "请输入一个 {0} 和 {1} 字符长度之间的值" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "请输入 {0} 和 {1}之间的一个值" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "请输入一个小于或等于 {0} 的值" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "请输入一个大于或等于 {0} 的值" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "请输入有效的日期或时间" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "请输入一个有效的HEX值" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "错误" @@ -2876,20 +2901,20 @@ msgid "Charset" msgstr "字符集" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "排序规则" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "二进制" @@ -3084,7 +3109,7 @@ msgid "Czech-Slovak" msgstr "捷克斯洛伐克语" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "未知" @@ -3128,51 +3153,51 @@ msgstr "这通常意味着文件中有语法错误,请检查下面显示出的 msgid "Font size" msgstr "字号" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "已显示 %1$d 个书签(包括私有和共享)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "没有书签" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL 查询控制台" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "读取配置文件失败!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "服务器没有响应(或本地服务器的套接字没有正确设置)。" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "服务器没有响应。" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "请检查数据库所在文件夹的权限。" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "详细…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "缺少参数:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。" @@ -3266,108 +3291,103 @@ msgstr "插入:" msgid "Del:" msgstr "删除:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "在数据库 %s 执行 SQL 语句:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "提交查询" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "搜索已经保存的书签:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "新建书签" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "创建书签" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "更新书签" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "删除书签" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "至少一个词" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "所有词" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "精确短语" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "使用正则表达式" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜索结果 %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "总计:找到 %s 个" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "在 %2$s 中找到 %1$s 个" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "浏览" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "删除在 %s 表中找到的所有记录吗?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "在数据库中搜索" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要搜索的内容(通配符:“%”):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "查找:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "每个单词用空格(“ ”)分开。" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "于下列表:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "全不选" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "包含字段:" @@ -3387,30 +3407,30 @@ msgstr "过滤行" msgid "Search this table" msgstr "在表中搜索" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "首页" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" msgid "Previous" msgstr "上一页" -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "下一页" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "尾页" @@ -3419,7 +3439,7 @@ msgstr "尾页" msgid "All" msgstr "全部" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "行数:" @@ -3428,8 +3448,8 @@ msgstr "行数:" msgid "Sort by key" msgstr "按索引排序" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3451,10 +3471,10 @@ msgstr "按索引排序" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "选项" @@ -3494,102 +3514,102 @@ msgstr "WKT 文本表达" msgid "Well Known Binary" msgstr "WKB 二进制表达" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "已删除该行。" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "杀死" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "可能是近似值。参见[doc@faq3-11]常见问题 3.11[/doc]。" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 语句已成功运行。" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "此视图的行数最少有这么多。请参阅%s档案%s。" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "正在显示第 %1s - %2s 行" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "总数为 %1$d,查询包含 %2$d" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "共 %d 行" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "查询花费 %01.4f 秒。" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "选中项:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "全选" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "复制到剪贴板" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "查询结果操作" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "显示图表" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "可视化 GIS 数据" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "找不到链接!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "无" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "转换为假名" @@ -3597,69 +3617,69 @@ msgstr "转换为假名" msgid "Too many error messages, some are not displayed." msgstr "错误信息太多,部分未显示。" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "报告" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "下次自动发送错误报告" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "文件不是上传的文件。" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上传文件的大小超过 HTML 表单中 MAX_FILE_SIZE 的限制。" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "文件没有完全上传。" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "找不到临时文件夹。" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "向磁盘写入文件失败。" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "扩展停止了文件上传。" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "上传文件时发生未知错误。" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "文件是一个符号链接" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "无法读取文件!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "移动已上传的文件时发生错误,参见[doc@faq1-11]常见问题 1.11[/doc]。" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "移动已上传的文件时发生错误。" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "无法读取上传的文件。" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3668,28 +3688,28 @@ msgstr "" "您尝试导入的文件是不支持的压缩格式(%s)。可能服务器不支持或您在设置中禁止了" "这种格式。" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "当前为 Git %2$s 分支 %1$s 版。" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "缺少 Git 信息!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "打开新的 phpMyAdmin 窗口" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "打印预览" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "点击以滚动到页面顶部" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "该处必须启用 Javascript!" @@ -3698,20 +3718,20 @@ msgid "No index defined!" msgstr "没有已定义的索引!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "索引" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3721,78 +3741,78 @@ msgstr "索引" msgid "Action" msgstr "操作" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "键名" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "唯一" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "紧凑" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "基数" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "注释" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "已删除主键。" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "已删除索引 %s。" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "删除" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "索引 %1$s 和 %2$s 似乎是相同的,可以删除其中一个。" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "页码:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "省略不支持的语言代码。" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "语言" @@ -3816,11 +3836,11 @@ msgstr "服务器" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3839,14 +3859,15 @@ msgid "View" msgstr "视图" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3855,8 +3876,8 @@ msgid "Table" msgstr "表" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3864,45 +3885,45 @@ msgstr "表" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "搜索" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "插入" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "权限" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "追踪" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3918,16 +3939,16 @@ msgstr "触发器" msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "查询" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "程序" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3935,20 +3956,20 @@ msgstr "程序" msgid "Events" msgstr "事件" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "设计器" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "文本框列" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "数据库" @@ -3957,51 +3978,51 @@ msgid "User accounts" msgstr "账户" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "二进制日志" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "复制" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "变量" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "字符集" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "引擎" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "插件" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "影响了 %1$d 行。" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "删除了 %1$d 行。" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4048,27 +4069,27 @@ msgstr "表收藏夹" msgid "Favorites" msgstr "表收藏夹" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "请为该搜索的书签提供一个名字。" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "缺少保存搜索书签所必要的数据。" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "该书签名已经存在。" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "缺少删除搜索书签所必要的数据。" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "缺少载入搜索书签所必要的数据。" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "加载搜索时出现错误。" @@ -4130,7 +4151,7 @@ msgstr "显示打开的表" msgid "Show slave hosts" msgstr "显示从服务器" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "显示主服务器状态" @@ -4182,76 +4203,76 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "没有该存储引擎的详细状态信息。" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是该 MySQL 服务器的默认存储引擎。" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "%s 在该 MySQL 服务器上可用。" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 在该 MySQL 服务器上被禁止了。" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "该 MySQL 服务器不支持 %s 存储引擎。" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "未知表状态:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "未找到源数据库 `%s`!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "未找到目标数据库 `%s`!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "无效的数据库:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "无效的数据表名:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "将表 %1$s 改名为 %2$s 失败!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "已将表 %1$s 改名为 %2$s。" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "无法保存表界面设置!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "清除表界面设置失败(参见 $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4260,19 +4281,19 @@ msgid "" msgstr "" "无法保存用户界面属性“%s”。修改将在刷新本页后丢失。请检查表结构是否已修改。" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主键的名称必须称为 “PRIMARY”!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "无法将索引改为主键 (PRIMARY) !" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "没有定义的索引部分!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" @@ -4571,7 +4592,7 @@ msgid "Date and time" msgstr "日期与时间" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "文本" @@ -4586,126 +4607,126 @@ msgstr "空间" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "静态分析:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "分析时发现%d个错误。" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL 返回: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "解析 SQL" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "略过解析 SQL" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "分析解释了%s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "无 PHP 代码" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "提交查询" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "创建 PHP 代码" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "刷新" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "性能分析" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "编辑内嵌" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "周日" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d %H:%M:%S" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "缺少参数:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "转到数据库 \"%s\"。" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "功能 %s 受到一个已知缺陷的影响,参见 %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "无法访问用于上传的文件夹。" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "没有可上传的文件!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "清空" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "执行" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "用户" @@ -4719,7 +4740,7 @@ msgstr "每分钟" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "每小时" @@ -4727,12 +4748,12 @@ msgstr "每小时" msgid "per day" msgstr "每天" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "搜索:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4740,7 +4761,7 @@ msgstr "搜索:" msgid "Description" msgstr "说明" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "使用该值" @@ -4777,22 +4798,22 @@ msgstr "好的" msgid "NO" msgstr "不好" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "名字" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "长度/值" @@ -4801,7 +4822,7 @@ msgstr "长度/值" msgid "Attribute" msgstr "属性" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "自增" @@ -4818,11 +4839,11 @@ msgstr "添加字段" msgid "Select a column." msgstr "选择字段。" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "添加新字段" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4830,7 +4851,7 @@ msgstr "添加新字段" msgid "Attributes" msgstr "属性" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4839,26 +4860,26 @@ msgstr "" "您在 PHP 设置中启用了 mbstring.func_overload。该选项和 phpMyAdmin 不兼容并可" "能会导致一些数据损坏!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "无效的服务器索引:%s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "服务器 %1$s 的主机名无效。请复查您的设置。" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "服务器 %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4868,20 +4889,20 @@ msgstr "" "无法为服务器 %2$d 设置时区 %1$s 。请检查您的配置中 [em]$cfg['Servers'][%3$d]" "['SessionTimeZone'][/em] 字段。服务器当前使用默认时区。" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "错误:令牌不符" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "企图覆盖 GLOBALS" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "检测到有利用漏洞的企图" @@ -5438,7 +5459,7 @@ msgid "Compress on the fly" msgstr "实时压缩" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "配置文件" @@ -5538,12 +5559,12 @@ msgstr "设置脚本运行最长时间([kbd]0[/kbd] 为无限制)。" msgid "Maximum execution time" msgstr "最长执行时间" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "使用 %s 语句" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "保存为文件" @@ -5553,7 +5574,7 @@ msgstr "文件字符集" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "格式" @@ -5678,7 +5699,7 @@ msgid "Save on server" msgstr "保存在服务器上" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "覆盖现有文件" @@ -5691,7 +5712,7 @@ msgid "Remember file name template" msgstr "记住文件名模板" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "添加自增值" @@ -5700,7 +5721,7 @@ msgid "Enclose table and column names with backquotes" msgstr "给表名及字段名加上反引号" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" @@ -5730,7 +5751,7 @@ msgstr "从phpMyAdmin设置存储中导出相关元数据" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "添加 %s" @@ -5898,7 +5919,7 @@ msgid "Customize the navigation tree." msgstr "自定义导航树。" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "服务器" @@ -6758,7 +6779,7 @@ msgstr "HTTP 提示信息" msgid "Authentication method to use." msgstr "要使用的认证方式。" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "认证方式" @@ -7455,7 +7476,7 @@ msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略 msgid "Enable the Developer tab in settings" msgstr "启用设置中的开发标签" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "检查更新" @@ -7463,10 +7484,10 @@ msgstr "检查更新" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "允许在 phpMyAdmin 主页面中检查最新版本。" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "检查更新" @@ -7614,24 +7635,24 @@ msgstr "微软 Word 2000" msgid "OpenDocument Text" msgstr "OpenOffice 文档" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "收藏夹数量已达上限!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "已清空表 %s。" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "已删除视图 %s。" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "已删除表 %s。" @@ -7645,12 +7666,12 @@ msgid "Position" msgstr "位置" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "事件类型" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "服务器ID" @@ -7659,7 +7680,7 @@ msgid "Original position" msgstr "初始位置" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "信息" @@ -7673,41 +7694,41 @@ msgstr "截断显示的查询" msgid "Show Full Queries" msgstr "显示完整查询" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "无数据库" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "已创建数据库 %1$s。" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "已成功删除 %1$d 个数据库。" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "行数" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "总计" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "多余" @@ -7733,33 +7754,33 @@ msgstr "" msgid "Enable statistics" msgstr "启用统计" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, fuzzy, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "服务器变量和设置" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "设置变量失败" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "没有设置SQL 查询来检索数据。" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "在将表格转为图表时没有找到数字类型的列。" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "没有可显示数据" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "已成功修改表 %1$s。" @@ -7805,7 +7826,7 @@ msgstr "已成功移动字段。" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "查询错误" @@ -7822,12 +7843,12 @@ msgstr "修改" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "索引" @@ -7848,13 +7869,13 @@ msgstr "全文搜索" msgid "Distinct values" msgstr "非重复值 (DISTINCT)" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 扩展。请检查 PHP 配置。" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "无更改" @@ -7875,31 +7896,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "无法加载schema插件,请检查您的安装!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "无密码" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "密码:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "重新输入:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "密码加密方式:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 #, fuzzy msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " @@ -7907,134 +7932,134 @@ msgid "" "the server." msgstr "此方法连接服务器时,需要使用SSL连接或未加密但使用RSA加密了密码的连接。" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "正在从当前服务器中导出数据库" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "正在导出数据库“%s”中的数据表" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "正在导出数据表“%s”中的记录" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "导出模板:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "新模板:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "模板名称" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "创建" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "现有模板:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "模板:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "更新" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "选择一个模板" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "导出方式:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "快速 - 显示最少的选项" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "自定义 - 显示所有可用的选项" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "数据库:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "数据表:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "格式:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "格式特定选项:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "请下拉至所选格式并设置选项,其它格式请忽略。" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "编码转换:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "记录:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "转储部分记录" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "起始行数:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "转储所有行" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "输出:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "保存到务器上的 %s 文件夹中" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "文件名模板:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ 将变成服务器名称" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ",@DATABASE@ 将变成数据库名" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ",@TABLE@ 将变成数据表名" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8044,98 +8069,98 @@ msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "以后也使用此设置" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "文件的字符集:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "压缩:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip 压缩" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip 压缩" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "直接显示为文本" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "将数据库导出为独立的文件" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "将每个表导出为独立的文件" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "重命名导出的数据库/表/列" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "保存为文件" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "跳过数据表,当大于" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "选择数据库" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "选择表" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "新数据库名" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "新数据表名称" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "原字段名" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "新字段名" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "无法加载导出插件,请检查安装!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s 来自 %2$s 分支" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "没有分支" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git 修订版本:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "由 %2$s 提交于 %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%2$s 基于版本 %1$s 进行修改创作" @@ -8559,86 +8584,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "没有足够的空间保存文件 %s。" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项。" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "网站服务器没有保存文件 %s 的权限。" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "已保存转储到文件 %s 中。" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[发生 ROLLBACK.]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "请通过点击结构的名称来查看它的内容。" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "点击相应的“选项”链接修改设置。" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "请通过点击 \"结构\" 链接来编辑结构." -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "转到数据库: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "编辑 %s 的设置" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "转到表: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s 的结构" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "转到视图: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只能预览单一数据表的UPDATE和DELETE查询。" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -8652,84 +8677,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "在第 %s 个字段创建索引" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "隐藏" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "函数" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "因长度问题,
该字段可能无法编辑。" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "或" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "网站服务器上传文件夹:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "编辑/插入" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "然后" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8740,31 +8766,31 @@ msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "成功!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "仅结构" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "结构和数据" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "仅数据" @@ -8775,14 +8801,14 @@ msgid "Add AUTO INCREMENT value" msgstr "添加自增值" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "添加约束" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "调整权限" @@ -8827,8 +8853,8 @@ msgstr "存储过程:" msgid "Views:" msgstr "视图:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "显示" @@ -8870,17 +8896,17 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "找到 %s 条结果" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "过滤器" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "清除快速筛选数据" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "全部折叠" @@ -8896,7 +8922,7 @@ msgstr "无效的类名 \"%1$s\", 使用默认值 \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "无法加载类 \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "扩展/收起" @@ -8915,7 +8941,7 @@ msgstr "新建" msgid "Database operations" msgstr "数据库操作" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "显示隐藏项目" @@ -9016,11 +9042,11 @@ msgid "" "column', it'll move to next step)." msgstr "" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "选择一个……" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "没有这样的字段" @@ -9273,8 +9299,8 @@ msgid "Rename database to" msgstr "将数据库改名为" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9320,181 +9346,181 @@ msgstr "(逐一)" msgid "Move table to (database.table)" msgstr "将数据表移动到(数据库名.数据表名)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "将表改名为" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "表注释" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "表选项" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "存储引擎" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "将数据表复制到(数据库名.数据表名)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "切换到复制的数据表" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "表维护" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "分析表" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "检查表" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "检查表" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "整理表碎片" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "已强制更新表 %s。" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "刷新表 (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "优化表" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "修复表" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "删除数据或数据表" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "清空数据表 (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "删除数据表 (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "分析" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "检查" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "优化" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "重建" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "修复" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "关闭" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "分区维护" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "分区 %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "删除分区" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "检查引用完整性:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已将数据表 %s 移动到 %s。已调整权限。" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已将数据表 %s 复制为 %s。已调整权限。" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "已将数据表 %s 移动到 %s。" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "已将数据表 %s 复制为 %s。" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "表名不能为空!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "该格式没有选项" @@ -9521,18 +9547,18 @@ msgstr "显示颜色" msgid "Only show keys" msgstr "仅显示键" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "无法连接:无效的设置。" -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "欢迎使用 %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -9540,7 +9566,7 @@ msgid "" msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9550,7 +9576,7 @@ msgstr "" "phpMyAdmin 尝试连接到 MySQL 服务器,但服务器拒绝连接。您应该检查配置文件中的" "主机、用户名和密码,并确认这些信息与 MySQL 服务器管理员所给出的信息一致。" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "" @@ -9575,15 +9601,15 @@ msgstr "用户名:" msgid "Server Choice:" msgstr "选择服务器:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" @@ -9646,7 +9672,7 @@ msgstr "数据转储选项" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "转存表中的数据" @@ -9655,7 +9681,7 @@ msgstr "转存表中的数据" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "事件" @@ -9663,8 +9689,8 @@ msgstr "事件" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "定义" @@ -9758,7 +9784,7 @@ msgstr "首行保存字段名" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 #, fuzzy #| msgid "Host" msgid "Host:" @@ -10322,7 +10348,7 @@ msgstr "目录" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "额外" @@ -10726,11 +10752,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "无说明" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -10739,7 +10765,7 @@ msgstr "" "您没有权限建立名为“phpmyadmin”的数据库。您可能需要到任一数据库的“操作”页面设" "置 phpMyAdmin的储存位置 。" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -10747,41 +10773,41 @@ msgid "" "configuration storage there." msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "主复制" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "查看已连接的从服务器" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "主服务器配置" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 #, fuzzy #| msgid "" #| "This server is not configured as master server in a replication process. " @@ -10799,25 +10825,25 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你可以选择复制所有但忽略某些数据" "库 (当你想复制大多数数据库时很有用) 或者仅复制某些数据库。请选择模式:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "复制所有数据库,除了:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "仅复制:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "请选择数据库:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "现在,将下列行添加到你的 my.cnf 文件最后,然后重新启动 MySQL 服务器。" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -10826,71 +10852,71 @@ msgstr "" "当 MySQL 服务器重新启动后,请点击执行按钮。你应该看见一条提示信息说此服务器" "已经被配置为主服务器。" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "从复制" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 #, fuzzy #| msgid "Insecure connection" msgid "Master connection:" msgstr "非安全连接" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "从 SQL 线程未启动!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "从 IO 线程未启动!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "服务器已被配置为一个复制进程中的从服务器。你是否要:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "查看从服务器状态" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "控制从服务器:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "全部启动" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "全部停止" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "重置从服务器" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "仅启动 SQL 线程" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "仅停止 SQL 线程" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "仅启动 IO 线程" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "仅停止 IO 线程" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "修改或重新配置主服务器" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10899,25 +10925,25 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "错误管理:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "忽略错误可能导致主从服务器间不同步!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "忽略当前错误" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, fuzzy, php-format #| msgid "Skip current error" msgid "Skip next %s errors." msgstr "忽略当前错误" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10926,11 +10952,11 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你想现在配置" "吗?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "从服务器配置" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -10938,190 +10964,190 @@ msgstr "" "请确保在你的配置文件 (my.cnf) 中具有唯一的服务器标识 (server-id) 。若没有,请" "添加此行到 [mysqld] 一节中:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 #, fuzzy #| msgid "User name" msgid "User name:" msgstr "用户名" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "用户名" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "密码" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 #, fuzzy #| msgid "Port" msgid "Port:" msgstr "端口" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "主服务器状态" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "从服务器状态" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "变量" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "主机" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "任意主机" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "此主机" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "任意用户" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "使用文本域" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主机表时,此处的数据会被主机表中的数据所替换。" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "重新输入" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 #, fuzzy #| msgid "Generate password" msgid "Generate password:" msgstr "生成密码" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 #, fuzzy #| msgid "Replication status" msgid "Replication started successfully." msgstr "复制状态" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 #, fuzzy #| msgid "Master replication" msgid "Error starting replication." msgstr "主复制" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 #, fuzzy #| msgid "Chart generated successfully." msgid "Replication stopped successfully." msgstr "图表生成成功。" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 #, fuzzy #| msgid "Master replication" msgid "Error stopping replication." msgstr "主复制" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 #, fuzzy #| msgid "Replication status" msgid "Replication resetting successfully." msgstr "复制状态" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 #, fuzzy #| msgid "Master replication" msgid "Error resetting replication." msgstr "主复制" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 #, fuzzy #| msgid "Error" msgid "Error." msgstr "错误" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "未知错误" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "无法连接到主服务器 %s 。" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "无法读取主服务器日志。主服务器的权限设置可能有问题。" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 #, fuzzy #| msgid "Unable to change master" msgid "Unable to change master!" msgstr "无法修改主服务器" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, fuzzy, php-format #| msgid "Master server changed successfully to %s" msgid "Master server changed successfully to %s." msgstr "已成功修改主服务器到 %s" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -11142,7 +11168,7 @@ msgstr "已修改事件 %1$s 。" msgid "Event %1$s has been created." msgstr "已创建事件 %1$s 。" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 #, fuzzy #| msgid "" @@ -11154,79 +11180,79 @@ msgstr "处理请求时发生错误:" msgid "Edit event" msgstr "编辑事件" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "详细" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "事件名称" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "改为 %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "运行时间" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "运行周期" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "起始时间" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "终止时间" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "过期后禁用事件而不删除" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "用户" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 #, fuzzy #| msgid "The definer must be in the \"username@hostname\" format" msgid "The definer must be in the \"username@hostname\" format!" msgstr "用户必须是 \"用户名@主机名\" 格式" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 #, fuzzy #| msgid "You must provide an event name" msgid "You must provide an event name!" msgstr "请输入事件名称" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "请设置一个有效的运行周期。" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "请设置一个有效的运行时间。" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "请选择一个有效的事件类型。" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "请输入事件定义。" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 #, fuzzy #| msgid "Error in processing request" @@ -11249,7 +11275,7 @@ msgstr "事件计划状态" msgid "The backed up query was:" msgstr "已备份的查询为:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "返回" @@ -11263,121 +11289,121 @@ msgstr "" "你正在使用 PHP 所不推荐的 'mysql' 扩展,不支持多语句查询。[strong]运行部分存" "储过程操作时可能会失败![/strong]请使用改进的 'mysqli' 扩展避免此类问题发生。" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "编辑程序" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "无效的程序类型: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "已创建程序 %1$s 。" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "抱歉,恢复已删除的程序失败。" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "已修改程序 %1$s 。已调整权限。" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "已修改程序 %1$s 。" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "程序名称" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "参数" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "方向" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "添加参数" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "删除最后一个参数" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "返回类型" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "返回长度/值" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "返回选项" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "是否固定" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "您没有足够的权限执行此操作,请参考说明文档了解详情" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "安全类型" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL 数据访问" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 #, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a routine name!" msgstr "请输入程序名称" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "参数方向 \"%s\" 无效。" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "请设置 ENUM、SET、VARCHAR 和 VARBINARY 类型参数的长度/值。" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "请输入每一个参数的名称并设置其类型。" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "请设置一个有效的返回类型。" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "请输入程序定义。" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "程序 %s 的运行结果" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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" @@ -11385,13 +11411,13 @@ 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 行" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "运行程序" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "程序参数" @@ -11413,40 +11439,40 @@ msgstr "已创建触发器 %1$s 。" msgid "Edit trigger" msgstr "编辑触发器" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "触发器名称" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "时机" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 #, fuzzy #| msgid "You must provide a trigger name" msgid "You must provide a trigger name!" msgstr "请输入触发器名称" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 #, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" msgstr "请选择一个有效的触发时机" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 #, fuzzy #| msgid "You must provide a valid event for the trigger" msgid "You must provide a valid event for the trigger!" msgstr "请选择一个有效的触发事件" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 #, fuzzy #| msgid "You must provide a valid table name" msgid "You must provide a valid table name!" msgstr "请选择一个有效的表" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "请输入触发器定义。" @@ -11573,92 +11599,92 @@ msgstr "字符集和排序规则" msgid "Databases statistics" msgstr "数据库统计" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "无权限。" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "允许读取数据。" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "允许修改数据。" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "允许删除数据。" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "允许查看所有用户的进程" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11667,514 +11693,469 @@ msgstr "" "允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" "管理操作是必需的。" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "允许创建视图。" -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "允许为事件触发器设置事件" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." msgstr "允许创建和删除触发器" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "允许创建、删除和重命名用户账户。" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "无" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 #, fuzzy #| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." msgstr "持久连接" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 #, fuzzy #| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "持久连接" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "资源限制" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "注意:若将这些选项设为 0(零) 即不限制。" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制用户每小时可发送到服务器的查询数。" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "限制用户每小时打开的新连接数。" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" msgid "Routine" msgstr "程序" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "允许修改或删除储存过程。" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 #, fuzzy #| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "允许运行存储过程。" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "按表指定权限" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." msgstr "注意:MySQL 权限名称会以英文显示" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "管理" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "全局权限" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 #, fuzzy #| msgid "global" msgid "Global" msgstr "全局" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "按数据库指定权限" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "允许创建新数据表。" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "允许删除数据表。" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限而不重新载入权限表。" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie 认证" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon 认证" -#: libraries/server_privileges.lib.php:1559 -#, fuzzy -#| msgid "Cookie authentication" -msgid "Native MySQL Authentication" -msgstr "Cookie 认证" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "登录信息" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "使用文本域" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "用户名" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "日志文件名" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "保持原密码" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "认证" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "密码加密方式:" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已撤销 %s 的权限。" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "新增用户账户" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "用户账户数据库" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "创建与用户同名的数据库并授予所有权限。" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限。" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, fuzzy, php-format #| msgid "Grant all privileges on database \"%s\"." msgid "Grant all privileges on database %s." msgstr "授予数据库“%s”的所有权限。" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "用户可以访问“%s”" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "用户已添加。" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "授权" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "未找到用户。" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "全局" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "通配符" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "修改权限" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "撤销" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "编辑服务器" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… 保留旧用户。" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… 从用户表中删除旧用户。" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 撤销旧用户的所有权限,然后删除旧用户。" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 从用户表中删除旧用户,然后重新载入权限。" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "修改登录信息/复制用户账户" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "创建具有相同权限的新用户账户然后 …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "按字段指定权限" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "删除选中的用户账户" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "撤销用户所有权限,然后删除用户。" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "删除与用户同名的数据库。" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "重新载入权限" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "%s 的权限" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "用户" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "新建" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "修改权限:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "用户账户" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "注意:您正在尝试修改您正在使用的账号的权限。" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "用户账户概况" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 "" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12186,7 +12167,7 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" "限%s。" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12198,11 +12179,11 @@ msgstr "" "内容将可能与服务器使用的用户权限有异。在这种情况下,应当重新载入权限表,但您" "没有RELOAD权限。" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "您已添加了一个新用户。" @@ -12493,12 +12474,12 @@ msgstr "命令" msgid "Progress" msgstr "进度" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "过滤器" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "仅显示活跃的" @@ -12521,12 +12502,12 @@ msgstr "每分钟:" msgid "per second:" msgstr "每秒" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "说明" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "查询数量" @@ -12550,17 +12531,17 @@ msgstr "显示原始值" msgid "Related links:" msgstr "相关链接:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "因客户端没有关闭连接而中止的连接数。" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "尝试连接到 MySQL 服务器但失败的连接数。" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12569,16 +12550,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12588,17 +12569,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12606,29 +12587,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12637,7 +12618,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12646,14 +12627,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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 "" "根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12662,7 +12643,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12670,7 +12651,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY … DESC " "的查询。" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12680,7 +12661,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12690,35 +12671,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "空闲页数。" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12727,7 +12708,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12738,11 +12719,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12750,24 +12731,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12779,85 +12760,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "数据读取总数。" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "数据写入总数。" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日志缓存太小而必须等待其被写入所造成的等待数。" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "创建的页数。" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -12865,79 +12846,79 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "读取的页数。" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "写入的页数。" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "已用键缓存百分比(计算值)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -12946,27 +12927,27 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 #, fuzzy msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "由物理读取数与读取请求数相比计算出的键缓存未命中率(计算值)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "物理写入数与写入请求数的百分比比值(计算值)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -12975,35 +12956,35 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自服务器启动以来的最高并发连接数。" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13012,19 +12993,19 @@ msgstr "" "查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " "CACHE 语句解决。" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "缓存命中数。" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13034,7 +13015,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13042,19 +13023,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -13062,11 +13043,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -13074,7 +13055,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13082,36 +13063,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13120,23 +13101,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "排序的行数。" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13146,7 +13127,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13155,11 +13136,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13170,11 +13151,11 @@ msgstr "" "thread_cache_size 的值。(如果线程状况良好,这么做通常并不会带来显著的性能提" "升。)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "线程缓存命中率 (计算值)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" @@ -13211,49 +13192,49 @@ msgstr "数据库服务器" msgid "Table level tabs" msgstr "表注释" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 #, fuzzy #| msgid "Views" msgid "View users" msgstr "视图" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "添加用户" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "无权限。" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "字段名: " -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "服务器版本" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "数据库服务器" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13376,7 +13357,7 @@ msgstr "在数据库 %s 运行 SQL 查询" msgid "Run SQL query/queries on table %s" msgstr "在数据库 %s 运行 SQL 查询" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "清除" @@ -13466,176 +13447,176 @@ msgstr "立即禁用" msgid "Version" msgstr "版本" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "创建" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "更新" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "创建版本" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "追踪报告" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "结构快照" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "启用" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "禁用" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "追踪语句" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "从报告中删除追踪数据" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "无数据" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" 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" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL 转储 (文件下载)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL 转储" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "该选项将导致当前表的结构和数据被替换。" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "执行 SQL 语句" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "导出为 %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "数据操作语句" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "数据定义语句" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "日期" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "用户名" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 代码)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "无" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "追踪数据定义删除成功" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "追踪数据操作删除成功" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "你可以通过创建一个临时数据库来执行这个转储。请确保你有足够的权限。" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "如果你不需要,请注释以下两行。" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 语句已导出。请复制保存或运行它。" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追踪报告" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已启用。" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已停用。" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "为 %2$s 创建版本 %1$s" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已创建版本 %1$s,%2$s 的追踪已启用。" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "未追踪的表" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "追踪表" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "已追踪的表" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "最新版本" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "删除追踪数据" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "版本" @@ -13643,7 +13624,7 @@ msgstr "版本" msgid "Manage your settings" msgstr "管理我的设置" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "设置已保存。" @@ -13667,7 +13648,7 @@ msgstr "ZIP 包中有错误:" msgid "No files found inside ZIP archive!" msgstr "ZIP 包中未找到文件!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "致命错误:导航只能通过AJAX访问" @@ -13677,57 +13658,57 @@ msgstr "致命错误:导航只能通过AJAX访问" msgid "Cannot save settings, submitted form contains errors!" msgstr "无法保存设置,提交的表单中有错误" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "丢失 phpMyAdmin 高级功能数据表" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "无法导入设置" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "部分设置含有错误的数据。" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "是否导入其余的设置?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "保存于:@DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "从文件导入" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "从浏览器存储中导入" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "设置将从浏览器的本地存储中导入。" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "你没有已保存的设置!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "你所使用的浏览器不支持此功能" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "与当前设置合并" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13735,25 +13716,25 @@ msgid "" msgstr "" "你可以通过修改 config.inc.php 文件进行更多设置,如通过使用%s安装脚本%s。" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "保存为文件" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "保存到浏览器存储" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "设置将保存到浏览器的本地存储。" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "现有设置将被覆盖!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "你可以重置并将所有设置恢复为默认值。" @@ -13761,45 +13742,45 @@ msgstr "你可以重置并将所有设置恢复为默认值。" msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "无权限" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "已成功杀死线程 %s 。" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "下载" @@ -13810,11 +13791,11 @@ msgstr "下载" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "不正确的表单集,请检查 setup/frames/form.inc.php 中的 $formsets 数组" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "无法加载或保存配置" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -13823,28 +13804,31 @@ msgstr "" "请在 phpMyAdmin 的根文件夹下创建 [doc@setup_script]文档[/doc]中所述的网站服务" "器可以写入的 [em]config[/em] 文件夹。否则你只能下载或显示配置。" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "你现在没有使用安全连接,所有数据(包括敏感信息,如密码)均为明文传输!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "如果你的服务器已经配置好支持 HTTPS,请[a@%s]点击这里[/a]使用安全连接。" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "非安全连接" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "配置已保存。" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -13852,61 +13836,61 @@ msgstr "" "配置已保存到 config/config.inc.php 文件,请将其复制到 phpMyAdmin 根目录并删" "除 config 文件夹。" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "配置已保存。" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "概要" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "显示隐藏信息 (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "没有配置好的服务器" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "新建服务器" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "默认语言" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "让用户选择" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- 无 -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "默认服务器" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "换行符" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "显示" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "加载" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin 主页 (外链,英文)" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "捐助 (外链,英文)" @@ -13942,21 +13926,21 @@ msgstr "忽略错误" msgid "Show form" msgstr "显示表单" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "读取版本信息失败。您可能尚未接入网络或更新服务器未响应。" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "从服务器获得版本错误" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "无法解析版本" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -13965,7 +13949,7 @@ msgstr "" "你现在使用的是开发版,请通过 [kbd]git pull[/kbd] 检查更新 :-)[br]最新正式版" "为 %s,于 %s 发布。" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "没有更新的可用版本" @@ -13978,12 +13962,12 @@ msgstr "无效数据" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "数据库 '%s' 不存在。" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "数据表 %s 已存在!" @@ -13996,35 +13980,35 @@ msgstr "查看数据表的转储(大纲)" msgid "Invalid table name" msgstr "表名无效" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 #, fuzzy #| msgid "No rows selected" msgid "No row selected." msgstr "没有选中任何行" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s 的追踪已启用。" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "已成功删除选中的用户。" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 #, fuzzy #| msgid "No rows selected" msgid "No versions selected." msgstr "没有选中任何行" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "SQL 语句已执行。" @@ -14238,7 +14222,7 @@ msgid "List of available transformations and their options" msgstr "可用的转换" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 #, fuzzy #| msgid "Browser transformation" msgid "Browser display transformation" @@ -14262,7 +14246,7 @@ msgstr "" "(“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 #, fuzzy #| msgid "Browser transformation" msgid "Input transformation" @@ -14737,17 +14721,17 @@ msgid "Size" msgstr "大小" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "创建时间" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "最后更新" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "最后检查" @@ -14789,6 +14773,12 @@ msgid "" "import it for current session?" msgstr "你的浏览器中有当前域的 phpMyAdmin 设置。是否导入到当前会话中?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "删除追踪数据" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "在下列数据库添加权限:" @@ -14807,10 +14797,43 @@ msgstr "在下列数据表添加权限" msgid "Add privileges on the following table:" msgstr "在下列数据表添加权限:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "新建" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "无" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "删除选中的用户账户" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "撤销用户所有权限,然后删除用户。" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "删除与用户同名的数据库。" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "按字段指定权限" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "资源限制" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "注意:若将这些选项设为 0(零) 即不限制。" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "选择要查看的二进制日志" @@ -14841,7 +14864,7 @@ msgstr "插件" msgid "Author" msgstr "作者" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "已禁用" @@ -15003,7 +15026,7 @@ msgstr "用户:" msgid "Comment:" msgstr "注释:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15043,28 +15066,28 @@ msgstr "" msgid "Foreign key constraint" msgstr "外键约束" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "添加约束" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "内联" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "内联" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "不需要一个和外键关系一致的内联关系。" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15122,11 +15145,11 @@ msgstr "替换前" msgid "Replaced string" msgstr "替换后" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "替换" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "附加搜索条件" @@ -15203,7 +15226,7 @@ msgid "at beginning of table" msgstr "于表开头" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "分区" @@ -15237,28 +15260,28 @@ msgstr "行长度" msgid "Index length" msgstr "行长度" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 #, fuzzy #| msgid "partitioned" msgid "Partition table" msgstr "已分区" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 #, fuzzy #| msgid "Remove partitioning" msgid "Edit partitioning" msgstr "删除分区" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "编辑视图" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "已用空间" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "有效" @@ -15285,33 +15308,33 @@ msgstr "规划表结构" msgid "Track view" msgstr "显示追逐" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 #, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "行统计" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "静态" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "动态" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "已分区" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "行长度" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "行大小" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "下一个自增值" @@ -15324,50 +15347,50 @@ msgstr "已删除字段 %s。" msgid "Click to toggle" msgstr "点击切换" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "主题" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "获得更多主题!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "可用的 MIME 类型" -#: transformation_overview.php:37 +#: transformation_overview.php:38 #, fuzzy #| msgid "Available transformations" msgid "Available browser display transformations" msgstr "可用的转换" -#: transformation_overview.php:38 +#: transformation_overview.php:39 #, fuzzy #| msgid "Available transformations" msgid "Available input transformations" msgstr "可用的转换" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "说明" -#: url.php:38 +#: url.php:39 #, fuzzy #| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "等待进入下一步…" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "权限不足!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "配置文件己更新。" -#: user_password.php:125 +#: user_password.php:127 msgid "Password is too long!" msgstr "密码太长!" @@ -15442,7 +15465,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15467,19 +15490,19 @@ msgid "Unrecognized data type." msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." msgstr "没有已选择的数据库。" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "" @@ -15542,29 +15565,29 @@ msgstr "" msgid "Expected delimiter." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, fuzzy, php-format #| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "已创建事件 %1$s 。" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 #, fuzzy #| msgid "Table name template" msgid "Variable name was expected." msgstr "表名称模板" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "于表开头" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "" @@ -15583,10 +15606,16 @@ msgstr "第 %s 行有不应出现的字符。" msgid "This type of clause was previously parsed." msgstr "" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "于表开头" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15633,7 +15662,7 @@ msgstr "" msgid "strict error" msgstr "收集错误" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "请勿使用空白视图名" @@ -16807,6 +16836,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#, fuzzy +#~| msgid "Cookie authentication" +#~ msgid "Native MySQL Authentication" +#~ msgstr "Cookie 认证" + #~ msgid "Try to connect without password." #~ msgstr "尝试用空密码连接。" diff --git a/po/zh_TW.po b/po/zh_TW.po index 5cd31684b3..faeed9ea28 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-11-10 09:40+0100\n" +"POT-Creation-Date: 2016-12-13 10:41+0100\n" "PO-Revision-Date: 2016-11-28 05:32+0000\n" "Last-Translator: ncwgf \n" -"Language-Team: Chinese (Taiwan) " -"\n" +"Language-Team: Chinese (Taiwan) \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.10-dev\n" -#: changelog.php:38 license.php:33 +#: changelog.php:39 license.php:34 #, fuzzy, php-format #| msgid "" #| "The %s file is not available on this system, please visit www.phpmyadmin." @@ -25,31 +25,31 @@ msgid "" "information." msgstr "系統上找不到 %s 檔案,詳情請參考 www.phpmyadmin.net。" -#: db_central_columns.php:107 +#: db_central_columns.php:108 msgid "The central list of columns for the current database is empty." msgstr "目前資料庫的欄位中央清單為空的。" -#: db_central_columns.php:132 +#: db_central_columns.php:133 msgid "Click to sort." msgstr "點選排序。" -#: db_central_columns.php:151 +#: db_central_columns.php:150 #, php-format msgid "Showing rows %1$s - %2$s." msgstr "顯示第 %1$s - %2$s 列。" -#: db_datadict.php:58 libraries/operations.lib.php:36 +#: db_datadict.php:59 libraries/operations.lib.php:36 msgid "Database comment" msgstr "資料庫備註" -#: db_datadict.php:105 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 +#: db_datadict.php:106 libraries/plugins/schema/pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.phtml:89 -#: templates/table/structure/display_table_stats.phtml:5 +#: templates/table/structure/display_table_stats.phtml:4 msgid "Table comments:" msgstr "資料表備註:" -#: db_datadict.php:114 libraries/Index.php:686 -#: libraries/insert_edit.lib.php:1638 +#: db_datadict.php:115 libraries/Index.php:686 +#: libraries/insert_edit.lib.php:1639 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -61,13 +61,13 @@ msgstr "資料表備註:" #: libraries/plugins/export/PMA_ExportPdf.php:472 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:629 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:652 -#: libraries/tracking.lib.php:898 libraries/tracking.lib.php:996 +#: libraries/tracking.lib.php:884 libraries/tracking.lib.php:975 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 #: templates/table/relation/common_form.phtml:12 #: templates/table/relation/common_form.phtml:19 #: templates/table/relation/common_form.phtml:35 -#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/common_form.phtml:85 #: templates/table/relation/foreign_key_row.phtml:182 #: templates/table/relation/foreign_key_row.phtml:194 #: templates/table/relation/internal_relational_row.phtml:73 @@ -78,9 +78,9 @@ msgstr "資料表備註:" msgid "Column" msgstr "欄位" -#: db_datadict.php:115 libraries/Index.php:683 -#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1386 -#: libraries/insert_edit.lib.php:251 +#: db_datadict.php:116 libraries/Index.php:683 +#: libraries/central_columns.lib.php:696 libraries/central_columns.lib.php:1383 +#: libraries/insert_edit.lib.php:252 #: libraries/plugins/export/ExportHtmlword.php:293 #: libraries/plugins/export/ExportHtmlword.php:389 #: libraries/plugins/export/ExportLatex.php:524 @@ -91,12 +91,12 @@ msgstr "欄位" #: libraries/plugins/export/PMA_ExportPdf.php:474 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:630 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:653 -#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:109 -#: libraries/rte/rte_routines.lib.php:905 -#: libraries/rte/rte_routines.lib.php:936 -#: libraries/rte/rte_routines.lib.php:1612 -#: libraries/server_privileges.lib.php:2650 libraries/tracking.lib.php:899 -#: libraries/tracking.lib.php:993 +#: libraries/rte/rte_list.lib.php:82 libraries/rte/rte_list.lib.php:110 +#: libraries/rte/rte_routines.lib.php:906 +#: libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_routines.lib.php:1613 +#: libraries/server_privileges.lib.php:2529 libraries/tracking.lib.php:885 +#: libraries/tracking.lib.php:972 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,9 +108,9 @@ msgstr "欄位" msgid "Type" msgstr "型態" -#: db_datadict.php:116 libraries/Index.php:689 -#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1387 -#: libraries/insert_edit.lib.php:1647 +#: db_datadict.php:117 libraries/Index.php:689 +#: libraries/central_columns.lib.php:707 libraries/central_columns.lib.php:1384 +#: libraries/insert_edit.lib.php:1648 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -121,15 +121,15 @@ msgstr "型態" #: libraries/plugins/export/PMA_ExportPdf.php:476 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 -#: libraries/tracking.lib.php:901 libraries/tracking.lib.php:999 +#: libraries/tracking.lib.php:887 libraries/tracking.lib.php:978 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 msgid "Null" msgstr "空值" -#: db_datadict.php:117 libraries/central_columns.lib.php:700 -#: libraries/central_columns.lib.php:1386 +#: db_datadict.php:118 libraries/central_columns.lib.php:700 +#: libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:299 #: libraries/plugins/export/ExportHtmlword.php:395 #: libraries/plugins/export/ExportLatex.php:526 @@ -140,14 +140,14 @@ msgstr "空值" #: libraries/plugins/export/PMA_ExportPdf.php:478 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 -#: libraries/replication_gui.lib.php:152 libraries/tracking.lib.php:902 +#: libraries/replication_gui.lib.php:153 libraries/tracking.lib.php:888 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 msgid "Default" msgstr "預設值" -#: db_datadict.php:119 libraries/plugins/export/ExportHtmlword.php:399 +#: db_datadict.php:120 libraries/plugins/export/ExportHtmlword.php:399 #: libraries/plugins/export/ExportLatex.php:528 #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:380 @@ -157,7 +157,7 @@ msgstr "預設值" msgid "Links to" msgstr "連結到" -#: db_datadict.php:121 libraries/config/messages.inc.php:161 +#: db_datadict.php:122 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:215 #: libraries/plugins/export/ExportHtmlword.php:404 #: libraries/plugins/export/ExportLatex.php:531 @@ -171,19 +171,19 @@ msgstr "連結到" msgid "Comments" msgstr "備註" -#: db_datadict.php:156 +#: db_datadict.php:154 #: libraries/controllers/table/TableStructureController.php:1184 #: libraries/controllers/table/TableStructureController.php:1189 -#: libraries/tracking.lib.php:941 +#: libraries/tracking.lib.php:920 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:28 #: templates/table/structure/display_structure.phtml:62 msgid "Primary" msgstr "主鍵" -#: db_datadict.php:166 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:164 js/messages.php:374 libraries/Index.php:565 #: libraries/Index.php:593 libraries/IndexColumn.php:141 -#: libraries/central_columns.lib.php:965 +#: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 libraries/mult_submits.lib.php:450 #: libraries/mult_submits.lib.php:464 #: libraries/plugins/export/ExportHtmlword.php:656 @@ -191,13 +191,13 @@ msgstr "主鍵" #: libraries/plugins/export/ExportOdt.php:792 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:705 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3052 -#: libraries/server_privileges.lib.php:3072 -#: libraries/server_privileges.lib.php:3735 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1031 libraries/tracking.lib.php:1036 -#: prefs_manage.php:161 templates/prefs_autoload.phtml:13 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2926 +#: libraries/server_privileges.lib.php:2946 +#: libraries/server_privileges.lib.php:3608 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1003 libraries/tracking.lib.php:1008 +#: prefs_manage.php:150 templates/prefs_autoload.phtml:13 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -205,17 +205,17 @@ msgstr "主鍵" msgid "No" msgstr "否" -#: db_datadict.php:166 js/messages.php:521 libraries/Index.php:592 -#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:965 +#: db_datadict.php:164 js/messages.php:522 libraries/Index.php:592 +#: libraries/IndexColumn.php:143 libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:282 -#: libraries/controllers/server/ServerDatabasesController.php:197 +#: libraries/controllers/server/ServerDatabasesController.php:200 #: libraries/controllers/table/TableStructureController.php:757 #: libraries/controllers/table/TableStructureController.php:1434 #: libraries/controllers/table/TableStructureController.php:1443 #: libraries/controllers/table/TableStructureController.php:1448 #: libraries/controllers/table/TableStructureController.php:1453 #: libraries/controllers/table/TableStructureController.php:1458 -#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:215 +#: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:213 #: libraries/mult_submits.lib.php:359 libraries/mult_submits.lib.php:392 #: libraries/mult_submits.lib.php:421 libraries/mult_submits.lib.php:448 #: libraries/mult_submits.lib.php:462 @@ -224,13 +224,13 @@ msgstr "否" #: libraries/plugins/export/ExportOdt.php:793 #: libraries/plugins/export/ExportTexytext.php:608 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:706 -#: libraries/server_privileges.lib.php:2830 -#: libraries/server_privileges.lib.php:3049 -#: libraries/server_privileges.lib.php:3070 -#: libraries/server_privileges.lib.php:3732 -#: libraries/server_privileges.lib.php:3758 libraries/tracking.lib.php:952 -#: libraries/tracking.lib.php:1029 libraries/tracking.lib.php:1034 -#: prefs_manage.php:159 templates/prefs_autoload.phtml:12 +#: libraries/server_privileges.lib.php:2705 +#: libraries/server_privileges.lib.php:2923 +#: libraries/server_privileges.lib.php:2944 +#: libraries/server_privileges.lib.php:3605 +#: libraries/server_privileges.lib.php:3631 libraries/tracking.lib.php:931 +#: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 +#: prefs_manage.php:148 templates/prefs_autoload.phtml:12 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 #: templates/privileges/privileges_summary_row.phtml:9 @@ -242,15 +242,15 @@ msgstr "是" msgid "View dump (schema) of database" msgstr "檢視資料庫結構的匯出資料" -#: db_export.php:51 db_tracking.php:102 export.php:378 libraries/DbQbe.php:326 -#: libraries/controllers/database/DatabaseStructureController.php:153 +#: db_export.php:51 db_tracking.php:103 export.php:378 libraries/DbQbe.php:326 +#: libraries/controllers/database/DatabaseStructureController.php:156 #: libraries/navigation/NavigationTree.php:918 msgid "No tables found in database." msgstr "資料庫中沒有任何資料表。" #: db_export.php:65 libraries/ServerStatusData.php:128 #: libraries/config/messages.inc.php:277 -#: libraries/controllers/server/ServerDatabasesController.php:341 +#: libraries/controllers/server/ServerDatabasesController.php:344 #: libraries/navigation/nodes/NodeTableContainer.php:25 #: libraries/navigation/nodes/NodeTableContainer.php:26 #: libraries/plugins/export/ExportXml.php:118 @@ -259,8 +259,8 @@ msgid "Tables" msgstr "資料表" #: db_export.php:66 libraries/Menu.php:330 libraries/Menu.php:437 -#: libraries/Util.php:3267 libraries/Util.php:3277 libraries/Util.php:3283 -#: libraries/Util.php:3563 libraries/Util.php:4196 libraries/Util.php:4213 +#: libraries/Util.php:3178 libraries/Util.php:3188 libraries/Util.php:3194 +#: libraries/Util.php:3474 libraries/Util.php:4107 libraries/Util.php:4124 #: libraries/central_columns.lib.php:727 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:317 @@ -268,10 +268,10 @@ msgstr "資料表" #: libraries/config/user_preferences.forms.php:220 #: libraries/config/user_preferences.forms.php:261 #: libraries/config/user_preferences.forms.php:287 -#: libraries/import.lib.php:1249 libraries/navigation/nodes/NodeColumn.php:38 +#: libraries/import.lib.php:1250 libraries/navigation/nodes/NodeColumn.php:38 #: libraries/navigation/nodes/NodeDatabase.php:53 #: libraries/navigation/nodes/NodeTable.php:290 -#: libraries/server_privileges.lib.php:1230 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:1131 libraries/tracking.lib.php:879 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -284,27 +284,27 @@ msgstr "結構" #: libraries/config/user_preferences.forms.php:269 #: libraries/config/user_preferences.forms.php:292 #: libraries/config/user_preferences.forms.php:297 -#: libraries/controllers/server/ServerDatabasesController.php:351 -#: libraries/server_privileges.lib.php:1229 -#: templates/table/structure/display_table_stats.phtml:15 +#: libraries/controllers/server/ServerDatabasesController.php:354 +#: libraries/server_privileges.lib.php:1130 +#: templates/table/structure/display_table_stats.phtml:14 msgid "Data" msgstr "資料" -#: db_export.php:70 libraries/DbSearch.php:445 -#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:378 +#: db_export.php:70 libraries/DbSearch.php:434 +#: libraries/display_export.lib.php:45 libraries/replication_gui.lib.php:379 msgid "Select all" msgstr "選擇全部" -#: db_operations.php:49 tbl_create.php:22 +#: db_operations.php:50 tbl_create.php:23 msgid "The database name is empty!" msgstr "請填寫資料庫名稱!" -#: db_operations.php:137 +#: db_operations.php:138 #, php-format msgid "Database %1$s has been renamed to %2$s." msgstr "資料庫 %1$s 已重新命名為 %2$s。" -#: db_operations.php:149 +#: db_operations.php:150 #, php-format msgid "Database %1$s has been copied to %2$s." msgstr "資料庫 %1$s 已複製爲 %2$s。" @@ -315,37 +315,37 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin 設定儲存空間已停用。 %s了解原因%s。" -#: db_qbe.php:125 +#: db_qbe.php:126 msgid "You have to choose at least one column to display!" msgstr "您必須至少選擇一個要顯示的欄位!" -#: db_qbe.php:143 +#: db_qbe.php:144 #, php-format msgid "Switch to %svisual builder%s" msgstr "切換至 %sVisual Builder%s" -#: db_search.php:31 libraries/plugins/AuthenticationPlugin.php:110 -#: libraries/plugins/auth/AuthenticationConfig.php:94 -#: libraries/plugins/auth/AuthenticationConfig.php:109 +#: db_search.php:32 libraries/plugins/AuthenticationPlugin.php:110 +#: libraries/plugins/auth/AuthenticationConfig.php:89 +#: libraries/plugins/auth/AuthenticationConfig.php:104 #: libraries/plugins/auth/AuthenticationHttp.php:77 msgid "Access denied!" msgstr "拒絕存取!" -#: db_tracking.php:52 db_tracking.php:77 +#: db_tracking.php:53 db_tracking.php:78 msgid "Tracking data deleted successfully." msgstr "追蹤資料已刪除。" -#: db_tracking.php:61 +#: db_tracking.php:62 #, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "已建立版本 %1$s,已對選取的資料表啟用追蹤。" -#: db_tracking.php:92 +#: db_tracking.php:93 msgid "No tables selected." msgstr "尚未選擇任何資料表。" -#: db_tracking.php:149 +#: db_tracking.php:150 msgid "Database Log" msgstr "資料庫記錄" @@ -381,165 +381,165 @@ msgstr "型態錯誤!" msgid "Bad parameters!" msgstr "參數錯誤!" -#: gis_data_editor.php:118 +#: gis_data_editor.php:119 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" 欄位的值" -#: gis_data_editor.php:146 +#: gis_data_editor.php:147 #: templates/table/gis_visualization/gis_visualization.phtml:38 msgid "Use OpenStreetMaps as Base Layer" msgstr "使用 OpenStreetMaps 做為基礎圖層" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:168 +#: gis_data_editor.php:169 msgid "SRID:" msgstr "空間參考識別碼(SRID):" -#: gis_data_editor.php:194 +#: gis_data_editor.php:195 #, php-format msgid "Geometry %d:" msgstr "幾何體 %d:" -#: gis_data_editor.php:216 +#: gis_data_editor.php:217 msgid "Point:" msgstr "點:" -#: gis_data_editor.php:217 gis_data_editor.php:244 gis_data_editor.php:300 -#: gis_data_editor.php:373 js/messages.php:510 +#: gis_data_editor.php:218 gis_data_editor.php:245 gis_data_editor.php:301 +#: gis_data_editor.php:374 js/messages.php:511 msgid "X" msgstr "X" -#: gis_data_editor.php:220 gis_data_editor.php:248 gis_data_editor.php:304 -#: gis_data_editor.php:379 js/messages.php:511 +#: gis_data_editor.php:221 gis_data_editor.php:249 gis_data_editor.php:305 +#: gis_data_editor.php:380 js/messages.php:512 msgid "Y" msgstr "Y" -#: gis_data_editor.php:242 gis_data_editor.php:298 gis_data_editor.php:371 -#: js/messages.php:513 +#: gis_data_editor.php:243 gis_data_editor.php:299 gis_data_editor.php:372 +#: js/messages.php:514 #, php-format msgid "Point %d" msgstr "點 %d" -#: gis_data_editor.php:255 gis_data_editor.php:311 gis_data_editor.php:389 -#: js/messages.php:519 +#: gis_data_editor.php:256 gis_data_editor.php:312 gis_data_editor.php:390 +#: js/messages.php:520 msgid "Add a point" msgstr "新增一個點" -#: gis_data_editor.php:272 +#: gis_data_editor.php:273 #, php-format msgid "Linestring %d:" msgstr "一維折線 %d:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:276 gis_data_editor.php:353 msgid "Outer ring:" msgstr "外環:" -#: gis_data_editor.php:277 gis_data_editor.php:354 +#: gis_data_editor.php:278 gis_data_editor.php:355 #, php-format msgid "Inner ring %d:" msgstr "內環 %d:" -#: gis_data_editor.php:314 +#: gis_data_editor.php:315 msgid "Add a linestring" msgstr "新增一維折線" -#: gis_data_editor.php:315 gis_data_editor.php:394 js/messages.php:520 +#: gis_data_editor.php:316 gis_data_editor.php:395 js/messages.php:521 msgid "Add an inner ring" msgstr "新增內環" -#: gis_data_editor.php:336 +#: gis_data_editor.php:337 #, php-format msgid "Polygon %d:" msgstr "多邊形 %d:" -#: gis_data_editor.php:400 +#: gis_data_editor.php:401 msgid "Add a polygon" msgstr "新增多邊形" -#: gis_data_editor.php:406 +#: gis_data_editor.php:407 msgid "Add geometry" msgstr "新增幾何形" -#: gis_data_editor.php:412 js/messages.php:349 libraries/DbSearch.php:466 -#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:140 -#: libraries/display_change_password.lib.php:144 -#: libraries/display_export.lib.php:401 libraries/display_export.lib.php:407 +#: gis_data_editor.php:413 js/messages.php:349 libraries/DbSearch.php:455 +#: libraries/DisplayResults.php:1815 libraries/browse_foreigners.lib.php:137 +#: libraries/display_change_password.lib.php:148 +#: libraries/display_export.lib.php:402 libraries/display_export.lib.php:408 #: libraries/display_import.lib.php:399 libraries/index.lib.php:34 -#: libraries/insert_edit.lib.php:1617 libraries/insert_edit.lib.php:1654 +#: libraries/insert_edit.lib.php:1618 libraries/insert_edit.lib.php:1655 #: libraries/normalization.lib.php:163 libraries/normalization.lib.php:820 #: libraries/operations.lib.php:43 libraries/operations.lib.php:108 #: libraries/operations.lib.php:258 libraries/operations.lib.php:300 #: libraries/operations.lib.php:797 libraries/operations.lib.php:867 -#: libraries/operations.lib.php:916 libraries/operations.lib.php:1326 -#: libraries/operations.lib.php:1647 +#: libraries/operations.lib.php:912 libraries/operations.lib.php:1318 +#: libraries/operations.lib.php:1631 #: libraries/plugins/auth/AuthenticationCookie.php:211 -#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:160 -#: libraries/replication_gui.lib.php:325 libraries/replication_gui.lib.php:462 -#: libraries/replication_gui.lib.php:890 libraries/rte/rte_events.lib.php:513 -#: libraries/rte/rte_routines.lib.php:1074 +#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:161 +#: libraries/replication_gui.lib.php:326 libraries/replication_gui.lib.php:463 +#: libraries/replication_gui.lib.php:885 libraries/rte/rte_events.lib.php:515 +#: libraries/rte/rte_routines.lib.php:1075 #: libraries/rte/rte_routines.lib.php:1700 -#: libraries/rte/rte_triggers.lib.php:399 -#: libraries/server_privileges.lib.php:707 -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:3202 -#: libraries/server_privileges.lib.php:3839 -#: libraries/server_user_groups.lib.php:288 +#: libraries/rte/rte_triggers.lib.php:400 +#: libraries/server_privileges.lib.php:692 +#: libraries/server_privileges.lib.php:2194 +#: libraries/server_privileges.lib.php:3076 +#: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:373 libraries/sql_query_form.lib.php:435 -#: libraries/tracking.lib.php:549 libraries/tracking.lib.php:669 -#: prefs_manage.php:296 prefs_manage.php:379 server_privileges.php:305 +#: libraries/tracking.lib.php:542 libraries/tracking.lib.php:662 +#: prefs_manage.php:285 prefs_manage.php:368 server_privileges.php:307 #: templates/columns_definitions/column_definitions_form.phtml:69 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 +#: templates/privileges/delete_user_fieldset.phtml:16 #: templates/privileges/edit_routine_privileges.phtml:23 -#: templates/privileges/privileges_summary.phtml:66 +#: templates/privileges/privileges_summary.phtml:63 #: templates/server/binlog/log_selector.phtml:25 #: templates/startAndNumberOfRowsPanel.phtml:14 -#: templates/table/index_form.phtml:243 +#: templates/table/index_form.phtml:241 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:300 #: view_operations.php:121 msgid "Go" msgstr "執行" -#: gis_data_editor.php:415 +#: gis_data_editor.php:416 msgid "Output" msgstr "輸出" -#: gis_data_editor.php:418 +#: gis_data_editor.php:419 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" "從 \"函數\" 的欄位中選擇 \"GeomFromText\",然後將下方的字串貼到 \"值\" 欄位。" -#: import.php:63 +#: import.php:64 msgid "Succeeded" msgstr "已成功" -#: import.php:67 js/messages.php:606 +#: import.php:68 js/messages.php:607 msgid "Failed" msgstr "已失敗" -#: import.php:71 +#: import.php:72 msgid "Incomplete params" msgstr "參數不完整" -#: import.php:195 +#: import.php:196 #, 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 "您上傳的檔案過大,請參考 %s說明文件%s 了解如何解決此問題。" -#: import.php:377 import.php:580 +#: import.php:376 import.php:577 msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:394 import.php:576 +#: import.php:392 import.php:573 msgid "The bookmark has been deleted." msgstr "書籤已被刪除。" -#: import.php:489 +#: import.php:486 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 " @@ -548,22 +548,22 @@ msgstr "" "沒有接收到要匯入的資料。 可能是檔案名稱沒有被送出或是檔案大小超出 PHP 限制。 " "請參考 [doc@faq1-16]FAQ 1.16[/doc]。" -#: import.php:541 libraries/display_import.lib.php:665 +#: import.php:538 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" msgstr "無法載入匯入外掛程式,請檢查您的安裝!" -#: import.php:583 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 +#: import.php:580 libraries/sql.lib.php:788 libraries/sql.lib.php:1564 #, php-format msgid "Bookmark %s has been created." msgstr "已建立書籤 %s。" -#: import.php:593 +#: import.php:590 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "匯入成功完成,共執行了 %d 個查詢指令。" -#: import.php:622 +#: import.php:619 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -572,7 +572,7 @@ msgstr "" "Script 執行已逾時,若要繼續完成匯入,請%s重新上傳原來的檔案%s,匯入動作會繼續" "執行。" -#: import.php:632 +#: import.php:629 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." @@ -580,7 +580,7 @@ msgstr "" "最近一次執行的匯入沒有資料可以解析,通常是 phpMyAdmin 無法在時間內完成匯入的" "動作,您可增加 PHP 執行時間的限制。" -#: import.php:703 sql.php:163 +#: import.php:700 sql.php:163 msgid "\"DROP DATABASE\" statements are disabled." msgstr "刪除資料庫 \"DROP DATABASE\" 指令已經被停用。" @@ -588,17 +588,17 @@ msgstr "刪除資料庫 \"DROP DATABASE\" 指令已經被停用。" msgid "Could not load the progress of the import." msgstr "無法讀取匯入的進度。" -#: import_status.php:114 js/messages.php:450 js/messages.php:614 -#: libraries/Util.php:729 libraries/export.lib.php:520 -#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:297 +#: import_status.php:114 js/messages.php:451 js/messages.php:615 +#: libraries/Util.php:689 libraries/export.lib.php:518 +#: libraries/plugins/schema/ExportRelationSchema.php:298 user_password.php:299 msgid "Back" msgstr "返回" -#: index.php:152 libraries/Footer.php:70 +#: index.php:153 libraries/Footer.php:68 msgid "phpMyAdmin Demo Server" msgstr "phpMyAdmin 展示伺服器" -#: index.php:156 +#: index.php:157 #, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " @@ -608,107 +608,107 @@ msgstr "" "您正在使用展示主機,您可以在此做任何事情,但請勿更改 root、debian-sys-maint " "及 pma 使用者。這兒有更多的資訊 %s。" -#: index.php:166 +#: index.php:167 msgid "General settings" msgstr "一般設定" -#: index.php:196 js/messages.php:639 +#: index.php:197 js/messages.php:640 #: libraries/display_change_password.lib.php:47 -#: libraries/display_change_password.lib.php:50 user_password.php:291 +#: libraries/display_change_password.lib.php:50 user_password.php:293 msgid "Change password" msgstr "修改密碼" -#: index.php:213 +#: index.php:214 msgid "Server connection collation" msgstr "伺服器連線編碼與排序" -#: index.php:234 +#: index.php:235 msgid "Appearance settings" msgstr "外觀設定" -#: index.php:266 prefs_manage.php:304 +#: index.php:267 prefs_manage.php:293 msgid "More settings" msgstr "更多設定" -#: index.php:288 +#: index.php:289 msgid "Database server" msgstr "資料庫伺服器" -#: index.php:291 libraries/plugins/auth/AuthenticationCookie.php:157 +#: index.php:292 libraries/plugins/auth/AuthenticationCookie.php:157 msgid "Server:" msgstr "伺服器:" -#: index.php:295 +#: index.php:296 msgid "Server type:" msgstr "伺服器類別:" -#: index.php:299 libraries/plugins/export/ExportLatex.php:220 +#: index.php:300 libraries/plugins/export/ExportLatex.php:220 #: libraries/plugins/export/ExportSql.php:701 #: libraries/plugins/export/ExportXml.php:242 msgid "Server version:" msgstr "伺服器版本:" -#: index.php:305 +#: index.php:306 msgid "Protocol version:" msgstr "協定版本:" -#: index.php:309 +#: index.php:310 msgid "User:" msgstr "使用者:" -#: index.php:314 +#: index.php:315 msgid "Server charset:" msgstr "伺服器字元集:" -#: index.php:327 +#: index.php:328 msgid "Web server" msgstr "網頁伺服器" -#: index.php:338 +#: index.php:339 msgid "Database client version:" msgstr "資料庫用戶端版本:" -#: index.php:342 +#: index.php:343 msgid "PHP extension:" msgstr "PHP 擴充套件:" -#: index.php:356 +#: index.php:357 msgid "PHP version:" msgstr "PHP 版本:" -#: index.php:377 +#: index.php:378 msgid "Version information:" msgstr "版本資訊:" -#: index.php:386 libraries/Sanitize.php:189 libraries/Util.php:376 -#: libraries/Util.php:443 libraries/config/FormDisplay.tpl.php:165 -#: libraries/display_export.lib.php:576 libraries/engines/Pbxt.php:166 +#: index.php:387 libraries/Sanitize.php:189 libraries/Util.php:336 +#: libraries/Util.php:403 libraries/config/FormDisplay.tpl.php:165 +#: libraries/display_export.lib.php:577 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:200 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "說明文件" -#: index.php:395 +#: index.php:396 msgid "Official Homepage" msgstr "官方首頁" -#: index.php:402 +#: index.php:403 msgid "Contribute" msgstr "貢獻" -#: index.php:409 +#: index.php:410 msgid "Get support" msgstr "技術支援" -#: index.php:416 +#: index.php:417 msgid "List of changes" msgstr "版本沿革" -#: index.php:423 templates/server/plugins/section.phtml:12 +#: index.php:424 templates/server/plugins/section.phtml:12 msgid "License" msgstr "授權" -#: index.php:443 +#: index.php:444 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 " @@ -718,7 +718,7 @@ msgstr "" "有 mbstring 擴充套件 phpMyAdmin 將無法正確分割字串,這可能造成意料之外的錯" "誤。" -#: index.php:458 +#: index.php:459 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." @@ -726,7 +726,7 @@ msgstr "" "找不到 curl 擴充功能且 allow_url_fopen 已停用,故像是錯誤回報與版本檢查等功能" "將無法使用。" -#: index.php:473 +#: index.php:474 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 " @@ -738,7 +738,7 @@ msgstr "" "a] 所設定的時間短於您在 phpMyAdmin 中設定的 Cookies 有效期間,因此您的登入連" "線有效期間可能比您在 phpMyAdmin 中設定的時間要更短。" -#: index.php:492 +#: index.php:493 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -746,15 +746,15 @@ msgstr "" "phpMyAdmin 中所設定的登入 cookie 儲存時間小於 cookie 有效期間,因此您的登入連" "線有效期間將會比您在 phpMyAdmin 中設定的時間要更短。" -#: index.php:507 +#: index.php:508 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "設定檔案需要設定一組加密密碼 (blowfish_secret)。" -#: index.php:514 +#: index.php:515 msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "設定的秘密密鑰(blowfish_secret)過短。" -#: index.php:528 +#: index.php:529 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 " @@ -765,7 +765,7 @@ msgstr "" "完成之後移除該資料夾,否則會有未經授權的人下載你的設定檔而對伺服器安全性造成" "威脅。" -#: index.php:544 +#: index.php:545 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -773,12 +773,12 @@ msgid "" msgstr "" "尚未設定 phpMyAdmin 設定儲存空間,部份延伸功能將無法使用。 %s了解原因%s。 " -#: index.php:551 +#: index.php:552 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "或者前往任一個資料庫的 '操作' 頁籤設定。" -#: index.php:590 +#: index.php:591 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -787,7 +787,7 @@ msgstr "" "您的 PHP MySQL 函式庫版本 %s 與您的 MySQL 伺服器版本 %s 不同,這可能造成一些" "無法預期的問題。" -#: index.php:618 +#: index.php:619 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -945,7 +945,7 @@ msgid "Save & close" msgstr "儲存並關閉" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:426 -#: libraries/insert_edit.lib.php:1621 prefs_manage.php:385 prefs_manage.php:396 +#: libraries/insert_edit.lib.php:1622 prefs_manage.php:374 prefs_manage.php:385 msgid "Reset" msgstr "重新設定" @@ -977,7 +977,7 @@ msgstr "新增索引" msgid "Edit index" msgstr "編輯索引" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:122 templates/table/index_form.phtml:235 #, php-format msgid "Add %s column(s) to index" msgstr "增加 %s 個欄位至索引" @@ -1002,10 +1002,10 @@ msgstr "請選擇要建立索引的欄位。" msgid "You have to add at least one column." msgstr "至少要增加一個欄位。" -#: js/messages.php:132 libraries/insert_edit.lib.php:1619 +#: js/messages.php:132 libraries/insert_edit.lib.php:1620 #: templates/columns_definitions/column_definitions_form.phtml:163 -#: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:135 +#: templates/table/index_form.phtml:240 +#: templates/table/relation/common_form.phtml:131 msgid "Preview SQL" msgstr "預覽 SQL" @@ -1017,7 +1017,7 @@ msgstr "模擬查詢" msgid "Matched rows:" msgstr "符合條件的列數:" -#: js/messages.php:137 libraries/Util.php:630 +#: js/messages.php:137 libraries/Util.php:590 msgid "SQL query:" msgstr "SQL 查詢:" @@ -1034,13 +1034,13 @@ msgstr "您尚未填寫主機名稱!" msgid "The user name is empty!" msgstr "您尚未填寫使用者帳號!" -#: js/messages.php:146 libraries/server_privileges.lib.php:1987 -#: user_password.php:117 +#: js/messages.php:146 libraries/server_privileges.lib.php:1868 +#: user_password.php:119 msgid "The password is empty!" msgstr "您尚未填寫密碼!" -#: js/messages.php:147 libraries/server_privileges.lib.php:1985 -#: user_password.php:121 +#: js/messages.php:147 libraries/server_privileges.lib.php:1866 +#: user_password.php:123 msgid "The passwords aren't the same!" msgstr "兩次輸入的密碼不一致!" @@ -1048,8 +1048,8 @@ msgstr "兩次輸入的密碼不一致!" msgid "Removing Selected Users" msgstr "正在刪除已選擇的使用者" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:474 -#: libraries/tracking.lib.php:844 +#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:467 +#: libraries/tracking.lib.php:830 msgid "Close" msgstr "關閉" @@ -1071,19 +1071,19 @@ msgstr "已刪除樣板。" #. l10n: Other, small valued, queries #: js/messages.php:158 libraries/ServerStatusData.php:132 -#: libraries/server_status_queries.lib.php:145 +#: libraries/server_status_queries.lib.php:140 msgid "Other" msgstr "其他" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1459 libraries/Util.php:1527 -#: libraries/Util.php:1541 +#: js/messages.php:160 libraries/Util.php:1419 libraries/Util.php:1487 +#: libraries/Util.php:1501 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1457 libraries/Util.php:1525 -#: libraries/Util.php:1539 +#: js/messages.php:162 libraries/Util.php:1417 libraries/Util.php:1485 +#: libraries/Util.php:1499 msgid "." msgstr "." @@ -1187,40 +1187,40 @@ msgid "Processes" msgstr "程序" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1370 +#: js/messages.php:202 libraries/Util.php:1330 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1372 +#: js/messages.php:203 libraries/Util.php:1332 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1374 -#: libraries/display_export.lib.php:841 +#: js/messages.php:204 libraries/Util.php:1334 +#: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1376 +#: js/messages.php:205 libraries/Util.php:1336 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1378 +#: js/messages.php:206 libraries/Util.php:1338 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1380 +#: js/messages.php:207 libraries/Util.php:1340 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1382 +#: js/messages.php:208 libraries/Util.php:1342 msgid "EiB" msgstr "EB" @@ -1238,7 +1238,7 @@ msgstr "查詢次數" msgid "Traffic" msgstr "流量" -#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4187 +#: js/messages.php:214 libraries/Menu.php:592 libraries/Util.php:4098 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "設定" @@ -1252,16 +1252,16 @@ msgid "Please add at least one variable to the series!" msgstr "請至少增加一個變數到資料序列!" #: js/messages.php:219 libraries/DisplayResults.php:1494 -#: libraries/config.values.php:69 libraries/display_export.lib.php:690 +#: libraries/config.values.php:69 libraries/display_export.lib.php:691 #: libraries/plugins/export/ExportSql.php:2185 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 -#: libraries/server_status_processes.lib.php:289 +#: libraries/server_status_processes.lib.php:285 #: templates/columns_definitions/transformation.phtml:4 #: templates/database/designer/options_panel.phtml:178 #: templates/privileges/privileges_summary.phtml:31 #: templates/table/search/options_zoom.phtml:12 -#: templates/table/search/rows_zoom.phtml:26 +#: templates/table/search/rows_zoom.phtml:24 msgid "None" msgstr "無" @@ -1448,20 +1448,20 @@ msgstr "分析中…" msgid "Explain output" msgstr "輸出說明" -#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4183 -#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:397 -#: libraries/rte/rte_list.lib.php:107 +#: js/messages.php:291 libraries/Menu.php:558 libraries/Util.php:4094 +#: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:399 +#: libraries/rte/rte_list.lib.php:108 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:286 -#: libraries/tracking.lib.php:1632 +#: libraries/tracking.lib.php:1598 msgid "Status" msgstr "狀態" -#: js/messages.php:292 js/messages.php:884 +#: js/messages.php:292 js/messages.php:892 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 #: libraries/plugins/export/PMA_ExportPdf.php:314 -#: libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:97 #: libraries/server_status_processes.lib.php:88 libraries/sql.lib.php:241 msgid "Time" msgstr "時間" @@ -1547,10 +1547,10 @@ msgid "" msgstr "無法使用匯入的設定檔建立圖表,將重設為預設的設定值…" #: js/messages.php:325 libraries/Menu.php:365 libraries/Menu.php:467 -#: libraries/Menu.php:588 libraries/Util.php:4186 libraries/Util.php:4201 -#: libraries/Util.php:4218 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:588 libraries/Util.php:4097 libraries/Util.php:4112 +#: libraries/Util.php:4129 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:107 -#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:257 +#: libraries/server_status_monitor.lib.php:313 prefs_manage.php:246 #: setup/frames/menu.inc.php:27 msgid "Import" msgstr "匯入" @@ -1623,7 +1623,7 @@ msgstr "查無參數!" msgid "Cancel" msgstr "取消" -#: js/messages.php:353 libraries/Header.php:459 +#: js/messages.php:353 libraries/Header.php:460 msgid "Page-related settings" msgstr "頁面相關設定" @@ -1663,8 +1663,8 @@ msgid "Error text: %s" msgstr "錯誤訊息: %s" #: js/messages.php:364 -#: libraries/controllers/server/ServerDatabasesController.php:191 -#: libraries/db_common.inc.php:66 libraries/db_table_exists.inc.php:31 +#: libraries/controllers/server/ServerDatabasesController.php:194 +#: libraries/db_common.inc.php:67 libraries/db_table_exists.inc.php:32 msgid "No databases selected." msgstr "尚未選擇任何資料庫。" @@ -1702,7 +1702,7 @@ msgstr "複製資料庫中" msgid "Changing charset" msgstr "更改字元編碼" -#: js/messages.php:377 libraries/Util.php:3166 +#: js/messages.php:377 libraries/Util.php:3077 msgid "Enable foreign key checks" msgstr "開啟外鍵(Foreign Key)檢查" @@ -1730,71 +1730,76 @@ msgstr "瀏覽" msgid "Deleting" msgstr "刪除" -#: js/messages.php:391 +#: js/messages.php:388 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "刪除 %s 資料表中符合的資料?" + +#: js/messages.php:392 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Stored Function 的定義中必須要有 RETURN 敘述句!" -#: js/messages.php:392 libraries/DisplayResults.php:4875 -#: libraries/DisplayResults.php:5158 libraries/Menu.php:357 -#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3570 -#: libraries/Util.php:3571 libraries/Util.php:4185 libraries/Util.php:4200 -#: libraries/Util.php:4217 libraries/config/messages.inc.php:255 -#: libraries/display_export.lib.php:170 libraries/rte/rte_list.lib.php:157 -#: libraries/server_privileges.lib.php:2487 -#: libraries/server_privileges.lib.php:2571 -#: libraries/server_privileges.lib.php:2920 -#: libraries/server_privileges.lib.php:3647 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:322 +#: js/messages.php:393 libraries/DisplayResults.php:4872 +#: libraries/DisplayResults.php:5155 libraries/Menu.php:357 +#: libraries/Menu.php:458 libraries/Menu.php:584 libraries/Util.php:3481 +#: libraries/Util.php:3482 libraries/Util.php:4096 libraries/Util.php:4111 +#: libraries/Util.php:4128 libraries/config/messages.inc.php:255 +#: libraries/display_export.lib.php:171 libraries/rte/rte_list.lib.php:160 +#: libraries/server_privileges.lib.php:2366 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2794 +#: libraries/server_privileges.lib.php:3521 +#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:311 #: setup/frames/menu.inc.php:28 #: templates/database/structure/check_all_tables.phtml:12 msgid "Export" msgstr "匯出" -#: js/messages.php:394 +#: js/messages.php:395 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -#: js/messages.php:397 libraries/rte/rte_routines.lib.php:756 +#: js/messages.php:398 libraries/rte/rte_routines.lib.php:755 msgid "ENUM/SET editor" msgstr "ENUM/SET 編輯器" -#: js/messages.php:398 +#: js/messages.php:399 #, php-format msgid "Values for column %s" msgstr "%s 欄位的值" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Values for a new column" msgstr "新欄位的值" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Enter each value in a separate field." msgstr "請分別將資料填入以下欄位。" -#: js/messages.php:401 +#: js/messages.php:402 #, php-format msgid "Add %d value(s)" msgstr "增加 %d 個值" -#: js/messages.php:405 +#: js/messages.php:406 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "備註:若檔案中包含多個資料表,它們會被結合成同一個資料表。" -#: js/messages.php:409 +#: js/messages.php:410 msgid "Hide query box" msgstr "隱藏查詢框" -#: js/messages.php:410 +#: js/messages.php:411 msgid "Show query box" msgstr "顯示查詢框" -#: js/messages.php:411 libraries/DisplayResults.php:3496 -#: libraries/DisplayResults.php:4859 libraries/Index.php:710 -#: libraries/Util.php:659 libraries/Util.php:1167 libraries/Util.php:3568 -#: libraries/Util.php:3569 libraries/central_columns.lib.php:850 -#: libraries/central_columns.lib.php:1198 libraries/config/messages.inc.php:889 -#: libraries/server_user_groups.lib.php:118 setup/frames/index.inc.php:195 +#: js/messages.php:412 libraries/DisplayResults.php:3493 +#: libraries/DisplayResults.php:4856 libraries/Index.php:709 +#: libraries/Util.php:619 libraries/Util.php:1127 libraries/Util.php:3479 +#: libraries/Util.php:3480 libraries/central_columns.lib.php:848 +#: libraries/central_columns.lib.php:1195 libraries/config/messages.inc.php:889 +#: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:183 #: templates/console/bookmark_content.phtml:17 #: templates/console/display.phtml:51 templates/console/display.phtml:213 #: templates/server/variables/variable_row.phtml:4 @@ -1802,53 +1807,53 @@ msgstr "顯示查詢框" msgid "Edit" msgstr "編輯" -#: js/messages.php:412 libraries/DbSearch.php:364 -#: libraries/DisplayResults.php:3565 libraries/DisplayResults.php:4843 -#: libraries/central_columns.lib.php:852 libraries/central_columns.lib.php:1202 -#: libraries/display_export.lib.php:225 -#: libraries/server_user_groups.lib.php:128 -#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:493 -#: setup/frames/index.inc.php:199 setup/frames/index.inc.php:306 +#: js/messages.php:413 libraries/DbSearch.php:353 +#: libraries/DisplayResults.php:3562 libraries/DisplayResults.php:4840 +#: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1199 +#: libraries/display_export.lib.php:226 +#: libraries/server_user_groups.lib.php:127 +#: libraries/sql_query_form.lib.php:422 libraries/tracking.lib.php:486 +#: setup/frames/index.inc.php:187 setup/frames/index.inc.php:294 #: templates/console/bookmark_content.phtml:18 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "刪除" -#: js/messages.php:413 libraries/DisplayResults.php:929 +#: js/messages.php:414 libraries/DisplayResults.php:929 #: libraries/DisplayResults.php:937 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效的資料列號。" -#: js/messages.php:414 +#: js/messages.php:415 #: libraries/controllers/table/TableSearchController.php:357 #: libraries/controllers/table/TableSearchController.php:844 #: libraries/sql.lib.php:195 tbl_change.php:151 msgid "Browse foreign values" msgstr "瀏覽關聯的值" -#: js/messages.php:415 +#: js/messages.php:416 msgid "No auto-saved query" msgstr "無自動儲存的查詢" -#: js/messages.php:416 +#: js/messages.php:417 #, php-format msgid "Variable %d:" msgstr "變數 %d:" -#: js/messages.php:419 libraries/normalization.lib.php:884 +#: js/messages.php:420 libraries/normalization.lib.php:884 msgid "Pick" msgstr "選取" -#: js/messages.php:420 +#: js/messages.php:421 msgid "Column selector" msgstr "欄位選擇器" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Search this list" msgstr "搜尋此清單" -#: js/messages.php:423 +#: js/messages.php:424 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1857,373 +1862,373 @@ msgstr "" "無欄位於中央清單。請確定資料庫 %s 的中央欄位清單中的欄位不存在於目前的資料" "表。" -#: js/messages.php:426 +#: js/messages.php:427 msgid "See more" msgstr "查看更多資訊" -#: js/messages.php:427 +#: js/messages.php:428 msgid "Are you sure?" msgstr "您確定?" -#: js/messages.php:429 +#: js/messages.php:430 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "此動作可能會變更部份欄位的定義。
您是否確定要繼續執行?" -#: js/messages.php:432 +#: js/messages.php:433 msgid "Continue" msgstr "繼續" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Add primary key" msgstr "新增主鍵" -#: js/messages.php:436 +#: js/messages.php:437 msgid "Primary key added." msgstr "已新增主鍵(Primary key)。" -#: js/messages.php:437 libraries/normalization.lib.php:189 +#: js/messages.php:438 libraries/normalization.lib.php:189 msgid "Taking you to next step…" msgstr "帶您至下一步驟 …" -#: js/messages.php:439 +#: js/messages.php:440 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "表格 '%s' 正規化的第一步驟已經完成。" -#: js/messages.php:440 libraries/normalization.lib.php:450 +#: js/messages.php:441 libraries/normalization.lib.php:450 #: libraries/normalization.lib.php:497 libraries/normalization.lib.php:582 #: libraries/normalization.lib.php:642 msgid "End of step" msgstr "結束步驟" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Second step of normalization (2NF)" msgstr "第二正規化 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:442 js/messages.php:753 libraries/normalization.lib.php:286 +#: js/messages.php:443 js/messages.php:761 libraries/normalization.lib.php:286 msgid "Done" msgstr "完成" -#: js/messages.php:443 +#: js/messages.php:444 msgid "Confirm partial dependencies" msgstr "確認部份相依" -#: js/messages.php:444 +#: js/messages.php:445 msgid "Selected partial dependencies are as follows:" msgstr "己選擇部份相依如下:" -#: js/messages.php:446 +#: js/messages.php:447 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 "" "注意:a, b -> d,f 代表 a 與 b 的欄位值合併後可以決定欄位 d 與欄位 f 的值。" -#: js/messages.php:449 +#: js/messages.php:450 msgid "No partial dependencies selected!" msgstr "尚未選擇部份相依!" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Show me the possible partial dependencies based on data in the table" msgstr "根據資料表中的資料顯示可能的部份相依" -#: js/messages.php:453 +#: js/messages.php:454 msgid "Hide partial dependencies list" msgstr "隱藏部份相依清單" -#: js/messages.php:455 +#: js/messages.php:456 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "稍坐一下!這可能要花一些時間,實際時間將取決於您的資料大小以及資料量。" -#: js/messages.php:458 +#: js/messages.php:459 msgid "Step" msgstr "步驟" -#: js/messages.php:460 +#: js/messages.php:461 msgid "The following actions will be performed:" msgstr "將會執行以下動作:" -#: js/messages.php:461 +#: js/messages.php:462 #, php-format msgid "DROP columns %s from the table %s" msgstr "從資料表 %s 移除(DROP)欄位 %s" -#: js/messages.php:462 +#: js/messages.php:463 msgid "Create the following table" msgstr "建立下列資料表" -#: js/messages.php:465 +#: js/messages.php:466 msgid "Third step of normalization (3NF)" msgstr "第三正規化 (3NF)" -#: js/messages.php:466 +#: js/messages.php:467 msgid "Confirm transitive dependencies" msgstr "確認遞移相依" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Selected dependencies are as follows:" msgstr "己選擇的相依如下:" -#: js/messages.php:468 +#: js/messages.php:469 msgid "No dependencies selected!" msgstr "尚未選擇任何相依!" -#: js/messages.php:471 libraries/central_columns.lib.php:1218 -#: libraries/insert_edit.lib.php:1529 setup/frames/config.inc.php:43 -#: setup/frames/index.inc.php:294 +#: js/messages.php:472 libraries/central_columns.lib.php:1215 +#: libraries/insert_edit.lib.php:1530 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:282 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:136 +#: templates/table/relation/common_form.phtml:132 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "儲存" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Hide search criteria" msgstr "隱藏搜尋條件" -#: js/messages.php:475 +#: js/messages.php:476 msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:476 +#: js/messages.php:477 msgid "Range search" msgstr "範圍搜尋" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Column maximum:" msgstr "欄位最大值:" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Column minimum:" msgstr "欄位最小值:" -#: js/messages.php:479 +#: js/messages.php:480 msgid "Minimum value:" msgstr "最小值:" -#: js/messages.php:480 +#: js/messages.php:481 msgid "Maximum value:" msgstr "最大值:" -#: js/messages.php:483 +#: js/messages.php:484 msgid "Hide find and replace criteria" msgstr "隱藏搜尋與取代條件" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Show find and replace criteria" msgstr "顯示尋找並替換條件" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Each point represents a data row." msgstr "每一個點代表一筆資料。" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Hovering over a point will show its label." msgstr "將滑鼠指到資料點上可以顯示其標籤。" -#: js/messages.php:492 +#: js/messages.php:493 msgid "To zoom in, select a section of the plot with the mouse." msgstr "放大,請使用滑鼠選擇一個區域。" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Click reset zoom button to come back to original state." msgstr "點選「重設縮放大小」按鈕可以回到原始大小。" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Click a data point to view and possibly edit the data row." msgstr "點選資料點以瀏覽或修改該筆資料。" -#: js/messages.php:498 +#: js/messages.php:499 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "此圖表可拖曳右下角邊框進行縮放。" -#: js/messages.php:501 +#: js/messages.php:502 msgid "Select two columns" msgstr "請選擇兩個欄位" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Select two different columns" msgstr "請選擇兩個不同的欄位" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Data point content" msgstr "資料點內容" -#: js/messages.php:508 js/messages.php:674 js/messages.php:691 -#: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 -#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 +#: js/messages.php:509 js/messages.php:675 js/messages.php:692 +#: libraries/ErrorHandler.php:366 libraries/insert_edit.lib.php:2647 +#: templates/table/index_form.phtml:154 templates/table/index_form.phtml:198 msgid "Ignore" msgstr "略過" -#: js/messages.php:509 libraries/DisplayResults.php:3499 -#: libraries/DisplayResults.php:4864 +#: js/messages.php:510 libraries/DisplayResults.php:3496 +#: libraries/DisplayResults.php:4861 msgid "Copy" msgstr "複製" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Point" msgstr "點" -#: js/messages.php:514 +#: js/messages.php:515 msgid "Linestring" msgstr "一維折線" -#: js/messages.php:515 +#: js/messages.php:516 msgid "Polygon" msgstr "多邊形" -#: js/messages.php:516 libraries/DisplayResults.php:1799 +#: js/messages.php:517 libraries/DisplayResults.php:1799 msgid "Geometry" msgstr "幾何形" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Inner ring" msgstr "內環" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Outer ring" msgstr "外環" -#: js/messages.php:522 +#: js/messages.php:523 msgid "Do you want to copy encryption key?" msgstr "您是否要複製加密金鑰?" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Encryption key" msgstr "加密金鑰" -#: js/messages.php:527 +#: js/messages.php:528 msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "MySQL" -#: js/messages.php:539 +#: js/messages.php:540 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "代表您已對此頁做了變更,在您放棄這些變更前會先提示您" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Select referenced key" msgstr "請選擇參考鍵(Reference Key)" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Select Foreign Key" msgstr "請選擇外鍵(Foreign Key)" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Please select the primary key or a unique key!" msgstr "請選擇主鍵(Primary Key)或唯一鍵(Unique Key)!" -#: js/messages.php:548 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "請選擇要顯示的欄位" -#: js/messages.php:550 +#: js/messages.php:551 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 "你尚未儲存修改的資料,請確認是否要捨棄這些資料?" -#: js/messages.php:553 +#: js/messages.php:554 msgid "Page name" msgstr "頁面名稱" -#: js/messages.php:554 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:555 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "儲存頁面" -#: js/messages.php:555 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:556 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "儲存頁面為" -#: js/messages.php:556 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:557 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "開啟頁面" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Delete page" msgstr "刪除頁面" -#: js/messages.php:558 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:559 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "未命名" -#: js/messages.php:559 +#: js/messages.php:560 msgid "Please select a page to continue" msgstr "請選擇頁面以繼續執行" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Please enter a valid page name" msgstr "請輸入一個有效的頁面名稱" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Do you want to save the changes to the current page?" msgstr "您是否要儲存變更至目前頁面?" -#: js/messages.php:563 +#: js/messages.php:564 msgid "Successfully deleted the page" msgstr "已成功刪除頁面" -#: js/messages.php:564 +#: js/messages.php:565 msgid "Export relational schema" msgstr "匯出關聯式網要" -#: js/messages.php:565 +#: js/messages.php:566 msgid "Modifications have been saved" msgstr "已儲存修改" -#: js/messages.php:568 +#: js/messages.php:569 #, php-format msgid "Add an option for column \"%s\"." msgstr "新增欄位 \"%s\" 的選項。" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "%d object(s) created." msgstr "已建立 %d 個物件。" -#: js/messages.php:570 libraries/sql_query_form.lib.php:414 +#: js/messages.php:571 libraries/sql_query_form.lib.php:414 msgid "Submit" msgstr "送出" -#: js/messages.php:573 +#: js/messages.php:574 msgid "Press escape to cancel editing." msgstr "按下 ESC 取消編輯。" -#: js/messages.php:575 +#: js/messages.php:576 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 "有一些修改的資料尚未儲存,你確定要不儲存直接離開本頁?" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Drag to reorder." msgstr "使用拖曳來重新排序。" -#: js/messages.php:579 +#: js/messages.php:580 msgid "Click to sort results by this column." msgstr "使用本欄位進行資料排序。" -#: js/messages.php:581 +#: js/messages.php:582 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 " @@ -2233,26 +2238,26 @@ msgstr "" "鼠點選 或 Alt+滑鼠點選 (Mac: Shift+Option+滑鼠點選) 來從 ORDER BY 子句中移除" "欄位" -#: js/messages.php:585 +#: js/messages.php:586 msgid "Click to mark/unmark." msgstr "點此標記或取消標記。" -#: js/messages.php:586 +#: js/messages.php:587 msgid "Double-click to copy column name." msgstr "雙擊點選以複製欄位名稱。" -#: js/messages.php:588 +#: js/messages.php:589 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "點選下拉箭頭
以切換欄位的顯示程度。" -#: js/messages.php:590 libraries/DisplayResults.php:1036 -#: libraries/browse_foreigners.lib.php:288 -#: libraries/browse_foreigners.lib.php:341 -#: libraries/server_privileges.lib.php:3907 +#: js/messages.php:591 libraries/DisplayResults.php:1036 +#: libraries/browse_foreigners.lib.php:283 +#: libraries/browse_foreigners.lib.php:336 +#: templates/privileges/initials_row.phtml:24 msgid "Show all" msgstr "全部顯示" -#: js/messages.php:592 +#: js/messages.php:593 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." @@ -2260,109 +2265,109 @@ msgstr "" "此資料表沒有唯一欄位用來辦示資料。 有關資料表修改、複製、刪除的功能可能會無法" "儲存。" -#: js/messages.php:596 +#: js/messages.php:597 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "請輸入一個有效的十六進位字串。有效的字元為 0-9, A-F。" -#: js/messages.php:598 +#: js/messages.php:599 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您確定要顯示所有資料列?使用在大型的資料表可能會造成瀏覽器當機。" -#: js/messages.php:601 +#: js/messages.php:602 msgid "Original length" msgstr "原始長度" -#: js/messages.php:604 +#: js/messages.php:605 msgid "cancel" msgstr "取消" -#: js/messages.php:605 libraries/server_status.lib.php:277 +#: js/messages.php:606 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "中斷連線" -#: js/messages.php:607 +#: js/messages.php:608 msgid "Success" msgstr "成功" -#: js/messages.php:608 +#: js/messages.php:609 msgid "Import status" msgstr "匯入狀態" -#: js/messages.php:609 libraries/navigation/Navigation.php:112 +#: js/messages.php:610 libraries/navigation/Navigation.php:112 msgid "Drop files here" msgstr "將檔案拖曳至此處" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Select database first" msgstr "請先選擇資料庫" -#: js/messages.php:613 libraries/DisplayResults.php:5050 -#: libraries/Util.php:4078 +#: js/messages.php:614 libraries/DisplayResults.php:5047 +#: libraries/Util.php:3989 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "列印" -#: js/messages.php:620 +#: js/messages.php:621 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以點兩下以選表格內容
直接做編輯修改。" -#: js/messages.php:625 +#: js/messages.php:626 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接點選數值
以進行編輯修改。" -#: js/messages.php:631 +#: js/messages.php:632 msgid "Go to link:" msgstr "前往此連結:" -#: js/messages.php:632 +#: js/messages.php:633 msgid "Copy column name." msgstr "複製欄位名稱。" -#: js/messages.php:634 +#: js/messages.php:635 msgid "Right-click the column name to copy it to your clipboard." msgstr "點選右鍵將欄位名稱複製到您的剪貼簿。" -#: js/messages.php:637 +#: js/messages.php:638 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:638 libraries/replication_gui.lib.php:882 +#: js/messages.php:639 libraries/replication_gui.lib.php:877 msgid "Generate" msgstr "產生" -#: js/messages.php:642 +#: js/messages.php:643 msgid "More" msgstr "更多" -#: js/messages.php:645 +#: js/messages.php:646 msgid "Show panel" msgstr "顯示面板" -#: js/messages.php:646 +#: js/messages.php:647 msgid "Hide panel" msgstr "隱藏面板" -#: js/messages.php:647 +#: js/messages.php:648 msgid "Show hidden navigation tree items." msgstr "顯示隱藏的導覽樹項目。" -#: js/messages.php:648 libraries/config/messages.inc.php:479 -#: libraries/navigation/NavigationTree.php:1422 +#: js/messages.php:649 libraries/config/messages.inc.php:479 +#: libraries/navigation/NavigationTree.php:1423 msgid "Link with main panel" msgstr "連結主面板" -#: js/messages.php:649 libraries/navigation/NavigationTree.php:1425 +#: js/messages.php:650 libraries/navigation/NavigationTree.php:1426 msgid "Unlink from main panel" msgstr "取消連結主面板" -#: js/messages.php:653 +#: js/messages.php:654 msgid "The requested page was not found in the history, it may have expired." msgstr "已無歷史記錄頁面或頁面已經逾期。" -#: js/messages.php:657 setup/lib/index.lib.php:170 +#: js/messages.php:658 setup/lib/index.lib.php:165 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2371,47 +2376,47 @@ msgstr "" "新的 phpMyAdmin 已經發佈,請考慮升級至最新的版本(版本 %s,於 %s 發佈)。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:661 +#: js/messages.php:662 msgid ", latest stable version:" msgstr ",最新的穩定版:" -#: js/messages.php:662 +#: js/messages.php:663 msgid "up to date" msgstr "最新" -#: js/messages.php:664 libraries/DisplayResults.php:4981 view_create.php:206 +#: js/messages.php:665 libraries/DisplayResults.php:4978 view_create.php:206 msgid "Create view" msgstr "新增檢視表" -#: js/messages.php:667 +#: js/messages.php:668 msgid "Send error report" msgstr "傳送錯誤報告" -#: js/messages.php:668 +#: js/messages.php:669 msgid "Submit error report" msgstr "送出錯誤報告" -#: js/messages.php:670 +#: js/messages.php:671 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "發生 JavaScript 嚴重錯誤,您是否要回報錯誤報告?" -#: js/messages.php:672 +#: js/messages.php:673 msgid "Change report settings" msgstr "更改報告設定" -#: js/messages.php:673 +#: js/messages.php:674 msgid "Show report details" msgstr "顯示報告詳細資訊" -#: js/messages.php:676 +#: js/messages.php:677 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "因 PHP 執行期時間限制太短,您的資料未完成匯出動作!" -#: js/messages.php:680 +#: js/messages.php:681 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2420,58 +2425,58 @@ msgstr "" "警告: 此頁面中的表單超過 %d 個欄位,因超出 PHP 中 max_input_vars 設定值的限" "制,在送出時可能會忽略部份欄位。" -#: js/messages.php:686 js/messages.php:699 +#: js/messages.php:687 js/messages.php:700 msgid "Some errors have been detected on the server!" msgstr "已偵測到伺服器上發生部份錯誤!" -#: js/messages.php:688 +#: js/messages.php:689 msgid "Please look at the bottom of this window." msgstr "請瀏覽此視窗的底部。" -#: js/messages.php:694 libraries/ErrorHandler.php:367 +#: js/messages.php:695 libraries/ErrorHandler.php:370 msgid "Ignore All" msgstr "全部略過" -#: js/messages.php:702 +#: js/messages.php:703 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "根據您的設定,它們正被提交,請耐心等候。" -#: js/messages.php:712 +#: js/messages.php:713 msgid "Execute this query again?" msgstr "再執行此查詢一次?" -#: js/messages.php:714 +#: js/messages.php:715 msgid "Do you really want to delete this bookmark?" msgstr "您真的要刪除此書籤?" -#: js/messages.php:716 +#: js/messages.php:717 msgid "Some error occurred while getting SQL debug info." msgstr "取得 SQL 除錯資訊時發生一些錯誤。" -#: js/messages.php:718 +#: js/messages.php:719 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s 筆查詢已執行 %s 次,使用 %s 秒。" -#: js/messages.php:719 +#: js/messages.php:720 #, php-format msgid "%s argument(s) passed" msgstr "已傳入 %s 個參數" -#: js/messages.php:720 +#: js/messages.php:721 msgid "Show arguments" msgstr "顯示參數" -#: js/messages.php:721 +#: js/messages.php:722 msgid "Hide arguments" msgstr "隱藏參數" -#: js/messages.php:722 +#: js/messages.php:723 msgid "Time taken:" msgstr "使用時間:" -#: js/messages.php:723 +#: js/messages.php:724 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2484,351 +2489,371 @@ msgstr "" "題,您可清空您的 \"離線網站資料\" 來解決。 在 Safari 通常是使用 \"隱私模式瀏" "覽\"。" -#: js/messages.php:725 +#: js/messages.php:726 msgid "Copy tables to" msgstr "複製資料表到" -#: js/messages.php:726 +#: js/messages.php:727 msgid "Add table prefix" msgstr "增加資料表字首" -#: js/messages.php:727 +#: js/messages.php:728 msgid "Replace table with prefix" msgstr "含字首取代資料表" -#: js/messages.php:728 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:729 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "含字首複製資料表" +#: js/messages.php:732 +msgid "Extremely weak" +msgstr "" + +#: js/messages.php:733 +msgid "Very weak" +msgstr "" + +#: js/messages.php:734 +msgid "Weak" +msgstr "" + +#: js/messages.php:735 +msgid "Good" +msgstr "" + +#: js/messages.php:736 +msgid "Strong" +msgstr "" + # 這應該是使用於選擇日期的月曆 -#: js/messages.php:757 +#: js/messages.php:765 msgctxt "Previous month" msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 -#: js/messages.php:762 +#: js/messages.php:770 msgctxt "Next month" msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:765 +#: js/messages.php:773 msgid "Today" msgstr "今天" -#: js/messages.php:769 +#: js/messages.php:777 msgid "January" msgstr "一月" -#: js/messages.php:770 +#: js/messages.php:778 msgid "February" msgstr "二月" -#: js/messages.php:771 +#: js/messages.php:779 msgid "March" msgstr "三月" -#: js/messages.php:772 +#: js/messages.php:780 msgid "April" msgstr "四月" -#: js/messages.php:773 +#: js/messages.php:781 msgid "May" msgstr "五月" -#: js/messages.php:774 +#: js/messages.php:782 msgid "June" msgstr "六月" -#: js/messages.php:775 +#: js/messages.php:783 msgid "July" msgstr "七月" -#: js/messages.php:776 +#: js/messages.php:784 msgid "August" msgstr "八月" -#: js/messages.php:777 +#: js/messages.php:785 msgid "September" msgstr "九月" -#: js/messages.php:778 +#: js/messages.php:786 msgid "October" msgstr "十月" -#: js/messages.php:779 +#: js/messages.php:787 msgid "November" msgstr "十一月" -#: js/messages.php:780 +#: js/messages.php:788 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1587 +#: js/messages.php:795 libraries/Util.php:1547 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1589 +#: js/messages.php:797 libraries/Util.php:1549 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1591 +#: js/messages.php:799 libraries/Util.php:1551 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1593 +#: js/messages.php:801 libraries/Util.php:1553 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1595 +#: js/messages.php:803 libraries/Util.php:1555 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:797 libraries/Util.php:1597 +#: js/messages.php:805 libraries/Util.php:1557 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:799 libraries/Util.php:1599 +#: js/messages.php:807 libraries/Util.php:1559 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:801 libraries/Util.php:1601 +#: js/messages.php:809 libraries/Util.php:1561 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:803 libraries/Util.php:1603 +#: js/messages.php:811 libraries/Util.php:1563 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:805 libraries/Util.php:1605 +#: js/messages.php:813 libraries/Util.php:1565 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:807 libraries/Util.php:1607 +#: js/messages.php:815 libraries/Util.php:1567 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:809 libraries/Util.php:1609 +#: js/messages.php:817 libraries/Util.php:1569 msgid "Dec" msgstr "十二月" -#: js/messages.php:815 +#: js/messages.php:823 msgid "Sunday" msgstr "星期日" -#: js/messages.php:816 +#: js/messages.php:824 msgid "Monday" msgstr "星期一" -#: js/messages.php:817 +#: js/messages.php:825 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:818 +#: js/messages.php:826 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:819 +#: js/messages.php:827 msgid "Thursday" msgstr "星期四" -#: js/messages.php:820 +#: js/messages.php:828 msgid "Friday" msgstr "星期五" -#: js/messages.php:821 +#: js/messages.php:829 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:828 +#: js/messages.php:836 msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:830 libraries/Util.php:1614 +#: js/messages.php:838 libraries/Util.php:1574 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:832 libraries/Util.php:1616 +#: js/messages.php:840 libraries/Util.php:1576 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:834 libraries/Util.php:1618 +#: js/messages.php:842 libraries/Util.php:1578 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:836 libraries/Util.php:1620 +#: js/messages.php:844 libraries/Util.php:1580 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:838 libraries/Util.php:1622 +#: js/messages.php:846 libraries/Util.php:1582 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:840 libraries/Util.php:1624 +#: js/messages.php:848 libraries/Util.php:1584 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:847 +#: js/messages.php:855 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:849 +#: js/messages.php:857 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:851 +#: js/messages.php:859 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:853 +#: js/messages.php:861 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:855 +#: js/messages.php:863 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:857 +#: js/messages.php:865 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:859 +#: js/messages.php:867 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:863 +#: js/messages.php:871 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:870 +#: js/messages.php:878 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:873 +#: js/messages.php:881 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:885 +#: js/messages.php:893 msgid "Hour" msgstr "時" -#: js/messages.php:886 +#: js/messages.php:894 msgid "Minute" msgstr "分" -#: js/messages.php:887 +#: js/messages.php:895 msgid "Second" msgstr "秒" -#: js/messages.php:898 +#: js/messages.php:906 msgid "This field is required" msgstr "此欄位為必填" -#: js/messages.php:899 +#: js/messages.php:907 msgid "Please fix this field" msgstr "請修正此欄位" -#: js/messages.php:900 +#: js/messages.php:908 msgid "Please enter a valid email address" msgstr "請輸入一個有效的電子郵件位址" -#: js/messages.php:901 +#: js/messages.php:909 msgid "Please enter a valid URL" msgstr "請輸入一個有效的 URL" -#: js/messages.php:902 +#: js/messages.php:910 msgid "Please enter a valid date" msgstr "請輸入一個有效的日期" -#: js/messages.php:905 +#: js/messages.php:913 msgid "Please enter a valid date ( ISO )" msgstr "請輸入一個有效的日期 ( ISO )" -#: js/messages.php:907 +#: js/messages.php:915 msgid "Please enter a valid number" msgstr "請輸入一個有效的數字" -#: js/messages.php:910 +#: js/messages.php:918 msgid "Please enter a valid credit card number" msgstr "請輸入一個有效的信用卡號" -#: js/messages.php:912 +#: js/messages.php:920 msgid "Please enter only digits" msgstr "請輸入數字" -#: js/messages.php:915 +#: js/messages.php:923 msgid "Please enter the same value again" msgstr "請再輸入一次" -#: js/messages.php:919 +#: js/messages.php:927 msgid "Please enter no more than {0} characters" msgstr "請輸入不超過 {0} 個字元" -#: js/messages.php:924 +#: js/messages.php:932 msgid "Please enter at least {0} characters" msgstr "請輸入不少於 {0} 個字元" -#: js/messages.php:929 +#: js/messages.php:937 msgid "Please enter a value between {0} and {1} characters long" msgstr "請輸入介於 {0} 與 {1} 個字元長度間的值" -#: js/messages.php:934 +#: js/messages.php:942 msgid "Please enter a value between {0} and {1}" msgstr "請輸入介於 {0} 與 {1} 間的值" -#: js/messages.php:939 +#: js/messages.php:947 msgid "Please enter a value less than or equal to {0}" msgstr "請輸入小於等於 {0} 的值" -#: js/messages.php:944 +#: js/messages.php:952 msgid "Please enter a value greater than or equal to {0}" msgstr "請輸入大於等於 {0} 的值" -#: js/messages.php:950 +#: js/messages.php:958 msgid "Please enter a valid date or time" msgstr "請輸入有效的日期或時間" -#: js/messages.php:955 +#: js/messages.php:963 msgid "Please enter a valid HEX input" msgstr "請輸入有效的 HEX 輸入值" -#: js/messages.php:960 libraries/Message.php:182 libraries/Util.php:606 -#: libraries/core.lib.php:237 libraries/import.lib.php:79 -#: libraries/insert_edit.lib.php:1234 view_operations.php:78 +#: js/messages.php:968 libraries/Message.php:190 libraries/Util.php:566 +#: libraries/core.lib.php:238 libraries/import.lib.php:80 +#: libraries/insert_edit.lib.php:1235 view_operations.php:78 msgid "Error" msgstr "錯誤" @@ -2889,20 +2914,20 @@ msgid "Charset" msgstr "字元編碼" #: libraries/Charsets.php:207 libraries/Index.php:688 -#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1387 -#: libraries/controllers/server/ServerDatabasesController.php:335 -#: libraries/operations.lib.php:288 libraries/operations.lib.php:1062 -#: libraries/tracking.lib.php:900 libraries/tracking.lib.php:998 +#: libraries/central_columns.lib.php:702 libraries/central_columns.lib.php:1384 +#: libraries/controllers/server/ServerDatabasesController.php:338 +#: libraries/operations.lib.php:288 libraries/operations.lib.php:1054 +#: libraries/tracking.lib.php:886 libraries/tracking.lib.php:977 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/server/collations/charsets.phtml:4 #: templates/table/search/table_header.phtml:8 -#: templates/table/structure/row_stats_table.phtml:31 +#: templates/table/structure/row_stats_table.phtml:30 #: templates/table/structure/table_structure_header.phtml:9 msgid "Collation" msgstr "編碼與排序" -#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:400 +#: libraries/Charsets.php:243 libraries/insert_edit.lib.php:402 msgid "Binary" msgstr "二進位" @@ -3097,7 +3122,7 @@ msgid "Czech-Slovak" msgstr "捷克斯洛伐克語" #: libraries/Charsets.php:456 libraries/Charsets.php:463 -#: libraries/controllers/database/DatabaseStructureController.php:983 +#: libraries/controllers/database/DatabaseStructureController.php:982 msgid "unknown" msgstr "未知" @@ -3141,49 +3166,49 @@ msgstr "此情況通常是有語法錯誤,請檢查下列顯示的錯誤。" msgid "Font size" msgstr "字體大小" -#: libraries/Console.php:88 +#: libraries/Console.php:86 #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "顯示 %1$d 書籤 (含私有與共用)" -#: libraries/Console.php:95 +#: libraries/Console.php:93 msgid "No bookmarks" msgstr "無書籤" -#: libraries/Console.php:130 +#: libraries/Console.php:128 msgid "SQL Query Console" msgstr "SQL 查詢主控台" -#: libraries/DatabaseInterface.php:1409 +#: libraries/DatabaseInterface.php:1410 msgid "Failed to set configured collation connection!" msgstr "設定編碼與排序連線失敗!" -#: libraries/DatabaseInterface.php:2021 +#: libraries/DatabaseInterface.php:2022 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "伺服器沒有回應(或者是伺服器的 socket 沒有被正確的設定)。" -#: libraries/DatabaseInterface.php:2026 +#: libraries/DatabaseInterface.php:2027 msgid "The server is not responding." msgstr "伺服器沒有回應。" -#: libraries/DatabaseInterface.php:2032 +#: libraries/DatabaseInterface.php:2033 msgid "Please check privileges of directory containing database." msgstr "請檢查資料庫所在的資料夾權限。" -#: libraries/DatabaseInterface.php:2043 +#: libraries/DatabaseInterface.php:2044 msgid "Details…" msgstr "詳細資訊…" -#: libraries/DatabaseInterface.php:2326 +#: libraries/DatabaseInterface.php:2327 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "未填寫必要的參數:" -#: libraries/DatabaseInterface.php:2350 +#: libraries/DatabaseInterface.php:2351 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用設定檔案中定義的控制使用者連線失敗。" @@ -3277,108 +3302,103 @@ msgstr "插入:" msgid "Del:" msgstr "刪除:" -#: libraries/DbQbe.php:1851 +#: libraries/DbQbe.php:1846 #, php-format msgid "SQL query on database %s:" msgstr "在資料庫 %s 執行 SQL 指令:" -#: libraries/DbQbe.php:1870 +#: libraries/DbQbe.php:1865 msgid "Submit Query" msgstr "送出查詢" -#: libraries/DbQbe.php:1884 +#: libraries/DbQbe.php:1879 msgid "Saved bookmarked search:" msgstr "已加為書籤的查詢:" -#: libraries/DbQbe.php:1886 +#: libraries/DbQbe.php:1881 msgid "New bookmark" msgstr "新增書籤" -#: libraries/DbQbe.php:1912 +#: libraries/DbQbe.php:1907 msgid "Create bookmark" msgstr "建立書籤" -#: libraries/DbQbe.php:1915 +#: libraries/DbQbe.php:1910 msgid "Update bookmark" msgstr "更新書籤" -#: libraries/DbQbe.php:1917 +#: libraries/DbQbe.php:1912 msgid "Delete bookmark" msgstr "刪除書籤" -#: libraries/DbSearch.php:99 libraries/DbSearch.php:403 +#: libraries/DbSearch.php:99 libraries/DbSearch.php:392 msgid "at least one of the words" msgstr "至少一個字句" -#: libraries/DbSearch.php:100 libraries/DbSearch.php:407 +#: libraries/DbSearch.php:100 libraries/DbSearch.php:396 msgid "all words" msgstr "所有字句" -#: libraries/DbSearch.php:101 libraries/DbSearch.php:411 +#: libraries/DbSearch.php:101 libraries/DbSearch.php:400 msgid "the exact phrase" msgstr "完全相同" -#: libraries/DbSearch.php:102 libraries/DbSearch.php:412 +#: libraries/DbSearch.php:102 libraries/DbSearch.php:401 msgid "as regular expression" msgstr "使用正則表示法(Regular Expression)" -#: libraries/DbSearch.php:269 +#: libraries/DbSearch.php:268 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" 的搜尋結果 %s:" -#: libraries/DbSearch.php:296 +#: libraries/DbSearch.php:293 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "總計: %s 筆資料符合條件" -#: libraries/DbSearch.php:333 +#: libraries/DbSearch.php:329 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 筆資料符合 %2$s" -#: libraries/DbSearch.php:353 libraries/Menu.php:324 libraries/Util.php:3271 -#: libraries/Util.php:3281 libraries/Util.php:3557 libraries/Util.php:3558 -#: libraries/Util.php:4212 libraries/config.values.php:43 +#: libraries/DbSearch.php:346 libraries/Menu.php:324 libraries/Util.php:3182 +#: libraries/Util.php:3192 libraries/Util.php:3468 libraries/Util.php:3469 +#: libraries/Util.php:4123 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:311 #: templates/table/structure/check_all_table_column.phtml:12 msgid "Browse" msgstr "瀏覽" -#: libraries/DbSearch.php:360 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "刪除 %s 資料表中符合的資料?" - -#: libraries/DbSearch.php:387 +#: libraries/DbSearch.php:376 msgid "Search in database" msgstr "搜尋資料庫" -#: libraries/DbSearch.php:391 +#: libraries/DbSearch.php:380 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要搜尋的文字或欄位值 (萬用字元: \"% \"):" -#: libraries/DbSearch.php:400 templates/table/search/search_and_replace.phtml:1 +#: libraries/DbSearch.php:389 templates/table/search/search_and_replace.phtml:1 msgid "Find:" msgstr "搜尋:" -#: libraries/DbSearch.php:405 libraries/DbSearch.php:409 +#: libraries/DbSearch.php:394 libraries/DbSearch.php:398 msgid "Words are separated by a space character (\" \")." msgstr "每個單詞用空格「 」分隔。" -#: libraries/DbSearch.php:424 +#: libraries/DbSearch.php:413 msgid "Inside tables:" msgstr "於下列資料表中:" -#: libraries/DbSearch.php:449 libraries/display_export.lib.php:50 -#: libraries/replication_gui.lib.php:380 +#: libraries/DbSearch.php:438 libraries/display_export.lib.php:51 +#: libraries/replication_gui.lib.php:381 msgid "Unselect all" msgstr "全部取消" -#: libraries/DbSearch.php:454 +#: libraries/DbSearch.php:443 msgid "Inside column:" msgstr "於下列欄位中:" @@ -3398,14 +3418,14 @@ msgstr "搜尋資料列" msgid "Search this table" msgstr "搜尋此資料表" -#: libraries/DisplayResults.php:993 libraries/Util.php:2538 -#: libraries/Util.php:2541 +#: libraries/DisplayResults.php:993 libraries/Util.php:2449 +#: libraries/Util.php:2452 msgctxt "First page" msgid "Begin" msgstr "最前頁" -#: libraries/DisplayResults.php:996 libraries/Util.php:2539 -#: libraries/Util.php:2542 +#: libraries/DisplayResults.php:996 libraries/Util.php:2450 +#: libraries/Util.php:2453 #: libraries/controllers/server/ServerBinlogController.php:194 #: libraries/controllers/server/ServerBinlogController.php:196 msgctxt "Previous page" @@ -3413,16 +3433,16 @@ msgid "Previous" msgstr "上一頁" # 這應該使用於選擇日期的小月曆 -#: libraries/DisplayResults.php:1062 libraries/Util.php:2570 -#: libraries/Util.php:2580 +#: libraries/DisplayResults.php:1062 libraries/Util.php:2481 +#: libraries/Util.php:2491 #: libraries/controllers/server/ServerBinlogController.php:228 #: libraries/controllers/server/ServerBinlogController.php:230 msgctxt "Next page" msgid "Next" msgstr "下一頁" -#: libraries/DisplayResults.php:1092 libraries/Util.php:2571 -#: libraries/Util.php:2581 +#: libraries/DisplayResults.php:1092 libraries/Util.php:2482 +#: libraries/Util.php:2492 msgctxt "Last page" msgid "End" msgstr "最末頁" @@ -3431,7 +3451,7 @@ msgstr "最末頁" msgid "All" msgstr "全部" -#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:436 +#: libraries/DisplayResults.php:1145 libraries/display_export.lib.php:437 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "資料列數:" @@ -3440,8 +3460,8 @@ msgstr "資料列數:" msgid "Sort by key" msgstr "依主鍵排序" -#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1215 -#: libraries/import.lib.php:1250 libraries/mult_submits.lib.php:343 +#: libraries/DisplayResults.php:1721 libraries/import.lib.php:1216 +#: libraries/import.lib.php:1251 libraries/mult_submits.lib.php:343 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3463,10 +3483,10 @@ msgstr "依主鍵排序" #: libraries/plugins/import/ImportShp.php:48 #: libraries/plugins/import/ImportSql.php:47 #: libraries/plugins/import/ImportXml.php:47 -#: libraries/rte/rte_routines.lib.php:938 templates/console/display.phtml:12 +#: libraries/rte/rte_routines.lib.php:939 templates/console/display.phtml:12 #: templates/console/display.phtml:173 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 -#: templates/table/structure/row_stats_table.phtml:20 +#: templates/table/structure/row_stats_table.phtml:19 msgid "Options" msgstr "選項" @@ -3506,102 +3526,102 @@ msgstr "易懂的文字" msgid "Well Known Binary" msgstr "易懂的二進位檔" -#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:3556 +#: libraries/DisplayResults.php:3538 libraries/DisplayResults.php:3553 msgid "The row has been deleted." msgstr "已刪除該行。" -#: libraries/DisplayResults.php:3589 libraries/DisplayResults.php:4843 -#: libraries/server_status_processes.lib.php:283 +#: libraries/DisplayResults.php:3586 libraries/DisplayResults.php:4840 +#: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "中止" -#: libraries/DisplayResults.php:4281 +#: libraries/DisplayResults.php:4278 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "可能為近似值,請參考 [doc@faq3-11]FAQ 3.11[/doc]。" -#: libraries/DisplayResults.php:4354 libraries/Message.php:163 +#: libraries/DisplayResults.php:4351 libraries/Message.php:171 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:570 -#: libraries/rte/rte_routines.lib.php:1451 libraries/sql_query_form.lib.php:92 -#: tbl_row_action.php:140 view_operations.php:75 +#: libraries/rte/rte_routines.lib.php:1453 libraries/sql_query_form.lib.php:92 +#: tbl_row_action.php:141 view_operations.php:75 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 語法已順利執行。" -#: libraries/DisplayResults.php:4701 -#: libraries/controllers/database/DatabaseStructureController.php:767 +#: libraries/DisplayResults.php:4698 +#: libraries/controllers/database/DatabaseStructureController.php:766 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "這個檢視表至少需有此數量的資料列,請參考%sdocumentation%s。" -#: libraries/DisplayResults.php:4714 +#: libraries/DisplayResults.php:4711 #, php-format msgid "Showing rows %1s - %2s" msgstr "顯示第 %1s - %2s 列" -#: libraries/DisplayResults.php:4729 +#: libraries/DisplayResults.php:4726 #, php-format msgid "%1$d total, %2$d in query" msgstr "總計 %1$d 筆,目前查詢 %2$d 筆" -#: libraries/DisplayResults.php:4734 +#: libraries/DisplayResults.php:4731 #, php-format msgid "%d total" msgstr "總計 %d 筆" -#: libraries/DisplayResults.php:4746 libraries/sql.lib.php:1380 +#: libraries/DisplayResults.php:4743 libraries/sql.lib.php:1380 #, php-format msgid "Query took %01.4f seconds." msgstr "查詢花費 %01.4f 秒。" -#: libraries/DisplayResults.php:4848 libraries/DisplayResults.php:4855 -#: libraries/mult_submits.inc.php:52 +#: libraries/DisplayResults.php:4845 libraries/DisplayResults.php:4852 +#: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 #: templates/select_all.phtml:2 templates/select_all.phtml:7 msgid "With selected:" msgstr "已選擇項目:" -#: libraries/DisplayResults.php:4852 libraries/DisplayResults.php:4854 -#: libraries/server_privileges.lib.php:1263 -#: libraries/server_privileges.lib.php:1264 -#: libraries/server_privileges.lib.php:1487 -#: libraries/server_user_groups.lib.php:233 +#: libraries/DisplayResults.php:4849 libraries/DisplayResults.php:4851 +#: libraries/server_privileges.lib.php:1164 +#: libraries/server_privileges.lib.php:1165 +#: libraries/server_user_groups.lib.php:230 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#: templates/select_all.phtml:4 templates/select_all.phtml:5 +#: templates/privileges/global_priv_table.phtml:5 templates/select_all.phtml:4 +#: templates/select_all.phtml:5 msgid "Check all" msgstr "全選" -#: libraries/DisplayResults.php:5027 +#: libraries/DisplayResults.php:5024 msgid "Copy to clipboard" msgstr "複製到剪貼簿" -#: libraries/DisplayResults.php:5083 +#: libraries/DisplayResults.php:5080 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/DisplayResults.php:5171 templates/table/chart/tbl_chart.phtml:11 +#: libraries/DisplayResults.php:5168 templates/table/chart/tbl_chart.phtml:11 msgid "Display chart" msgstr "顯示圖表" -#: libraries/DisplayResults.php:5196 +#: libraries/DisplayResults.php:5193 msgid "Visualize GIS data" msgstr "視覺化的 GIS 資料" -#: libraries/DisplayResults.php:5382 +#: libraries/DisplayResults.php:5379 msgid "Link not found!" msgstr "無此連結!" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:312 +#: libraries/Encoding.php:313 msgctxt "None encoding conversion" msgid "None" msgstr "無" #. l10n: This is currently used only in Japanese locales -#: libraries/Encoding.php:323 +#: libraries/Encoding.php:324 msgid "Convert to Kana" msgstr "轉換爲假名" @@ -3609,69 +3629,69 @@ msgstr "轉換爲假名" msgid "Too many error messages, some are not displayed." msgstr "錯誤訊息過多,有一些沒有被顯示出來。" -#: libraries/ErrorHandler.php:352 +#: libraries/ErrorHandler.php:355 msgid "Report" msgstr "報告" -#: libraries/ErrorHandler.php:357 templates/error/report_form.phtml:27 +#: libraries/ErrorHandler.php:360 templates/error/report_form.phtml:27 msgid "Automatically send report next time" msgstr "下次自動回傳錯誤報告" -#: libraries/File.php:223 +#: libraries/File.php:244 msgid "File was not an uploaded file." msgstr "檔案上傳失敗。" -#: libraries/File.php:263 +#: libraries/File.php:284 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制。" -#: libraries/File.php:269 +#: libraries/File.php:290 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值。" -#: libraries/File.php:275 +#: libraries/File.php:296 msgid "The uploaded file was only partially uploaded." msgstr "檔案上傳失敗,僅上傳了一部分的檔案。" -#: libraries/File.php:279 +#: libraries/File.php:300 msgid "Missing a temporary folder." msgstr "找不到暫存資料夾。" -#: libraries/File.php:282 +#: libraries/File.php:303 msgid "Failed to write file to disk." msgstr "將檔案寫入硬碟時發生錯誤。" -#: libraries/File.php:285 +#: libraries/File.php:306 msgid "File upload stopped by extension." msgstr "不允許上傳此檔案類型的檔案。" -#: libraries/File.php:288 +#: libraries/File.php:309 msgid "Unknown error in file upload." msgstr "上傳檔案時發生未知錯誤。" -#: libraries/File.php:424 +#: libraries/File.php:445 msgid "File is a symbolic link" msgstr "" -#: libraries/File.php:429 libraries/File.php:532 +#: libraries/File.php:450 libraries/File.php:542 msgid "File could not be read!" msgstr "無法讀取檔案!" -#: libraries/File.php:480 +#: libraries/File.php:490 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "移動上傳檔案時發生錯誤,請參考 [doc@faq1-11]FAQ 1.11[/doc]。" -#: libraries/File.php:499 +#: libraries/File.php:509 msgid "Error while moving uploaded file." msgstr "移動暫存檔時發生錯誤,請確認 TempDir 資料夾的寫入權限。" -#: libraries/File.php:507 +#: libraries/File.php:517 msgid "Cannot read uploaded file." msgstr "無法讀取已上傳的檔案。" -#: libraries/File.php:599 +#: libraries/File.php:609 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -3680,28 +3700,28 @@ msgstr "" "您試圖載入未支援的壓縮檔(%s)。可能是檔案格式尚未被支援或該檔案在您的設定檔中" "被停用。" -#: libraries/Footer.php:74 +#: libraries/Footer.php:72 #, php-format msgid "Currently running Git revision %1$s from the %2$s branch." msgstr "目前正在運行 Git %2$s 的分支版本 %1$s。" -#: libraries/Footer.php:81 +#: libraries/Footer.php:79 msgid "Git information missing!" msgstr "缺少 Git 資訊!" -#: libraries/Footer.php:196 libraries/Footer.php:200 libraries/Footer.php:203 +#: libraries/Footer.php:194 libraries/Footer.php:198 libraries/Footer.php:201 msgid "Open new phpMyAdmin window" msgstr "開啟新 phpMyAdmin 視窗" -#: libraries/Header.php:380 +#: libraries/Header.php:381 msgid "Print view" msgstr "預覽列印" -#: libraries/Header.php:466 +#: libraries/Header.php:467 msgid "Click on the bar to scroll to top of page" msgstr "點選此列以回到頁面頂端" -#: libraries/Header.php:768 libraries/plugins/auth/AuthenticationCookie.php:129 +#: libraries/Header.php:769 libraries/plugins/auth/AuthenticationCookie.php:129 msgid "Javascript must be enabled past this point!" msgstr "必須啟用 Javascript 才能登入!" @@ -3710,20 +3730,20 @@ msgid "No index defined!" msgstr "沒有已定義的索引!" #: libraries/Index.php:659 libraries/Index.php:670 -#: libraries/controllers/server/ServerDatabasesController.php:356 +#: libraries/controllers/server/ServerDatabasesController.php:359 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:988 +#: libraries/tracking.lib.php:967 msgid "Indexes" msgstr "索引" #: libraries/Index.php:680 libraries/central_columns.lib.php:686 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:95 -#: libraries/rte/rte_list.lib.php:108 libraries/server_privileges.lib.php:2653 -#: libraries/server_privileges.lib.php:3627 +#: libraries/rte/rte_list.lib.php:81 libraries/rte/rte_list.lib.php:96 +#: libraries/rte/rte_list.lib.php:109 libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3501 #: libraries/server_user_groups.lib.php:80 libraries/tracking.lib.php:287 -#: libraries/tracking.lib.php:809 libraries/tracking.lib.php:1480 -#: libraries/tracking.lib.php:1633 +#: libraries/tracking.lib.php:801 libraries/tracking.lib.php:1454 +#: libraries/tracking.lib.php:1599 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/server/databases/table_header.phtml:37 @@ -3733,78 +3753,78 @@ msgstr "索引" msgid "Action" msgstr "動作" -#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:157 -#: libraries/browse_foreigners.lib.php:161 libraries/tracking.lib.php:992 +#: libraries/Index.php:682 libraries/browse_foreigners.lib.php:154 +#: libraries/browse_foreigners.lib.php:158 libraries/tracking.lib.php:971 msgid "Keyname" msgstr "鍵名" #: libraries/Index.php:684 #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/controllers/table/TableStructureController.php:1191 -#: libraries/tracking.lib.php:994 +#: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:32 msgid "Unique" msgstr "唯一" -#: libraries/Index.php:685 libraries/tracking.lib.php:995 +#: libraries/Index.php:685 libraries/tracking.lib.php:974 msgid "Packed" msgstr "緊湊" -#: libraries/Index.php:687 libraries/tracking.lib.php:997 +#: libraries/Index.php:687 libraries/tracking.lib.php:976 msgid "Cardinality" msgstr "基數" -#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:500 -#: libraries/rte/rte_routines.lib.php:1061 libraries/tracking.lib.php:904 -#: libraries/tracking.lib.php:1000 +#: libraries/Index.php:690 libraries/rte/rte_events.lib.php:502 +#: libraries/rte/rte_routines.lib.php:1062 libraries/tracking.lib.php:890 +#: libraries/tracking.lib.php:979 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:94 #: templates/table/structure/display_partitions.phtml:33 msgid "Comment" msgstr "說明" -#: libraries/Index.php:718 +#: libraries/Index.php:717 msgid "The primary key has been dropped." msgstr "已刪除主鍵(Primary key)。" -#: libraries/Index.php:727 +#: libraries/Index.php:726 #, php-format msgid "Index %s has been dropped." msgstr "已刪除索引 %s。" -#: libraries/Index.php:744 libraries/Util.php:3564 libraries/Util.php:3565 -#: libraries/controllers/server/ServerDatabasesController.php:399 +#: libraries/Index.php:743 libraries/Util.php:3475 libraries/Util.php:3476 +#: libraries/controllers/server/ServerDatabasesController.php:402 #: libraries/controllers/table/TableStructureController.php:1182 #: libraries/controllers/table/TableStructureController.php:1183 -#: libraries/operations.lib.php:1596 libraries/rte/rte_list.lib.php:161 +#: libraries/operations.lib.php:1580 libraries/rte/rte_list.lib.php:164 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:79 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:181 msgid "Drop" msgstr "刪除" -#: libraries/Index.php:861 +#: libraries/Index.php:859 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除。" -#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2527 -#: libraries/browse_foreigners.lib.php:325 +#: libraries/Language.php:194 libraries/PDF.php:69 libraries/Util.php:2438 +#: libraries/browse_foreigners.lib.php:320 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 msgid "Page number:" msgstr "頁碼:" -#: libraries/LanguageManager.php:889 +#: libraries/LanguageManager.php:888 msgid "Ignoring unsupported language code." msgstr "忽略不支援的語言代碼。" -#: libraries/LanguageManager.php:916 libraries/LanguageManager.php:917 -#: setup/frames/index.inc.php:100 +#: libraries/LanguageManager.php:915 libraries/LanguageManager.php:916 +#: setup/frames/index.inc.php:88 msgid "Language" msgstr "語系" @@ -3828,11 +3848,11 @@ msgstr "伺服器" #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 #: libraries/plugins/export/ExportTexytext.php:133 -#: libraries/server_privileges.lib.php:1255 -#: libraries/server_privileges.lib.php:3220 -#: libraries/server_privileges.lib.php:3415 -#: libraries/server_privileges.lib.php:3417 -#: libraries/server_privileges.lib.php:4670 +#: libraries/server_privileges.lib.php:1156 +#: libraries/server_privileges.lib.php:3094 +#: libraries/server_privileges.lib.php:3289 +#: libraries/server_privileges.lib.php:3291 +#: libraries/server_privileges.lib.php:4483 #: libraries/server_status_processes.lib.php:80 #: templates/console/bookmark_content.phtml:19 #: templates/console/display.phtml:57 templates/console/display.phtml:219 @@ -3851,14 +3871,15 @@ msgid "View" msgstr "檢視表" #: libraries/Menu.php:256 libraries/config/messages.inc.php:929 -#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:93 -#: libraries/rte/rte_triggers.lib.php:334 -#: libraries/server_privileges.lib.php:1258 -#: libraries/server_privileges.lib.php:3238 -#: libraries/server_privileges.lib.php:3421 -#: libraries/server_privileges.lib.php:3423 -#: libraries/server_privileges.lib.php:4684 libraries/tracking.lib.php:1479 -#: libraries/tracking.lib.php:1628 +#: libraries/plugins/export/ExportXml.php:493 libraries/rte/rte_list.lib.php:94 +#: libraries/rte/rte_triggers.lib.php:335 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1159 +#: libraries/server_privileges.lib.php:3112 +#: libraries/server_privileges.lib.php:3295 +#: libraries/server_privileges.lib.php:3297 +#: libraries/server_privileges.lib.php:4497 libraries/tracking.lib.php:1453 +#: libraries/tracking.lib.php:1594 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:34 #: templates/table/relation/foreign_key_row.phtml:164 @@ -3867,8 +3888,8 @@ msgid "Table" msgstr "資料表" #: libraries/Menu.php:338 libraries/Menu.php:441 libraries/Menu.php:554 -#: libraries/Util.php:3268 libraries/Util.php:3278 libraries/Util.php:3284 -#: libraries/Util.php:4182 libraries/Util.php:4197 libraries/Util.php:4214 +#: libraries/Util.php:3179 libraries/Util.php:3189 libraries/Util.php:3195 +#: libraries/Util.php:4093 libraries/Util.php:4108 libraries/Util.php:4125 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:324 @@ -3876,45 +3897,45 @@ msgstr "資料表" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3269 -#: libraries/Util.php:3279 libraries/Util.php:3285 libraries/Util.php:3559 -#: libraries/Util.php:3560 libraries/Util.php:4198 libraries/Util.php:4215 +#: libraries/Menu.php:341 libraries/Menu.php:444 libraries/Util.php:3180 +#: libraries/Util.php:3190 libraries/Util.php:3196 libraries/Util.php:3470 +#: libraries/Util.php:3471 libraries/Util.php:4109 libraries/Util.php:4126 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:296 msgid "Search" msgstr "搜尋" -#: libraries/Menu.php:351 libraries/Util.php:3270 libraries/Util.php:3280 -#: libraries/Util.php:3561 libraries/Util.php:3562 libraries/Util.php:4216 +#: libraries/Menu.php:351 libraries/Util.php:3181 libraries/Util.php:3191 +#: libraries/Util.php:3472 libraries/Util.php:3473 libraries/Util.php:4127 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 libraries/navigation/nodes/NodeTable.php:302 #: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 msgid "Insert" msgstr "新增" -#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4203 -#: libraries/Util.php:4219 libraries/config.values.php:107 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2651 -#: libraries/server_privileges.lib.php:4556 +#: libraries/Menu.php:375 libraries/Menu.php:479 libraries/Util.php:4114 +#: libraries/Util.php:4130 libraries/config.values.php:107 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:4371 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "權限" #: libraries/Menu.php:384 libraries/Menu.php:392 libraries/Menu.php:471 -#: libraries/Util.php:3272 libraries/Util.php:3286 libraries/Util.php:4202 -#: libraries/Util.php:4220 libraries/config.values.php:113 +#: libraries/Util.php:3183 libraries/Util.php:3197 libraries/Util.php:4113 +#: libraries/Util.php:4131 libraries/config.values.php:113 #: view_operations.php:107 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4207 -#: libraries/Util.php:4221 libraries/relation.lib.php:265 +#: libraries/Menu.php:397 libraries/Menu.php:501 libraries/Util.php:4118 +#: libraries/Util.php:4132 libraries/relation.lib.php:265 msgid "Tracking" msgstr "追蹤" -#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4206 -#: libraries/Util.php:4222 +#: libraries/Menu.php:409 libraries/Menu.php:495 libraries/Util.php:4117 +#: libraries/Util.php:4133 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 @@ -3930,16 +3951,16 @@ msgstr "觸發器" msgid "Database seems to be empty!" msgstr "資料庫是空的!" -#: libraries/Menu.php:451 libraries/Util.php:4199 +#: libraries/Menu.php:451 libraries/Util.php:4110 msgid "Query" msgstr "查詢" -#: libraries/Menu.php:484 libraries/Util.php:4204 +#: libraries/Menu.php:484 libraries/Util.php:4115 #: libraries/rte/rte_words.lib.php:44 msgid "Routines" msgstr "程序" -#: libraries/Menu.php:489 libraries/Util.php:4205 +#: libraries/Menu.php:489 libraries/Util.php:4116 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:961 #: libraries/plugins/export/ExportXml.php:103 @@ -3947,20 +3968,20 @@ msgstr "程序" msgid "Events" msgstr "事件" -#: libraries/Menu.php:507 libraries/Util.php:4208 +#: libraries/Menu.php:507 libraries/Util.php:4119 msgid "Designer" msgstr "設計器" -#: libraries/Menu.php:516 libraries/Util.php:4209 +#: libraries/Menu.php:516 libraries/Util.php:4120 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "中央欄位" -#: libraries/Menu.php:550 libraries/Util.php:4181 +#: libraries/Menu.php:550 libraries/Util.php:4092 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 -#: libraries/navigation/NavigationTree.php:1268 -#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4670 +#: libraries/navigation/NavigationTree.php:1269 +#: libraries/server_common.lib.php:45 libraries/server_privileges.lib.php:4483 msgid "Databases" msgstr "資料庫" @@ -3969,51 +3990,51 @@ msgid "User accounts" msgstr "使用者帳號" #: libraries/Menu.php:601 libraries/ServerStatusData.php:121 -#: libraries/Util.php:4188 libraries/server_common.lib.php:33 +#: libraries/Util.php:4099 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "二進位記錄" #: libraries/Menu.php:607 libraries/ServerStatusData.php:126 -#: libraries/Util.php:4189 libraries/server_common.lib.php:39 +#: libraries/Util.php:4100 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "備援" #: libraries/Menu.php:612 libraries/ServerStatusData.php:193 -#: libraries/Util.php:4190 libraries/config.values.php:106 +#: libraries/Util.php:4101 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:427 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "變數" -#: libraries/Menu.php:616 libraries/Util.php:4191 +#: libraries/Menu.php:616 libraries/Util.php:4102 msgid "Charsets" msgstr "字元編碼" -#: libraries/Menu.php:620 libraries/Util.php:4193 +#: libraries/Menu.php:620 libraries/Util.php:4104 msgid "Engines" msgstr "引擎" -#: libraries/Menu.php:624 libraries/Util.php:4192 +#: libraries/Menu.php:624 libraries/Util.php:4103 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "附加元件" -#: libraries/Message.php:237 +#: libraries/Message.php:246 #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "影響了 %1$d 列。" -#: libraries/Message.php:256 +#: libraries/Message.php:265 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "刪除了 %1$d 列。" -#: libraries/Message.php:275 +#: libraries/Message.php:284 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." @@ -4060,27 +4081,27 @@ msgstr "我的最愛的資料表" msgid "Favorites" msgstr "我的最愛" -#: libraries/SavedSearches.php:246 +#: libraries/SavedSearches.php:256 msgid "Please provide a name for this bookmarked search." msgstr "請提供一個可以作為此查詢的書籤名稱。" -#: libraries/SavedSearches.php:261 +#: libraries/SavedSearches.php:271 msgid "Missing information to save the bookmarked search." msgstr "遺失用來儲存加入查詢書籤的資訊。" -#: libraries/SavedSearches.php:283 libraries/SavedSearches.php:320 +#: libraries/SavedSearches.php:293 libraries/SavedSearches.php:330 msgid "An entry with this name already exists." msgstr "項目 %s 己存在。" -#: libraries/SavedSearches.php:347 +#: libraries/SavedSearches.php:357 msgid "Missing information to delete the search." msgstr "遺失用來刪除查詢的資訊。" -#: libraries/SavedSearches.php:375 +#: libraries/SavedSearches.php:385 msgid "Missing information to load the search." msgstr "遺失用來讀取查詢的資訊。" -#: libraries/SavedSearches.php:394 +#: libraries/SavedSearches.php:404 msgid "Error while loading the search." msgstr "載入查詢時發生錯誤。" @@ -4142,7 +4163,7 @@ msgstr "顯示開啟的表" msgid "Show slave hosts" msgstr "顯示次要(Slave)伺服器" -#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:49 +#: libraries/ServerStatusData.php:168 libraries/replication_gui.lib.php:50 msgid "Show master status" msgstr "顯示主要(Master)伺服器狀態" @@ -4194,69 +4215,69 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" -#: libraries/StorageEngine.php:281 +#: libraries/StorageEngine.php:279 msgid "" "There is no detailed status information available for this storage engine." msgstr "沒有該儲存引擎的詳細狀態資訊。" -#: libraries/StorageEngine.php:384 +#: libraries/StorageEngine.php:382 #: templates/database/structure/body_for_table_summary.phtml:50 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "此 MySQL 伺服器的預設儲存引擎是 %s。" -#: libraries/StorageEngine.php:387 +#: libraries/StorageEngine.php:385 #, php-format msgid "%s is available on this MySQL server." msgstr "MySQL 伺服器支援 %s。" -#: libraries/StorageEngine.php:390 +#: libraries/StorageEngine.php:388 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 在此 MySQL 伺服器上被停用。" -#: libraries/StorageEngine.php:395 +#: libraries/StorageEngine.php:393 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 伺服器不支援 %s 儲存引擎。" -#: libraries/Table.php:301 +#: libraries/Table.php:313 msgid "Unknown table status:" msgstr "資料表狀態不明:" -#: libraries/Table.php:745 +#: libraries/Table.php:763 #, php-format msgid "Source database `%s` was not found!" msgstr "找不到來源資料庫「%s」!" -#: libraries/Table.php:753 +#: libraries/Table.php:771 #, php-format msgid "Target database `%s` was not found!" msgstr "找不到目標資料庫「%s」!" -#: libraries/Table.php:1308 +#: libraries/Table.php:1326 msgid "Invalid database:" msgstr "無效的資料庫:" -#: libraries/Table.php:1325 +#: libraries/Table.php:1343 msgid "Invalid table name:" msgstr "無效的資料資料表名稱:" -#: libraries/Table.php:1360 +#: libraries/Table.php:1378 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "無法將資料表 %1$s 重新命名爲 %2$s!" -#: libraries/Table.php:1379 +#: libraries/Table.php:1397 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "資料表 %1$s 已重新命名為 %2$s。" -#: libraries/Table.php:1610 +#: libraries/Table.php:1628 msgid "Could not save table UI preferences!" msgstr "無法儲存「介面偏好」的資料表!" -#: libraries/Table.php:1640 +#: libraries/Table.php:1658 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4265,7 +4286,7 @@ msgstr "" "在清空資料表「介面偏好」時發生錯誤。(詳見 $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1793 +#: libraries/Table.php:1811 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4275,19 +4296,19 @@ msgstr "" "無法儲存介面偏好「%s」,這個修改在下次將不會生效。請檢查該資料表的架構是否被" "修改過。" -#: libraries/Table.php:1929 +#: libraries/Table.php:1947 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主鍵的名稱必須稱爲 \"PRIMARY\"!" -#: libraries/Table.php:1940 +#: libraries/Table.php:1958 msgid "Can't rename index to PRIMARY!" msgstr "無法將索引更改爲主鍵(PRIMARY)!" -#: libraries/Table.php:1962 +#: libraries/Table.php:1980 msgid "No index parts defined!" msgstr "沒有定義的索引部分!" -#: libraries/Table.php:2280 +#: libraries/Table.php:2298 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "建立外鍵 %1$s 時發生錯誤 (檢查資料類型)" @@ -4585,7 +4606,7 @@ msgid "Date and time" msgstr "日期及時間" #: libraries/TypesMySQL.php:506 libraries/normalization.lib.php:158 -#: normalization.php:24 +#: normalization.php:25 msgctxt "string types" msgid "String" msgstr "字串" @@ -4600,126 +4621,126 @@ msgstr "空間類型" msgid "Max: %s%s" msgstr "上限: %s %s" -#: libraries/Util.php:613 +#: libraries/Util.php:573 msgid "Static analysis:" msgstr "靜態分析:" -#: libraries/Util.php:616 +#: libraries/Util.php:576 #, php-format msgid "%d errors were found during analysis." msgstr "分析過程中發生 %d 個錯誤。" -#: libraries/Util.php:679 libraries/rte/rte_events.lib.php:114 +#: libraries/Util.php:639 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:154 -#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:231 -#: libraries/rte/rte_routines.lib.php:258 -#: libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1485 +#: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:230 +#: libraries/rte/rte_routines.lib.php:257 +#: libraries/rte/rte_routines.lib.php:371 +#: libraries/rte/rte_routines.lib.php:1487 #: libraries/rte/rte_triggers.lib.php:89 libraries/rte/rte_triggers.lib.php:98 #: libraries/rte/rte_triggers.lib.php:130 msgid "MySQL said: " msgstr "MySQL 回應: " -#: libraries/Util.php:1129 libraries/config/messages.inc.php:890 +#: libraries/Util.php:1089 libraries/config/messages.inc.php:890 msgid "Explain SQL" msgstr "SQL 語句分析" -#: libraries/Util.php:1140 +#: libraries/Util.php:1100 msgid "Skip Explain SQL" msgstr "略過 SQL 語句分析" -#: libraries/Util.php:1148 +#: libraries/Util.php:1108 #, php-format msgid "Analyze Explain at %s" msgstr "分析語句於 %s" -#: libraries/Util.php:1181 +#: libraries/Util.php:1141 msgid "Without PHP code" msgstr "不含 PHP 程式碼" -#: libraries/Util.php:1193 +#: libraries/Util.php:1153 msgid "Submit query" msgstr "送出查詢" -#: libraries/Util.php:1204 libraries/config/messages.inc.php:892 +#: libraries/Util.php:1164 libraries/config/messages.inc.php:892 msgid "Create PHP code" msgstr "產生 PHP 程式碼" -#: libraries/Util.php:1223 libraries/config/messages.inc.php:891 -#: libraries/server_status_processes.lib.php:236 +#: libraries/Util.php:1183 libraries/config/messages.inc.php:891 +#: libraries/server_status_processes.lib.php:233 #: libraries/server_status_variables.lib.php:40 #: templates/console/display.phtml:125 msgid "Refresh" msgstr "重新整理" -#: libraries/Util.php:1252 libraries/sql.lib.php:230 +#: libraries/Util.php:1212 libraries/sql.lib.php:230 #: templates/console/display.phtml:53 templates/console/display.phtml:215 msgid "Profiling" msgstr "效能分析" -#: libraries/Util.php:1271 +#: libraries/Util.php:1231 msgctxt "Inline edit query" msgid "Edit inline" msgstr "行內編輯" #. l10n: Short week day name -#: libraries/Util.php:1612 +#: libraries/Util.php:1572 msgctxt "Short week day name" msgid "Sun" msgstr "週日" #. l10n: See https://secure.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1628 +#: libraries/Util.php:1588 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:68 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/Util.php:2018 +#: libraries/Util.php:1978 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小時,%s 分 %s 秒" -#: libraries/Util.php:2114 +#: libraries/Util.php:2025 msgid "Missing parameter:" msgstr "未填寫必要的參數:" -#: libraries/Util.php:2651 +#: libraries/Util.php:2562 #, php-format msgid "Jump to database \"%s\"." msgstr "切換到資料庫「%s」。" -#: libraries/Util.php:2676 +#: libraries/Util.php:2587 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一個已知的問題影響,詳情請參考 %s" -#: libraries/Util.php:3476 prefs_manage.php:267 +#: libraries/Util.php:3387 prefs_manage.php:256 msgid "Browse your computer:" msgstr "由電腦上傳:" -#: libraries/Util.php:3501 +#: libraries/Util.php:3412 #, php-format msgid "Select from the web server upload directory %s:" msgstr "由網頁伺服器上傳目錄中選擇 %s:" -#: libraries/Util.php:3530 libraries/insert_edit.lib.php:1235 +#: libraries/Util.php:3441 libraries/insert_edit.lib.php:1236 msgid "The directory you set for upload work cannot be reached." msgstr "設定之上傳目錄錯誤,無法使用。" -#: libraries/Util.php:3541 +#: libraries/Util.php:3452 msgid "There are no files to upload!" msgstr "無可上傳的檔案!" -#: libraries/Util.php:3566 libraries/Util.php:3567 +#: libraries/Util.php:3477 libraries/Util.php:3478 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "清空" -#: libraries/Util.php:3572 libraries/Util.php:3573 +#: libraries/Util.php:3483 libraries/Util.php:3484 msgid "Execute" msgstr "執行" -#: libraries/Util.php:4184 +#: libraries/Util.php:4095 msgid "Users" msgstr "使用者" @@ -4733,7 +4754,7 @@ msgstr "每分鐘" #: libraries/advisor.lib.php:26 libraries/server_status.lib.php:149 #: libraries/server_status.lib.php:234 -#: libraries/server_status_queries.lib.php:95 +#: libraries/server_status_queries.lib.php:93 msgid "per hour" msgstr "每小時" @@ -4741,12 +4762,12 @@ msgstr "每小時" msgid "per day" msgstr "每天" -#: libraries/browse_foreigners.lib.php:134 +#: libraries/browse_foreigners.lib.php:131 msgid "Search:" msgstr "搜尋:" -#: libraries/browse_foreigners.lib.php:158 -#: libraries/browse_foreigners.lib.php:160 +#: libraries/browse_foreigners.lib.php:155 +#: libraries/browse_foreigners.lib.php:157 #: libraries/server_status_variables.lib.php:219 #: templates/server/collations/charsets.phtml:5 #: templates/server/engines/engines.phtml:5 @@ -4754,7 +4775,7 @@ msgstr "搜尋:" msgid "Description" msgstr "說明" -#: libraries/browse_foreigners.lib.php:256 +#: libraries/browse_foreigners.lib.php:251 msgid "Use this value" msgstr "使用此值" @@ -4791,22 +4812,22 @@ msgstr "是" msgid "NO" msgstr "否" -#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1386 +#: libraries/central_columns.lib.php:694 libraries/central_columns.lib.php:1383 #: libraries/plugins/export/ExportHtmlword.php:485 #: libraries/plugins/export/ExportOdt.php:602 #: libraries/plugins/export/ExportTexytext.php:446 #: libraries/plugins/export/PMA_ExportPdf.php:312 -#: libraries/rte/rte_list.lib.php:79 libraries/rte/rte_list.lib.php:91 -#: libraries/rte/rte_list.lib.php:106 libraries/rte/rte_routines.lib.php:935 -#: libraries/rte/rte_routines.lib.php:1611 setup/frames/index.inc.php:178 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_list.lib.php:92 +#: libraries/rte/rte_list.lib.php:107 libraries/rte/rte_routines.lib.php:936 +#: libraries/rte/rte_routines.lib.php:1612 setup/frames/index.inc.php:166 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 #: templates/table/structure/table_structure_header.phtml:7 msgid "Name" msgstr "名稱" -#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1386 -#: libraries/rte/rte_routines.lib.php:937 +#: libraries/central_columns.lib.php:698 libraries/central_columns.lib.php:1383 +#: libraries/rte/rte_routines.lib.php:938 #: templates/columns_definitions/table_fields_definitions.phtml:14 msgid "Length/Values" msgstr "長度/值" @@ -4815,7 +4836,7 @@ msgstr "長度/值" msgid "Attribute" msgstr "屬性" -#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:709 libraries/central_columns.lib.php:1384 msgid "A_I" msgstr "自動增加" @@ -4832,11 +4853,11 @@ msgstr "新增欄位" msgid "Select a column." msgstr "選擇一個欄位。" -#: libraries/central_columns.lib.php:1266 +#: libraries/central_columns.lib.php:1263 msgid "Add new column" msgstr "新增欄位" -#: libraries/central_columns.lib.php:1387 +#: libraries/central_columns.lib.php:1384 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:631 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:654 #: templates/columns_definitions/table_fields_definitions.phtml:36 @@ -4844,7 +4865,7 @@ msgstr "新增欄位" msgid "Attributes" msgstr "屬性" -#: libraries/common.inc.php:479 +#: libraries/common.inc.php:464 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4853,26 +4874,26 @@ msgstr "" "您已啟用了 PHP 設定中的 mbstring.func_overload。此選項與 phpMyAdmin 不相容," "可能會導致一些資料損壞!" -#: libraries/common.inc.php:513 +#: libraries/common.inc.php:498 #, php-format msgid "Invalid server index: %s" msgstr "無效的伺服器索引: %s" -#: libraries/common.inc.php:525 +#: libraries/common.inc.php:510 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱無效,請重新檢查您的設定檔。" -#: libraries/common.inc.php:543 +#: libraries/common.inc.php:528 #, php-format msgid "Server %d" msgstr "伺服器 %d" -#: libraries/common.inc.php:667 +#: libraries/common.inc.php:652 msgid "Invalid authentication method set in configuration:" msgstr "在設定檔中設定的認證方式無效:" -#: libraries/common.inc.php:776 +#: libraries/common.inc.php:761 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4882,20 +4903,20 @@ msgstr "" "無法於伺服器 %2$d 使用時區 %1$s。請檢查您於設定檔的 [em]$cfg['Servers'][%3$d]" "['SessionTimeZone'][/em] 設定。phpMyAdmin 目前使用資料庫伺服器的預設時區。" -#: libraries/common.inc.php:814 +#: libraries/common.inc.php:799 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應升級到 %s %s 或更新版本。" -#: libraries/common.inc.php:900 +#: libraries/common.inc.php:885 msgid "Error: Token mismatch" msgstr "錯誤: 連線資訊失效,請重新連線" -#: libraries/common.inc.php:918 +#: libraries/common.inc.php:903 msgid "GLOBALS overwrite attempt" msgstr "嘗試覆寫 GLOBALS (全域變數)" -#: libraries/common.inc.php:925 +#: libraries/common.inc.php:910 msgid "possible exploit" msgstr "$_REQUEST 數量過多(駭客?)" @@ -5456,7 +5477,7 @@ msgid "Compress on the fly" msgstr "即時壓縮" #: libraries/config/messages.inc.php:90 setup/frames/config.inc.php:25 -#: setup/frames/index.inc.php:228 +#: setup/frames/index.inc.php:216 msgid "Configuration file" msgstr "設定檔案" @@ -5556,12 +5577,12 @@ msgstr "設定 Script 允許執行的時間限制 (秒,[kbd]0[/kbd] 爲不設 msgid "Maximum execution time" msgstr "執行時間限制" -#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:795 +#: libraries/config/messages.inc.php:135 libraries/display_export.lib.php:796 #, php-format msgid "Use %s statement" msgstr "使用 %s 指令" -#: libraries/config/messages.inc.php:137 prefs_manage.php:337 +#: libraries/config/messages.inc.php:137 prefs_manage.php:326 msgid "Save as file" msgstr "另存新檔" @@ -5571,7 +5592,7 @@ msgstr "檔案編碼" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 #: libraries/sql_query_form.lib.php:250 -#: templates/table/structure/row_stats_table.phtml:7 +#: templates/table/structure/row_stats_table.phtml:6 msgid "Format" msgstr "格式" @@ -5696,7 +5717,7 @@ msgid "Save on server" msgstr "儲存在伺服器上" #: libraries/config/messages.inc.php:183 libraries/config/messages.inc.php:187 -#: libraries/display_export.lib.php:502 libraries/display_export.lib.php:537 +#: libraries/display_export.lib.php:503 libraries/display_export.lib.php:538 msgid "Overwrite existing file(s)" msgstr "覆蓋既有檔案" @@ -5709,7 +5730,7 @@ msgid "Remember file name template" msgstr "記錄樣板檔案名稱" #: libraries/config/messages.inc.php:189 libraries/operations.lib.php:223 -#: libraries/operations.lib.php:845 libraries/operations.lib.php:1280 +#: libraries/operations.lib.php:845 libraries/operations.lib.php:1272 msgid "Add AUTO_INCREMENT value" msgstr "加入自動遞增(AUTO_INCREMENT)數值" @@ -5718,7 +5739,7 @@ msgid "Enclose table and column names with backquotes" msgstr "在資料表名稱及欄位名稱使用反引號(`)" #: libraries/config/messages.inc.php:192 libraries/config/messages.inc.php:401 -#: libraries/display_export.lib.php:397 +#: libraries/display_export.lib.php:398 msgid "SQL compatibility mode" msgstr "SQL 相容模式" @@ -5748,7 +5769,7 @@ msgstr "自 phpMyAdmin 設定儲存空間匯出相關的 Metadata" #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:206 libraries/config/messages.inc.php:208 #: libraries/config/messages.inc.php:220 libraries/operations.lib.php:218 -#: libraries/operations.lib.php:1276 +#: libraries/operations.lib.php:1268 #, php-format msgid "Add %s" msgstr "加入 %s" @@ -5916,7 +5937,7 @@ msgid "Customize the navigation tree." msgstr "自訂導覽樹。" #: libraries/config/messages.inc.php:275 libraries/select_server.lib.php:47 -#: setup/frames/index.inc.php:160 +#: setup/frames/index.inc.php:148 msgid "Servers" msgstr "伺服器" @@ -6774,7 +6795,7 @@ msgstr "HTTP 提示資訊" msgid "Authentication method to use." msgstr "要使用的認證方式。" -#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:179 +#: libraries/config/messages.inc.php:638 setup/frames/index.inc.php:167 msgid "Authentication type" msgstr "認證方式" @@ -7443,7 +7464,7 @@ msgstr "停用時,使用者不能設定下列選項,右側的複選框被忽 msgid "Enable the Developer tab in settings" msgstr "啓用設定選項中的開發人員頁籤" -#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:327 +#: libraries/config/messages.inc.php:948 setup/frames/index.inc.php:315 msgid "Check for latest version" msgstr "檢查是否有更新版本" @@ -7451,10 +7472,10 @@ msgstr "檢查是否有更新版本" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "啟動在 phpMyAdmin 首頁中更新版本的檢查。" -#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:121 -#: setup/lib/index.lib.php:144 setup/lib/index.lib.php:157 -#: setup/lib/index.lib.php:169 setup/lib/index.lib.php:177 -#: setup/lib/index.lib.php:184 +#: libraries/config/messages.inc.php:952 setup/lib/index.lib.php:116 +#: setup/lib/index.lib.php:139 setup/lib/index.lib.php:152 +#: setup/lib/index.lib.php:164 setup/lib/index.lib.php:172 +#: setup/lib/index.lib.php:179 msgid "Version check" msgstr "檢查更新" @@ -7594,24 +7615,24 @@ msgstr "微軟 Word 2000" msgid "OpenDocument Text" msgstr "OpenOffice 檔案" -#: libraries/controllers/database/DatabaseStructureController.php:268 +#: libraries/controllers/database/DatabaseStructureController.php:271 msgid "Favorite List is full!" msgstr "我的最愛清單已滿!" -#: libraries/controllers/database/DatabaseStructureController.php:554 -#: tbl_operations.php:379 +#: libraries/controllers/database/DatabaseStructureController.php:556 +#: tbl_operations.php:361 #, php-format msgid "Table %s has been emptied." msgstr "已清空資料表 %s。" -#: libraries/controllers/database/DatabaseStructureController.php:575 -#: tbl_operations.php:397 view_operations.php:136 +#: libraries/controllers/database/DatabaseStructureController.php:577 +#: tbl_operations.php:379 view_operations.php:136 #, php-format msgid "View %s has been dropped." msgstr "已刪除檢視表 %s。" -#: libraries/controllers/database/DatabaseStructureController.php:576 -#: tbl_operations.php:398 +#: libraries/controllers/database/DatabaseStructureController.php:578 +#: tbl_operations.php:380 #, php-format msgid "Table %s has been dropped." msgstr "已刪除資料表 %s。" @@ -7625,12 +7646,12 @@ msgid "Position" msgstr "位置" #: libraries/controllers/server/ServerBinlogController.php:154 -#: libraries/rte/rte_events.lib.php:412 +#: libraries/rte/rte_events.lib.php:414 msgid "Event type" msgstr "事件類型" #: libraries/controllers/server/ServerBinlogController.php:155 -#: libraries/replication_gui.lib.php:619 +#: libraries/replication_gui.lib.php:617 msgid "Server ID" msgstr "伺服器 ID" @@ -7639,7 +7660,7 @@ msgid "Original position" msgstr "原始位置" #: libraries/controllers/server/ServerBinlogController.php:157 -#: templates/table/structure/display_table_stats.phtml:4 +#: templates/table/structure/display_table_stats.phtml:3 msgid "Information" msgstr "資訊" @@ -7653,16 +7674,16 @@ msgstr "截斷顯示的查詢" msgid "Show Full Queries" msgstr "顯示完整查詢" -#: libraries/controllers/server/ServerDatabasesController.php:122 +#: libraries/controllers/server/ServerDatabasesController.php:125 msgid "No databases" msgstr "無資料庫" -#: libraries/controllers/server/ServerDatabasesController.php:164 +#: libraries/controllers/server/ServerDatabasesController.php:167 #, php-format msgid "Database %1$s has been created." msgstr "已建立資料庫 %1$s。" -#: libraries/controllers/server/ServerDatabasesController.php:205 +#: libraries/controllers/server/ServerDatabasesController.php:208 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -7670,26 +7691,26 @@ msgstr[0] "" "已成功刪除 %1$d 個資料庫。\n" "已成功刪除 %1$d 個資料庫。" -#: libraries/controllers/server/ServerDatabasesController.php:346 -#: libraries/import.lib.php:89 +#: libraries/controllers/server/ServerDatabasesController.php:349 +#: libraries/import.lib.php:90 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:111 #: templates/table/structure/display_partitions.phtml:30 -#: templates/table/structure/row_stats_table.phtml:42 +#: templates/table/structure/row_stats_table.phtml:41 msgid "Rows" msgstr "資料列數" -#: libraries/controllers/server/ServerDatabasesController.php:361 +#: libraries/controllers/server/ServerDatabasesController.php:364 #: libraries/engines/Innodb.php:169 libraries/server_status.lib.php:192 #: libraries/server_status.lib.php:304 #: templates/server/databases/table_footer.phtml:7 -#: templates/table/structure/display_table_stats.phtml:43 +#: templates/table/structure/display_table_stats.phtml:42 msgid "Total" msgstr "總計" -#: libraries/controllers/server/ServerDatabasesController.php:366 +#: libraries/controllers/server/ServerDatabasesController.php:369 #: templates/database/structure/table_header.phtml:74 -#: templates/table/structure/display_table_stats.phtml:30 +#: templates/table/structure/display_table_stats.phtml:29 msgid "Overhead" msgstr "資料分散" @@ -7715,32 +7736,32 @@ msgstr "" msgid "Enable statistics" msgstr "開啟統計資訊" -#: libraries/controllers/server/ServerVariablesController.php:111 +#: libraries/controllers/server/ServerVariablesController.php:113 #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "權限不足檢視伺服器變數與設定。%s" -#: libraries/controllers/server/ServerVariablesController.php:229 +#: libraries/controllers/server/ServerVariablesController.php:231 msgid "Setting variable failed" msgstr "設定變數失敗" -#: libraries/controllers/table/TableChartController.php:76 +#: libraries/controllers/table/TableChartController.php:78 #: libraries/controllers/table/TableGisVisualizationController.php:98 msgid "No SQL query was set to fetch data." msgstr "尚未設定 SQL 查詢來檢索資料。" -#: libraries/controllers/table/TableChartController.php:151 +#: libraries/controllers/table/TableChartController.php:153 msgid "No numeric columns present in the table to plot." msgstr "目前資料表中沒有數值欄位可供繪製。" -#: libraries/controllers/table/TableChartController.php:209 +#: libraries/controllers/table/TableChartController.php:211 msgid "No data to display" msgstr "無資料可顯示" -#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableIndexesController.php:155 #: libraries/controllers/table/TableStructureController.php:718 #: libraries/controllers/table/TableStructureController.php:967 -#: tbl_addfield.php:94 +#: tbl_addfield.php:95 #, php-format msgid "Table %1$s has been altered successfully." msgstr "已成功修改資料表 %1$s 。" @@ -7782,7 +7803,7 @@ msgstr "欄位已移動成功。" #: libraries/controllers/table/TableStructureController.php:729 #: libraries/controllers/table/TableStructureController.php:1016 -#: libraries/tracking.lib.php:1115 +#: libraries/tracking.lib.php:1087 msgid "Query error" msgstr "查詢錯誤" @@ -7799,12 +7820,12 @@ msgstr "修改" #: libraries/controllers/table/TableStructureController.php:1185 #: libraries/controllers/table/TableStructureController.php:1190 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:945 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:924 #: templates/columns_definitions/column_indexes.phtml:16 #: templates/columns_definitions/table_fields_definitions.phtml:57 #: templates/table/structure/check_all_table_column.phtml:36 #: templates/table/structure/display_structure.phtml:67 -#: templates/table/structure/display_table_stats.phtml:22 +#: templates/table/structure/display_table_stats.phtml:21 msgid "Index" msgstr "索引" @@ -7825,13 +7846,13 @@ msgstr "全文搜尋" msgid "Distinct values" msgstr "顯示相異值" -#: libraries/core.lib.php:298 +#: libraries/core.lib.php:299 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 擴充套件。請檢查 PHP 設定。" -#: libraries/core.lib.php:811 libraries/mult_submits.inc.php:331 -#: tbl_operations.php:204 tbl_replace.php:313 templates/preview_sql.phtml:3 +#: libraries/core.lib.php:790 libraries/mult_submits.inc.php:329 +#: tbl_operations.php:197 tbl_replace.php:314 templates/preview_sql.phtml:3 msgid "No change" msgstr "無更改" @@ -7853,31 +7874,35 @@ msgid "Could not load schema plugins, please check your installation!" msgstr "無法載入綱要(Schema)外掛程式,請檢查您的安裝!" #: libraries/display_change_password.lib.php:57 -#: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1789 +#: libraries/replication_gui.lib.php:854 +#: libraries/server_privileges.lib.php:1667 msgid "No Password" msgstr "無密碼" #: libraries/display_change_password.lib.php:65 #: libraries/plugins/auth/AuthenticationCookie.php:175 -#: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:850 -#: libraries/server_privileges.lib.php:1776 +#: libraries/replication_gui.lib.php:424 libraries/replication_gui.lib.php:845 +#: libraries/server_privileges.lib.php:1654 msgid "Password:" msgstr "密碼:" -#: libraries/display_change_password.lib.php:71 -#: libraries/replication_gui.lib.php:870 -#: libraries/server_privileges.lib.php:1805 +#: libraries/display_change_password.lib.php:68 +msgid "Enter:" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:865 +#: libraries/server_privileges.lib.php:1686 msgid "Re-type:" msgstr "重新輸入:" -#: libraries/display_change_password.lib.php:102 -#: libraries/display_change_password.lib.php:135 +#: libraries/display_change_password.lib.php:106 +#: libraries/display_change_password.lib.php:139 msgid "Password Hashing:" msgstr "密碼加密方式:" -#: libraries/display_change_password.lib.php:115 -#: libraries/server_privileges.lib.php:1848 +#: libraries/display_change_password.lib.php:119 +#: libraries/server_privileges.lib.php:1729 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -7886,134 +7911,134 @@ msgstr "" "此方式當連線至伺服器時需要使用 'SSL 連線' 或 '使用 RSA 加密密碼的未" "加密連線'。" -#: libraries/display_export.lib.php:172 +#: libraries/display_export.lib.php:173 msgid "Exporting databases from the current server" msgstr "從目前的伺服器中匯出資料庫" -#: libraries/display_export.lib.php:175 +#: libraries/display_export.lib.php:176 #, php-format msgid "Exporting tables from \"%s\" database" msgstr "正在匯出資料庫 \"%s \" 中的資料表" -#: libraries/display_export.lib.php:180 +#: libraries/display_export.lib.php:181 #, php-format msgid "Exporting rows from \"%s\" table" msgstr "正在匯出資料表 \"%s \" 中的資料列" -#: libraries/display_export.lib.php:200 +#: libraries/display_export.lib.php:201 msgid "Export templates:" msgstr "匯出樣板:" -#: libraries/display_export.lib.php:205 +#: libraries/display_export.lib.php:206 msgid "New template:" msgstr "新樣板:" -#: libraries/display_export.lib.php:208 +#: libraries/display_export.lib.php:209 msgid "Template name" msgstr "樣板名稱" -#: libraries/display_export.lib.php:210 +#: libraries/display_export.lib.php:211 #: templates/server/databases/create.phtml:22 msgid "Create" msgstr "建立" -#: libraries/display_export.lib.php:217 +#: libraries/display_export.lib.php:218 msgid "Existing templates:" msgstr "已存在的樣板:" -#: libraries/display_export.lib.php:218 +#: libraries/display_export.lib.php:219 msgid "Template:" msgstr "樣板:" -#: libraries/display_export.lib.php:223 +#: libraries/display_export.lib.php:224 msgid "Update" msgstr "更新" -#: libraries/display_export.lib.php:245 +#: libraries/display_export.lib.php:246 msgid "Select a template" msgstr "選擇一個樣板" -#: libraries/display_export.lib.php:294 +#: libraries/display_export.lib.php:295 msgid "Export method:" msgstr "匯出方式:" -#: libraries/display_export.lib.php:304 +#: libraries/display_export.lib.php:305 msgid "Quick - display only the minimal options" msgstr "快速 - 僅顯示必要的選項" -#: libraries/display_export.lib.php:316 +#: libraries/display_export.lib.php:317 msgid "Custom - display all possible options" msgstr "自訂 - 顯示所有可用的選項" -#: libraries/display_export.lib.php:338 +#: libraries/display_export.lib.php:339 msgid "Databases:" msgstr "資料庫:" -#: libraries/display_export.lib.php:340 libraries/navigation/Navigation.php:196 +#: libraries/display_export.lib.php:341 libraries/navigation/Navigation.php:196 msgid "Tables:" msgstr "資料表:" -#: libraries/display_export.lib.php:360 libraries/display_import.lib.php:364 +#: libraries/display_export.lib.php:361 libraries/display_import.lib.php:364 #: libraries/plugins/export/ExportCodegen.php:100 msgid "Format:" msgstr "格式:" -#: libraries/display_export.lib.php:376 libraries/display_import.lib.php:370 +#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:370 msgid "Format-specific options:" msgstr "格式選項:" -#: libraries/display_export.lib.php:379 +#: libraries/display_export.lib.php:380 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "請下拉至所選格式並設定選項,其它格式請忽略。" -#: libraries/display_export.lib.php:389 libraries/display_import.lib.php:381 +#: libraries/display_export.lib.php:390 libraries/display_import.lib.php:381 msgid "Encoding Conversion:" msgstr "轉換編碼:" -#: libraries/display_export.lib.php:425 +#: libraries/display_export.lib.php:426 msgid "Rows:" msgstr "資料列數:" -#: libraries/display_export.lib.php:433 +#: libraries/display_export.lib.php:434 msgid "Dump some row(s)" msgstr "匯出部份資料列" -#: libraries/display_export.lib.php:449 +#: libraries/display_export.lib.php:450 msgid "Row to begin at:" msgstr "起始列數:" -#: libraries/display_export.lib.php:466 +#: libraries/display_export.lib.php:467 msgid "Dump all rows" msgstr "匯出所有資料列" -#: libraries/display_export.lib.php:482 libraries/display_export.lib.php:771 +#: libraries/display_export.lib.php:483 libraries/display_export.lib.php:772 msgid "Output:" msgstr "輸出:" -#: libraries/display_export.lib.php:491 libraries/display_export.lib.php:526 +#: libraries/display_export.lib.php:492 libraries/display_export.lib.php:527 #, php-format msgid "Save on server in the directory %s" msgstr "儲存到伺服器上的 %s 資料夾中" -#: libraries/display_export.lib.php:556 +#: libraries/display_export.lib.php:557 msgid "File name template:" msgstr "檔案名稱樣版:" -#: libraries/display_export.lib.php:558 +#: libraries/display_export.lib.php:559 msgid "@SERVER@ will become the server name" msgstr "@SERVER@ 會替換為伺服器名稱" -#: libraries/display_export.lib.php:560 +#: libraries/display_export.lib.php:561 msgid ", @DATABASE@ will become the database name" msgstr ",@DATABASE@ 會替換為資料庫名稱" -#: libraries/display_export.lib.php:562 +#: libraries/display_export.lib.php:563 msgid ", @TABLE@ will become the table name" msgstr ",@TABLE@ 會替換為資料表名稱" -#: libraries/display_export.lib.php:568 +#: libraries/display_export.lib.php:569 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -8024,98 +8049,98 @@ msgstr "" "外,以下資料格式也會被轉換: %3$s。其他的文字則會保持原樣。請參考 %4$s常見問" "題 (FAQ)%5$s 了解詳情。" -#: libraries/display_export.lib.php:623 +#: libraries/display_export.lib.php:624 msgid "use this for future exports" msgstr "以後也使用此設定" -#: libraries/display_export.lib.php:638 libraries/display_import.lib.php:181 +#: libraries/display_export.lib.php:639 libraries/display_import.lib.php:181 #: libraries/display_import.lib.php:195 msgid "Character set of the file:" msgstr "檔案編碼:" -#: libraries/display_export.lib.php:688 +#: libraries/display_export.lib.php:689 msgid "Compression:" msgstr "壓縮:" -#: libraries/display_export.lib.php:696 +#: libraries/display_export.lib.php:697 msgid "zipped" msgstr "zip 壓縮" -#: libraries/display_export.lib.php:703 +#: libraries/display_export.lib.php:704 msgid "gzipped" msgstr "gzip 壓縮" -#: libraries/display_export.lib.php:730 +#: libraries/display_export.lib.php:731 msgid "View output as text" msgstr "直接顯示在文字區塊" -#: libraries/display_export.lib.php:750 +#: libraries/display_export.lib.php:751 msgid "Export databases as separate files" msgstr "匯出資料庫為各別檔案" -#: libraries/display_export.lib.php:752 +#: libraries/display_export.lib.php:753 msgid "Export tables as separate files" msgstr "匯出資料表為各別檔案" -#: libraries/display_export.lib.php:782 libraries/display_export.lib.php:907 +#: libraries/display_export.lib.php:783 libraries/display_export.lib.php:908 msgid "Rename exported databases/tables/columns" msgstr "重新命名已匯出的資料庫/資料表/欄位" -#: libraries/display_export.lib.php:807 +#: libraries/display_export.lib.php:808 msgid "Save output to a file" msgstr "儲存爲檔案" -#: libraries/display_export.lib.php:840 +#: libraries/display_export.lib.php:841 msgid "Skip tables larger than" msgstr "略過資料表超過" -#: libraries/display_export.lib.php:934 +#: libraries/display_export.lib.php:935 msgid "Select database" msgstr "選擇資料庫" -#: libraries/display_export.lib.php:936 +#: libraries/display_export.lib.php:937 msgid "Select table" msgstr "選擇資料表" -#: libraries/display_export.lib.php:952 +#: libraries/display_export.lib.php:953 msgid "New database name" msgstr "新資料庫名稱" -#: libraries/display_export.lib.php:976 +#: libraries/display_export.lib.php:977 msgid "New table name" msgstr "新資料表名稱" -#: libraries/display_export.lib.php:986 +#: libraries/display_export.lib.php:987 msgid "Old column name" msgstr "舊欄位名稱" -#: libraries/display_export.lib.php:987 +#: libraries/display_export.lib.php:988 msgid "New column name" msgstr "新欄位名稱" -#: libraries/display_export.lib.php:1064 +#: libraries/display_export.lib.php:1063 msgid "Could not load export plugins, please check your installation!" msgstr "無法載入匯出外掛程式,請檢查安裝!" -#: libraries/display_git_revision.lib.php:53 +#: libraries/display_git_revision.lib.php:54 #, php-format msgid "%1$s from %2$s branch" msgstr "從 %2$s 分支的 %1$s" -#: libraries/display_git_revision.lib.php:55 +#: libraries/display_git_revision.lib.php:56 msgid "no branch" msgstr "沒有分支" -#: libraries/display_git_revision.lib.php:61 +#: libraries/display_git_revision.lib.php:62 msgid "Git revision:" msgstr "Git 版號:" -#: libraries/display_git_revision.lib.php:64 +#: libraries/display_git_revision.lib.php:65 #, php-format msgid "committed on %1$s by %2$s" msgstr "%2$s 提交了 %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%2$s 執筆於 %1$s" @@ -8540,86 +8565,86 @@ msgid "" "%sPrimeBase XT Home Page%s." msgstr "有關 PBXT 的更相關資訊請可以 %sPrimeBase XT 首頁%s 中找到。" -#: libraries/export.lib.php:124 libraries/export.lib.php:159 -#: libraries/export.lib.php:383 +#: libraries/export.lib.php:122 libraries/export.lib.php:157 +#: libraries/export.lib.php:381 #, php-format msgid "Insufficient space to save the file %s." msgstr "空間不足,無法儲存檔案 %s。" -#: libraries/export.lib.php:339 +#: libraries/export.lib.php:337 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "檔案 %s 已存在於伺服器, 請更改檔案名稱或選擇「覆寫己存在檔案」選項。" -#: libraries/export.lib.php:347 libraries/export.lib.php:355 +#: libraries/export.lib.php:345 libraries/export.lib.php:353 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "網頁伺服器沒有權限儲存 %s 檔案。" -#: libraries/export.lib.php:389 +#: libraries/export.lib.php:387 #, php-format msgid "Dump has been saved to file %s." msgstr "匯出資料已儲存至檔案 %s。" -#: libraries/import.lib.php:97 libraries/insert_edit.lib.php:124 -#: libraries/rte/rte_routines.lib.php:1472 libraries/sql.lib.php:1374 +#: libraries/import.lib.php:98 libraries/insert_edit.lib.php:125 +#: libraries/rte/rte_routines.lib.php:1474 libraries/sql.lib.php:1374 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 回傳空的查詢結果 (即零資料列)。" -#: libraries/import.lib.php:257 libraries/sql.lib.php:1388 +#: libraries/import.lib.php:258 libraries/sql.lib.php:1388 msgid "[ROLLBACK occurred.]" msgstr "[已發生 ROLLBACK。]" -#: libraries/import.lib.php:1203 +#: libraries/import.lib.php:1204 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列結構被建立或修改。您可以:" -#: libraries/import.lib.php:1206 +#: libraries/import.lib.php:1207 msgid "View a structure's contents by clicking on its name." msgstr "點選結構的名稱查看內容。" -#: libraries/import.lib.php:1209 +#: libraries/import.lib.php:1210 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "點選 \"選項\" 連結以修改項目的設定值。" -#: libraries/import.lib.php:1211 +#: libraries/import.lib.php:1212 msgid "Edit structure by following the \"Structure\" link." msgstr "點選「結構」連結以編輯。" -#: libraries/import.lib.php:1218 +#: libraries/import.lib.php:1219 #, php-format msgid "Go to database: %s" msgstr "前往資料庫: %s" -#: libraries/import.lib.php:1224 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1225 libraries/import.lib.php:1269 #, php-format msgid "Edit settings for %s" msgstr "修改 %s 的設定" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1254 #, php-format msgid "Go to table: %s" msgstr "前往資料表: %s" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, php-format msgid "Structure of %s" msgstr "%s 的結構" -#: libraries/import.lib.php:1279 +#: libraries/import.lib.php:1280 #, php-format msgid "Go to view: %s" msgstr "前往檢視: %s" -#: libraries/import.lib.php:1339 +#: libraries/import.lib.php:1340 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只有單一資料表的更新(UPDATE)與刪除(DELETE)查詢能模擬。" -#: libraries/import.lib.php:1562 +#: libraries/import.lib.php:1563 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8632,84 +8657,85 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "在第 %s 個欄位建立索引" -#: libraries/insert_edit.lib.php:233 +#: libraries/insert_edit.lib.php:234 #: libraries/navigation/nodes/NodeDatabaseChild.php:53 #: templates/database/designer/table_list.phtml:40 msgid "Hide" msgstr "隱藏" -#: libraries/insert_edit.lib.php:249 +#: libraries/insert_edit.lib.php:250 #: libraries/navigation/nodes/NodeFunction.php:30 -#: libraries/rte/rte_routines.lib.php:1614 +#: libraries/rte/rte_routines.lib.php:1615 #: templates/table/search/table_header.phtml:4 msgid "Function" msgstr "函數" -#: libraries/insert_edit.lib.php:607 +#: libraries/insert_edit.lib.php:608 msgid "Because of its length,
this column might not be editable." msgstr "因長度問題,
該欄位可能無法編輯。" -#: libraries/insert_edit.lib.php:1102 +#: libraries/insert_edit.lib.php:1103 msgid "Binary - do not edit" msgstr "二進位 - 無法編輯" -#: libraries/insert_edit.lib.php:1238 libraries/server_privileges.lib.php:471 +#: libraries/insert_edit.lib.php:1239 +#: templates/privileges/column_privileges.phtml:17 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "或" -#: libraries/insert_edit.lib.php:1239 +#: libraries/insert_edit.lib.php:1240 msgid "web server upload directory:" msgstr "網站伺服器上傳資料夾:" -#: libraries/insert_edit.lib.php:1419 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1420 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "修改/新增" -#: libraries/insert_edit.lib.php:1469 +#: libraries/insert_edit.lib.php:1470 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續新增 %s 列" -#: libraries/insert_edit.lib.php:1499 +#: libraries/insert_edit.lib.php:1500 msgid "and then" msgstr "然後" -#: libraries/insert_edit.lib.php:1532 +#: libraries/insert_edit.lib.php:1533 msgid "Insert as new row" msgstr "以新資料列新增" -#: libraries/insert_edit.lib.php:1535 +#: libraries/insert_edit.lib.php:1536 msgid "Insert as new row and ignore errors" msgstr "以新資料列新增 (忽略錯誤)" -#: libraries/insert_edit.lib.php:1538 +#: libraries/insert_edit.lib.php:1539 msgid "Show insert query" msgstr "顯示新增指令" -#: libraries/insert_edit.lib.php:1558 +#: libraries/insert_edit.lib.php:1559 msgid "Go back to previous page" msgstr "返回上一頁" -#: libraries/insert_edit.lib.php:1561 +#: libraries/insert_edit.lib.php:1562 msgid "Insert another new row" msgstr "新增其他新資料列" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1567 msgid "Go back to this page" msgstr "返回到本頁" -#: libraries/insert_edit.lib.php:1589 +#: libraries/insert_edit.lib.php:1590 msgid "Edit next row" msgstr "編輯下一行" -#: libraries/insert_edit.lib.php:1611 +#: libraries/insert_edit.lib.php:1612 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動。" -#: libraries/insert_edit.lib.php:1648 libraries/replication_gui.lib.php:543 -#: libraries/rte/rte_routines.lib.php:1616 +#: libraries/insert_edit.lib.php:1649 libraries/replication_gui.lib.php:544 +#: libraries/rte/rte_routines.lib.php:1617 #: libraries/server_status_variables.lib.php:218 #: templates/database/designer/having_query_panel.phtml:100 #: templates/database/designer/options_panel.phtml:73 @@ -8720,31 +8746,31 @@ msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動。 msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:2010 libraries/sql.lib.php:1371 +#: libraries/insert_edit.lib.php:2011 libraries/sql.lib.php:1371 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:2035 libraries/sql.lib.php:1349 +#: libraries/insert_edit.lib.php:2036 libraries/sql.lib.php:1349 #, php-format msgid "Inserted row id: %1$d" msgstr "新增的資料列行 id: %1$d" -#: libraries/mult_submits.inc.php:328 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "成功!" #: libraries/mult_submits.lib.php:345 libraries/operations.lib.php:171 -#: libraries/operations.lib.php:1263 libraries/tracking.lib.php:534 +#: libraries/operations.lib.php:1255 libraries/tracking.lib.php:527 msgid "Structure only" msgstr "僅結構" #: libraries/mult_submits.lib.php:347 libraries/operations.lib.php:172 -#: libraries/operations.lib.php:1264 libraries/tracking.lib.php:540 +#: libraries/operations.lib.php:1256 libraries/tracking.lib.php:533 msgid "Structure and data" msgstr "結構和資料" #: libraries/mult_submits.lib.php:349 libraries/operations.lib.php:173 -#: libraries/operations.lib.php:1265 libraries/tracking.lib.php:537 +#: libraries/operations.lib.php:1257 libraries/tracking.lib.php:530 msgid "Data only" msgstr "僅資料" @@ -8753,14 +8779,14 @@ msgid "Add AUTO INCREMENT value" msgstr "加入自動遞增 (AUTO INCREMENT) 數值" #: libraries/mult_submits.lib.php:355 libraries/operations.lib.php:227 -#: libraries/operations.lib.php:1288 +#: libraries/operations.lib.php:1280 msgid "Add constraints" msgstr "加入限制(Constraint)" #: libraries/mult_submits.lib.php:357 libraries/operations.lib.php:102 #: libraries/operations.lib.php:245 libraries/operations.lib.php:863 -#: libraries/operations.lib.php:954 libraries/operations.lib.php:1307 -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/operations.lib.php:950 libraries/operations.lib.php:1299 +#: libraries/rte/rte_routines.lib.php:1015 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "調整權限" @@ -8805,8 +8831,8 @@ msgstr "Procedure:" msgid "Views:" msgstr "視表:" -#: libraries/navigation/Navigation.php:222 libraries/tracking.lib.php:288 -#: libraries/tracking.lib.php:1634 tbl_change.php:156 +#: libraries/navigation/Navigation.php:221 libraries/tracking.lib.php:288 +#: libraries/tracking.lib.php:1600 tbl_change.php:156 msgid "Show" msgstr "顯示" @@ -8849,17 +8875,17 @@ msgid "%s result found" msgid_plural "%s results found" msgstr[0] "找到 %s 筆結果" -#: libraries/navigation/NavigationTree.php:1357 -#: libraries/navigation/NavigationTree.php:1389 +#: libraries/navigation/NavigationTree.php:1358 +#: libraries/navigation/NavigationTree.php:1390 msgid "Type to filter these, Enter to search all" msgstr "輸入文字來過濾清單,按下 Enter 來搜尋全部" -#: libraries/navigation/NavigationTree.php:1359 -#: libraries/navigation/NavigationTree.php:1390 +#: libraries/navigation/NavigationTree.php:1360 +#: libraries/navigation/NavigationTree.php:1391 msgid "Clear fast filter" msgstr "清除快速搜尋" -#: libraries/navigation/NavigationTree.php:1416 +#: libraries/navigation/NavigationTree.php:1417 msgid "Collapse all" msgstr "全部摺疊" @@ -8874,7 +8900,7 @@ msgstr "不正確的類別名稱 \"%1$s\",使用預設的 \"Node\"" msgid "Could not load class \"%1$s\"" msgstr "無法載入類別 \"%1$s\"" -#: libraries/navigation/nodes/Node.php:801 +#: libraries/navigation/nodes/Node.php:798 msgid "Expand/Collapse" msgstr "展開/摺疊" @@ -8893,7 +8919,7 @@ msgstr "新增" msgid "Database operations" msgstr "資料庫操作" -#: libraries/navigation/nodes/NodeDatabase.php:700 +#: libraries/navigation/nodes/NodeDatabase.php:684 msgid "Show hidden items" msgstr "顯示隱藏項目" @@ -8994,11 +9020,11 @@ msgid "" "column', it'll move to next step)." msgstr "選擇一個可切割為一個以上的欄位 (選擇 '無此欄位',將會進行下一階段)。" -#: libraries/normalization.lib.php:153 normalization.php:18 +#: libraries/normalization.lib.php:153 normalization.php:19 msgid "Select one…" msgstr "請選擇一項…" -#: libraries/normalization.lib.php:154 normalization.php:19 +#: libraries/normalization.lib.php:154 normalization.php:20 msgid "No such column" msgstr "無此欄位" @@ -9245,8 +9271,8 @@ msgid "Rename database to" msgstr "重新命名資料庫為" #: libraries/operations.lib.php:95 libraries/operations.lib.php:239 -#: libraries/operations.lib.php:857 libraries/operations.lib.php:948 -#: libraries/operations.lib.php:1301 +#: libraries/operations.lib.php:857 libraries/operations.lib.php:944 +#: libraries/operations.lib.php:1293 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9290,177 +9316,177 @@ msgstr "(單一)" msgid "Move table to (database.table)" msgstr "移動資料表到 (資料庫.資料表)" -#: libraries/operations.lib.php:931 +#: libraries/operations.lib.php:927 msgid "Rename table to" msgstr "重新命名資料表為" -#: libraries/operations.lib.php:971 +#: libraries/operations.lib.php:967 msgid "Table comments" msgstr "資料表說明" -#: libraries/operations.lib.php:1044 +#: libraries/operations.lib.php:1036 msgid "Table options" msgstr "資料表選項" -#: libraries/operations.lib.php:1051 templates/server/engines/engines.phtml:4 +#: libraries/operations.lib.php:1043 templates/server/engines/engines.phtml:4 msgid "Storage Engine" msgstr "儲存引擎" -#: libraries/operations.lib.php:1075 +#: libraries/operations.lib.php:1067 msgid "Change all column collations" msgstr "更改所有欄位編碼與排序" -#: libraries/operations.lib.php:1246 +#: libraries/operations.lib.php:1238 msgid "Copy table to (database.table)" msgstr "複製資料表到 (資料庫.資料表)" -#: libraries/operations.lib.php:1322 +#: libraries/operations.lib.php:1314 msgid "Switch to copied table" msgstr "切換到複製的資料表" -#: libraries/operations.lib.php:1349 +#: libraries/operations.lib.php:1338 #: templates/database/structure/check_all_tables.phtml:19 msgid "Table maintenance" msgstr "資料表維護" -#: libraries/operations.lib.php:1387 +#: libraries/operations.lib.php:1371 #: templates/database/structure/check_all_tables.phtml:20 msgid "Analyze table" msgstr "分析資料表" -#: libraries/operations.lib.php:1402 +#: libraries/operations.lib.php:1386 #: templates/database/structure/check_all_tables.phtml:21 msgid "Check table" msgstr "檢查資料表" -#: libraries/operations.lib.php:1416 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:22 msgid "Checksum table" msgstr "Checksum 資料表" -#: libraries/operations.lib.php:1430 +#: libraries/operations.lib.php:1414 msgid "Defragment table" msgstr "重組資料表" -#: libraries/operations.lib.php:1442 +#: libraries/operations.lib.php:1426 #, php-format msgid "Table %s has been flushed." msgstr "已更新資料表 %s。" -#: libraries/operations.lib.php:1448 +#: libraries/operations.lib.php:1432 msgid "Flush the table (FLUSH)" msgstr "更新資料表 (FLUSH)" -#: libraries/operations.lib.php:1462 +#: libraries/operations.lib.php:1446 #: templates/database/structure/check_all_tables.phtml:23 -#: templates/table/structure/display_table_stats.phtml:59 +#: templates/table/structure/display_table_stats.phtml:58 msgid "Optimize table" msgstr "最佳化資料表" -#: libraries/operations.lib.php:1477 +#: libraries/operations.lib.php:1461 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" msgstr "修復資料表" -#: libraries/operations.lib.php:1523 +#: libraries/operations.lib.php:1507 #: templates/database/structure/check_all_tables.phtml:15 #: view_operations.php:144 msgid "Delete data or table" msgstr "刪除資料或資料表" -#: libraries/operations.lib.php:1531 +#: libraries/operations.lib.php:1515 msgid "Empty the table (TRUNCATE)" msgstr "清空資料表 (TRUNCATE)" -#: libraries/operations.lib.php:1539 +#: libraries/operations.lib.php:1523 msgid "Delete the table (DROP)" msgstr "刪除資料表 (DROP)" -#: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:174 +#: libraries/operations.lib.php:1563 +#: templates/table/structure/display_structure.phtml:173 msgid "Analyze" msgstr "分析" -#: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:175 +#: libraries/operations.lib.php:1564 +#: templates/table/structure/display_structure.phtml:174 msgid "Check" msgstr "檢查" -#: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:176 +#: libraries/operations.lib.php:1565 +#: templates/table/structure/display_structure.phtml:175 msgid "Optimize" msgstr "最佳化" -#: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:177 +#: libraries/operations.lib.php:1566 +#: templates/table/structure/display_structure.phtml:176 msgid "Rebuild" msgstr "重建" -#: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:178 +#: libraries/operations.lib.php:1567 +#: templates/table/structure/display_structure.phtml:177 msgid "Repair" msgstr "修復" -#: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:179 +#: libraries/operations.lib.php:1568 +#: templates/table/structure/display_structure.phtml:178 msgid "Truncate" msgstr "清空" -#: libraries/operations.lib.php:1598 +#: libraries/operations.lib.php:1582 msgid "Coalesce" msgstr "合併" -#: libraries/operations.lib.php:1607 +#: libraries/operations.lib.php:1591 msgid "Partition maintenance" msgstr "分區維護" -#: libraries/operations.lib.php:1624 +#: libraries/operations.lib.php:1608 #, php-format msgid "Partition %s" msgstr "分區 %s" -#: libraries/operations.lib.php:1642 -#: templates/table/structure/display_partitions.phtml:138 +#: libraries/operations.lib.php:1626 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "刪除分區" -#: libraries/operations.lib.php:1668 +#: libraries/operations.lib.php:1652 msgid "Check referential integrity:" msgstr "檢查引用完整性:" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2035 msgid "Can't move table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2085 +#: libraries/operations.lib.php:2037 msgid "Can't copy table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2109 +#: libraries/operations.lib.php:2061 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已將資料表 %s 移動到 %s。已調整權限。" -#: libraries/operations.lib.php:2116 +#: libraries/operations.lib.php:2068 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已將資料表 %s 複製爲 %s。已調整權限。" -#: libraries/operations.lib.php:2125 +#: libraries/operations.lib.php:2077 #, php-format msgid "Table %s has been moved to %s." msgstr "已將資料表 %s 移動到 %s。" -#: libraries/operations.lib.php:2129 +#: libraries/operations.lib.php:2081 #, php-format msgid "Table %s has been copied to %s." msgstr "已將資料表 %s 複製爲 %s。" -#: libraries/operations.lib.php:2151 +#: libraries/operations.lib.php:2103 msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" -#: libraries/plugin_interface.lib.php:574 +#: libraries/plugin_interface.lib.php:573 msgid "This format has no options" msgstr "該格式沒有選項" @@ -9487,25 +9513,25 @@ msgstr "顯示顏色" msgid "Only show keys" msgstr "僅顯示鍵值" -#: libraries/plugins/auth/AuthenticationConfig.php:85 +#: libraries/plugins/auth/AuthenticationConfig.php:80 msgid "Cannot connect: invalid settings." msgstr "無法連線: 設定錯誤." -#: libraries/plugins/auth/AuthenticationConfig.php:99 +#: libraries/plugins/auth/AuthenticationConfig.php:94 #: libraries/plugins/auth/AuthenticationCookie.php:111 #: libraries/plugins/auth/AuthenticationHttp.php:82 #, php-format msgid "Welcome to %s" msgstr "歡迎使用 %s" -#: libraries/plugins/auth/AuthenticationConfig.php:115 +#: libraries/plugins/auth/AuthenticationConfig.php:110 #, 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 "您可能還沒有建立設定檔案。您可以使用 %1$s 設定指令 %2$s 來建立。" -#: libraries/plugins/auth/AuthenticationConfig.php:135 +#: libraries/plugins/auth/AuthenticationConfig.php:130 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 " @@ -9515,7 +9541,7 @@ msgstr "" "phpMyAdmin 嘗試連線到 MySQL 伺服器,但伺服器拒絕連線。您應該檢查設定檔案中的" "主機、帳號和密碼,並確認這些資訊與 MySQL 伺服器管理員所給出的資訊一致。" -#: libraries/plugins/auth/AuthenticationConfig.php:163 +#: libraries/plugins/auth/AuthenticationConfig.php:158 msgid "Retry to connect" msgstr "重試連接" @@ -9540,15 +9566,15 @@ msgstr "使用者名稱:" msgid "Server Choice:" msgstr "選擇伺服器:" -#: libraries/plugins/auth/AuthenticationCookie.php:294 +#: libraries/plugins/auth/AuthenticationCookie.php:306 msgid "Entered captcha is wrong, try again!" msgstr "輸入驗證碼錯誤,請再試一次!" -#: libraries/plugins/auth/AuthenticationCookie.php:298 +#: libraries/plugins/auth/AuthenticationCookie.php:310 msgid "Please enter correct captcha!" msgstr "請輸入正確的驗證碼!" -#: libraries/plugins/auth/AuthenticationCookie.php:322 +#: libraries/plugins/auth/AuthenticationCookie.php:334 msgid "You are not allowed to log in to this MySQL server!" msgstr "您不被允許登入此 MySQL 伺服器!" @@ -9609,7 +9635,7 @@ msgstr "資料匯出選項" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2348 +#: libraries/plugins/export/ExportSql.php:2346 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "資料表的匯出資料" @@ -9618,7 +9644,7 @@ msgstr "資料表的匯出資料" #: libraries/plugins/export/ExportOdt.php:608 #: libraries/plugins/export/ExportTexytext.php:448 #: libraries/plugins/export/PMA_ExportPdf.php:316 -#: libraries/rte/rte_list.lib.php:97 libraries/rte/rte_triggers.lib.php:366 +#: libraries/rte/rte_list.lib.php:98 libraries/rte/rte_triggers.lib.php:367 msgid "Event" msgstr "事件" @@ -9626,8 +9652,8 @@ msgstr "事件" #: libraries/plugins/export/ExportOdt.php:611 #: libraries/plugins/export/ExportTexytext.php:449 #: libraries/plugins/export/PMA_ExportPdf.php:318 -#: libraries/rte/rte_events.lib.php:484 libraries/rte/rte_routines.lib.php:1000 -#: libraries/rte/rte_triggers.lib.php:380 +#: libraries/rte/rte_events.lib.php:486 libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:381 msgid "Definition" msgstr "定義" @@ -9713,7 +9739,7 @@ msgstr "首行儲存欄位名稱:" #: libraries/plugins/export/ExportLatex.php:213 #: libraries/plugins/export/ExportSql.php:691 #: libraries/plugins/export/ExportXml.php:235 -#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:702 +#: libraries/replication_gui.lib.php:435 libraries/replication_gui.lib.php:697 msgid "Host:" msgstr "主機:" @@ -10230,7 +10256,7 @@ msgstr "目錄" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:903 +#: libraries/tracking.lib.php:889 #: templates/table/structure/table_structure_header.phtml:16 msgid "Extra" msgstr "額外資訊" @@ -10585,11 +10611,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "請重新登入 phpMyAdmin 以載入新設定並使其生效。" -#: libraries/relation.lib.php:1686 +#: libraries/relation.lib.php:1680 msgid "no description" msgstr "無說明" -#: libraries/relation.lib.php:1879 +#: libraries/relation.lib.php:1873 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -10598,7 +10624,7 @@ msgstr "" "您沒有權限建立名稱為 'phpmyadmin' 的資料庫。您可能需至 '操作' 頁籤設定 " "phpMyAdmin 設定儲存空間。" -#: libraries/relation.lib.php:1994 +#: libraries/relation.lib.php:1988 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -10607,39 +10633,39 @@ msgstr "" "%s建立%s名稱為 'phpmyadmin' 的資料庫並安裝 phpMyAdmin 設定儲存空間於該資料" "庫。" -#: libraries/relation.lib.php:2002 +#: libraries/relation.lib.php:1996 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "於目前資料庫%s建立%s phpMyAdmin 設定儲存空間。" -#: libraries/relation.lib.php:2010 +#: libraries/relation.lib.php:2004 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%s建立%s缺少的 phpMyAdmin 設定儲存空間資料表。" -#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:344 +#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:345 #: templates/server/databases/table_header.phtml:28 msgid "Master replication" msgstr "主要(Master)備援伺服器" -#: libraries/replication_gui.lib.php:46 +#: libraries/replication_gui.lib.php:47 msgid "This server is configured as master in a replication process." msgstr "此伺服器已被設定爲一個備援程序中的主要(Master)伺服器。" -#: libraries/replication_gui.lib.php:54 +#: libraries/replication_gui.lib.php:55 msgid "Show connected slaves" msgstr "顯示已連線的次要(Slave)伺服器" -#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:698 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:693 msgid "Add slave replication user" msgstr "新增次要(Slave)伺服器使用者" -#: libraries/replication_gui.lib.php:87 +#: libraries/replication_gui.lib.php:88 msgid "Master configuration" msgstr "主要伺服器設定" -#: libraries/replication_gui.lib.php:89 +#: libraries/replication_gui.lib.php:90 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 " @@ -10651,19 +10677,19 @@ msgstr "" "略某些資料庫 (當您想備援大多數資料庫時很有用) 或者僅備援某些資料庫。請選擇模" "式:" -#: libraries/replication_gui.lib.php:98 +#: libraries/replication_gui.lib.php:99 msgid "Replicate all databases; Ignore:" msgstr "備援所有資料庫,除了下列資料庫:" -#: libraries/replication_gui.lib.php:100 +#: libraries/replication_gui.lib.php:101 msgid "Ignore all databases; Replicate:" msgstr "不備援所有資料庫,只挑選下列資料庫:" -#: libraries/replication_gui.lib.php:104 +#: libraries/replication_gui.lib.php:105 msgid "Please select databases:" msgstr "請選擇資料庫:" -#: libraries/replication_gui.lib.php:108 +#: libraries/replication_gui.lib.php:109 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10671,7 +10697,7 @@ msgstr "" "現在,將下列設定新增到您的 my.cnf 設定檔中 [mysqld] 設定區塊的最末端,然後重" "新啓動 MySQL 伺服器。" -#: libraries/replication_gui.lib.php:113 +#: libraries/replication_gui.lib.php:114 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 " @@ -10680,69 +10706,69 @@ msgstr "" "當 MySQL 伺服器重新啓動後,請點選 執行 按鈕。您應該看見資訊提示說明此伺服器" "已經被設定爲主要伺服器。" -#: libraries/replication_gui.lib.php:140 +#: libraries/replication_gui.lib.php:141 #: templates/server/databases/table_header.phtml:33 msgid "Slave replication" msgstr "次要(Slave)備援伺服器" -#: libraries/replication_gui.lib.php:148 +#: libraries/replication_gui.lib.php:149 msgid "Master connection:" msgstr "主要(Master)伺服器連線:" -#: libraries/replication_gui.lib.php:215 +#: libraries/replication_gui.lib.php:216 msgid "Slave SQL Thread not running!" msgstr "從 SQL 程序未啓動!" -#: libraries/replication_gui.lib.php:220 +#: libraries/replication_gui.lib.php:221 msgid "Slave IO Thread not running!" msgstr "從 IO 程序未啓動!" -#: libraries/replication_gui.lib.php:232 +#: libraries/replication_gui.lib.php:233 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "伺服器已被設定爲一個備援程序中的次要(Slave)伺服器。您是否要:" -#: libraries/replication_gui.lib.php:238 +#: libraries/replication_gui.lib.php:239 msgid "See slave status table" msgstr "查看次要伺服器狀態" -#: libraries/replication_gui.lib.php:243 +#: libraries/replication_gui.lib.php:244 msgid "Control slave:" msgstr "控制 slave 伺服器:" -#: libraries/replication_gui.lib.php:249 +#: libraries/replication_gui.lib.php:250 msgid "Full start" msgstr "全部啓動" -#: libraries/replication_gui.lib.php:250 +#: libraries/replication_gui.lib.php:251 msgid "Full stop" msgstr "全部停止" -#: libraries/replication_gui.lib.php:253 +#: libraries/replication_gui.lib.php:254 msgid "Reset slave" msgstr "重設次要(Slave)伺服器" -#: libraries/replication_gui.lib.php:256 +#: libraries/replication_gui.lib.php:257 msgid "Start SQL Thread only" msgstr "僅啓動 SQL 程序" -#: libraries/replication_gui.lib.php:259 +#: libraries/replication_gui.lib.php:260 msgid "Stop SQL Thread only" msgstr "僅停止 SQL 程序" -#: libraries/replication_gui.lib.php:263 +#: libraries/replication_gui.lib.php:264 msgid "Start IO Thread only" msgstr "僅啓動 IO 程序" -#: libraries/replication_gui.lib.php:266 +#: libraries/replication_gui.lib.php:267 msgid "Stop IO Thread only" msgstr "僅停止 IO 程序" -#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:402 +#: libraries/replication_gui.lib.php:276 libraries/replication_gui.lib.php:403 msgid "Change or reconfigure master server" msgstr "修改或重新設定主要(Master)伺服器" -#: libraries/replication_gui.lib.php:286 +#: libraries/replication_gui.lib.php:287 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10751,24 +10777,24 @@ msgstr "" "此伺服器尚未設定爲一個備援程序中的次要(Slave)伺服器。您想現在" "設定嗎?" -#: libraries/replication_gui.lib.php:308 +#: libraries/replication_gui.lib.php:309 msgid "Error management:" msgstr "錯誤管理:" -#: libraries/replication_gui.lib.php:311 +#: libraries/replication_gui.lib.php:312 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "忽略錯誤可能導致主要與次要伺服器間不同步!" -#: libraries/replication_gui.lib.php:315 +#: libraries/replication_gui.lib.php:316 msgid "Skip current error" msgstr "忽略目前錯誤" -#: libraries/replication_gui.lib.php:320 +#: libraries/replication_gui.lib.php:321 #, php-format msgid "Skip next %s errors." msgstr "忽略接下來摸 %s 個錯誤。" -#: libraries/replication_gui.lib.php:347 +#: libraries/replication_gui.lib.php:348 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10777,11 +10803,11 @@ msgstr "" "此伺服器尚未設定爲一個備援程序中的主要(Master)伺服器。您想現在" "設定嗎?" -#: libraries/replication_gui.lib.php:401 +#: libraries/replication_gui.lib.php:402 msgid "Slave configuration" msgstr "次要伺服器設定" -#: libraries/replication_gui.lib.php:404 +#: libraries/replication_gui.lib.php:405 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -10789,165 +10815,165 @@ msgstr "" "請確認在您的設定檔(my.cnf)中已設定了一個唯一的伺服器代號(server-id)。若沒有," "請將下列設定新增到 [mysqld] 設定區塊中:" -#: libraries/replication_gui.lib.php:411 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1614 +#: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:782 +#: libraries/server_privileges.lib.php:1492 msgid "User name:" msgstr "帳號:" -#: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:791 -#: libraries/replication_gui.lib.php:804 -#: libraries/server_privileges.lib.php:1619 -#: libraries/server_privileges.lib.php:1641 -#: libraries/server_privileges.lib.php:2648 -#: libraries/server_privileges.lib.php:3614 +#: libraries/replication_gui.lib.php:418 libraries/replication_gui.lib.php:786 +#: libraries/replication_gui.lib.php:799 +#: libraries/server_privileges.lib.php:1497 +#: libraries/server_privileges.lib.php:1519 +#: libraries/server_privileges.lib.php:2527 +#: libraries/server_privileges.lib.php:3488 msgid "User name" msgstr "帳號" -#: libraries/replication_gui.lib.php:428 libraries/replication_gui.lib.php:854 -#: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1780 -#: libraries/server_privileges.lib.php:1797 -#: libraries/server_privileges.lib.php:3616 +#: libraries/replication_gui.lib.php:429 libraries/replication_gui.lib.php:849 +#: libraries/replication_gui.lib.php:861 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:1675 +#: libraries/server_privileges.lib.php:3490 msgid "Password" msgstr "密碼" -#: libraries/replication_gui.lib.php:446 +#: libraries/replication_gui.lib.php:447 msgid "Port:" msgstr "連接埠:" -#: libraries/replication_gui.lib.php:530 +#: libraries/replication_gui.lib.php:531 msgid "Master status" msgstr "主要伺服器狀態" -#: libraries/replication_gui.lib.php:533 +#: libraries/replication_gui.lib.php:534 msgid "Slave status" msgstr "次要伺服器狀態" -#: libraries/replication_gui.lib.php:542 +#: libraries/replication_gui.lib.php:543 #: libraries/server_status_variables.lib.php:217 #: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "變數" -#: libraries/replication_gui.lib.php:620 libraries/replication_gui.lib.php:706 -#: libraries/replication_gui.lib.php:839 +#: libraries/replication_gui.lib.php:618 libraries/replication_gui.lib.php:701 +#: libraries/replication_gui.lib.php:834 #: libraries/server_status_processes.lib.php:76 msgid "Host" msgstr "主機" -#: libraries/replication_gui.lib.php:640 +#: libraries/replication_gui.lib.php:635 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "只有執行時加入 --report-host=host_name 參數的次要伺服器會列在此清單。" -#: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1715 +#: libraries/replication_gui.lib.php:739 +#: libraries/server_privileges.lib.php:1593 msgid "Any host" msgstr "任意主機" -#: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1723 +#: libraries/replication_gui.lib.php:744 +#: libraries/server_privileges.lib.php:1601 msgid "Local" msgstr "本機" -#: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1732 +#: libraries/replication_gui.lib.php:751 +#: libraries/server_privileges.lib.php:1610 msgid "This Host" msgstr "此主機" -#: libraries/replication_gui.lib.php:795 -#: libraries/server_privileges.lib.php:1625 +#: libraries/replication_gui.lib.php:790 +#: libraries/server_privileges.lib.php:1503 msgid "Any user" msgstr "任意使用者" -#: libraries/replication_gui.lib.php:800 libraries/replication_gui.lib.php:833 -#: libraries/replication_gui.lib.php:862 -#: libraries/server_privileges.lib.php:1751 +#: libraries/replication_gui.lib.php:795 libraries/replication_gui.lib.php:828 +#: libraries/replication_gui.lib.php:857 +#: libraries/server_privileges.lib.php:1629 msgid "Use text field:" msgstr "使用文字欄位:" -#: libraries/replication_gui.lib.php:827 -#: libraries/server_privileges.lib.php:1742 +#: libraries/replication_gui.lib.php:822 +#: libraries/server_privileges.lib.php:1620 msgid "Use Host Table" msgstr "使用主機表" -#: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1768 +#: libraries/replication_gui.lib.php:838 +#: libraries/server_privileges.lib.php:1646 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主機表時,此處的資料會被主機資料表中的資料所替換。" -#: libraries/replication_gui.lib.php:874 -#: libraries/server_privileges.lib.php:1809 +#: libraries/replication_gui.lib.php:869 +#: libraries/server_privileges.lib.php:1690 msgid "Re-type" msgstr "重新輸入" -#: libraries/replication_gui.lib.php:878 +#: libraries/replication_gui.lib.php:873 msgid "Generate password:" msgstr "產生密碼:" -#: libraries/replication_gui.lib.php:916 +#: libraries/replication_gui.lib.php:911 msgid "Replication started successfully." msgstr "備援啟動成功。" -#: libraries/replication_gui.lib.php:917 +#: libraries/replication_gui.lib.php:912 msgid "Error starting replication." msgstr "啟動備援錯誤。" -#: libraries/replication_gui.lib.php:920 +#: libraries/replication_gui.lib.php:915 msgid "Replication stopped successfully." msgstr "備援停止成功。" -#: libraries/replication_gui.lib.php:921 +#: libraries/replication_gui.lib.php:916 msgid "Error stopping replication." msgstr "備援停止錯誤。" -#: libraries/replication_gui.lib.php:924 +#: libraries/replication_gui.lib.php:919 msgid "Replication resetting successfully." msgstr "備援重設成功。" -#: libraries/replication_gui.lib.php:925 +#: libraries/replication_gui.lib.php:920 msgid "Error resetting replication." msgstr "重設備援錯誤。" -#: libraries/replication_gui.lib.php:928 +#: libraries/replication_gui.lib.php:923 msgid "Success." msgstr "成功。" -#: libraries/replication_gui.lib.php:929 +#: libraries/replication_gui.lib.php:924 msgid "Error." msgstr "錯誤。" -#: libraries/replication_gui.lib.php:974 +#: libraries/replication_gui.lib.php:969 msgid "Unknown error" msgstr "未知錯誤" -#: libraries/replication_gui.lib.php:984 +#: libraries/replication_gui.lib.php:979 #, php-format msgid "Unable to connect to master %s." msgstr "無法連線到主要伺服器 %s。" -#: libraries/replication_gui.lib.php:995 +#: libraries/replication_gui.lib.php:990 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "無法讀取主要(Master)伺服器記錄。主要伺服器的權限設定可能有問題。" -#: libraries/replication_gui.lib.php:1013 +#: libraries/replication_gui.lib.php:1008 msgid "Unable to change master!" msgstr "無法更改主要伺服器!" -#: libraries/replication_gui.lib.php:1017 +#: libraries/replication_gui.lib.php:1012 #, php-format msgid "Master server changed successfully to %s." msgstr "主要伺服器成功更改至 %s。" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 -#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:227 -#: libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:368 -#: libraries/rte/rte_routines.lib.php:1481 +#: libraries/rte/rte_events.lib.php:150 libraries/rte/rte_routines.lib.php:226 +#: libraries/rte/rte_routines.lib.php:253 +#: libraries/rte/rte_routines.lib.php:367 +#: libraries/rte/rte_routines.lib.php:1483 #: libraries/rte/rte_triggers.lib.php:85 libraries/rte/rte_triggers.lib.php:94 #: libraries/rte/rte_triggers.lib.php:126 #, php-format @@ -10968,7 +10994,7 @@ msgstr "事件 %1$s 已被修改。" msgid "Event %1$s has been created." msgstr "建立事件 %1$s 成功。" -#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:274 +#: libraries/rte/rte_events.lib.php:171 libraries/rte/rte_routines.lib.php:273 #: libraries/rte/rte_triggers.lib.php:147 msgid "One or more errors have occurred while processing your request:" msgstr "在處理您的請求時發生一個或多個錯誤:" @@ -10977,75 +11003,75 @@ msgstr "在處理您的請求時發生一個或多個錯誤:" msgid "Edit event" msgstr "編輯事件" -#: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_routines.lib.php:897 -#: libraries/rte/rte_triggers.lib.php:326 view_create.php:205 +#: libraries/rte/rte_events.lib.php:390 libraries/rte/rte_routines.lib.php:898 +#: libraries/rte/rte_triggers.lib.php:327 view_create.php:205 msgid "Details" msgstr "詳細資訊" -#: libraries/rte/rte_events.lib.php:391 +#: libraries/rte/rte_events.lib.php:393 msgid "Event name" msgstr "事件名稱" -#: libraries/rte/rte_events.lib.php:434 libraries/rte/rte_routines.lib.php:920 +#: libraries/rte/rte_events.lib.php:436 libraries/rte/rte_routines.lib.php:921 #, php-format msgid "Change to %s" msgstr "修改為 %s" -#: libraries/rte/rte_events.lib.php:440 +#: libraries/rte/rte_events.lib.php:442 msgid "Execute at" msgstr "執行於" -#: libraries/rte/rte_events.lib.php:448 +#: libraries/rte/rte_events.lib.php:450 msgid "Execute every" msgstr "執行每個" -#: libraries/rte/rte_events.lib.php:467 +#: libraries/rte/rte_events.lib.php:469 msgctxt "Start of recurring event" msgid "Start" msgstr "起始" -#: libraries/rte/rte_events.lib.php:476 +#: libraries/rte/rte_events.lib.php:478 msgctxt "End of recurring event" msgid "End" msgstr "結束" -#: libraries/rte/rte_events.lib.php:490 +#: libraries/rte/rte_events.lib.php:492 msgid "On completion preserve" msgstr "完成時保留" -#: libraries/rte/rte_events.lib.php:495 libraries/rte/rte_routines.lib.php:1035 -#: libraries/rte/rte_triggers.lib.php:386 view_create.php:234 +#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:1036 +#: libraries/rte/rte_triggers.lib.php:387 view_create.php:234 msgid "Definer" msgstr "定義" -#: libraries/rte/rte_events.lib.php:539 libraries/rte/rte_routines.lib.php:1116 -#: libraries/rte/rte_triggers.lib.php:425 +#: libraries/rte/rte_events.lib.php:541 libraries/rte/rte_routines.lib.php:1117 +#: libraries/rte/rte_triggers.lib.php:426 msgid "The definer must be in the \"username@hostname\" format!" msgstr "定義必須使用 \"username@hostname\" 格式!" -#: libraries/rte/rte_events.lib.php:546 +#: libraries/rte/rte_events.lib.php:548 msgid "You must provide an event name!" msgstr "您必須填寫事件名稱!" -#: libraries/rte/rte_events.lib.php:561 +#: libraries/rte/rte_events.lib.php:563 msgid "You must provide a valid interval value for the event." msgstr "您必須為事件指定一個正確的時間間隔。" -#: libraries/rte/rte_events.lib.php:580 +#: libraries/rte/rte_events.lib.php:582 msgid "You must provide a valid execution time for the event." msgstr "您必須為事件指定一個正確的執行時間。" -#: libraries/rte/rte_events.lib.php:584 +#: libraries/rte/rte_events.lib.php:586 msgid "You must provide a valid type for the event." msgstr "您必須為事件指定一個正確的類型。" -#: libraries/rte/rte_events.lib.php:608 +#: libraries/rte/rte_events.lib.php:610 msgid "You must provide an event definition." msgstr "您必須為事件給予一個正確的定義。" -#: libraries/rte/rte_export.lib.php:46 libraries/rte/rte_general.lib.php:75 +#: libraries/rte/rte_export.lib.php:47 libraries/rte/rte_general.lib.php:75 #: libraries/rte/rte_routines.lib.php:158 -#: libraries/rte/rte_routines.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1320 #: libraries/rte/rte_routines.lib.php:1530 msgid "Error in processing request:" msgstr "處理要求時發生錯誤:" @@ -11066,7 +11092,7 @@ msgstr "事件排程狀態" msgid "The backed up query was:" msgstr "備份用的查詢是:" -#: libraries/rte/rte_list.lib.php:82 +#: libraries/rte/rte_list.lib.php:83 msgid "Returns" msgstr "返回" @@ -11081,132 +11107,132 @@ msgstr "" "[strong]在執行某些預存程序(Stored routine)的可能會導致失敗[/strong],請使用 " "'mysqli' 擴充套件以避免發生錯誤。" -#: libraries/rte/rte_routines.lib.php:128 +#: libraries/rte/rte_routines.lib.php:129 msgid "Edit routine" msgstr "編輯程序" -#: libraries/rte/rte_routines.lib.php:208 -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:207 +#: libraries/rte/rte_routines.lib.php:1126 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "無效的程序類型: \"%s\"" -#: libraries/rte/rte_routines.lib.php:261 +#: libraries/rte/rte_routines.lib.php:260 #, php-format msgid "Routine %1$s has been created." msgstr "程序 %1$s 已建立。" -#: libraries/rte/rte_routines.lib.php:380 +#: libraries/rte/rte_routines.lib.php:379 msgid "Sorry, we failed to restore the dropped routine." msgstr "很抱歉,還原的被刪除的程序失敗。" -#: libraries/rte/rte_routines.lib.php:436 +#: libraries/rte/rte_routines.lib.php:435 #, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "已修改程序 %1$s 。已調整權限。" -#: libraries/rte/rte_routines.lib.php:441 +#: libraries/rte/rte_routines.lib.php:440 #, php-format msgid "Routine %1$s has been modified." msgstr "程序 %1$s 已被修改。" -#: libraries/rte/rte_routines.lib.php:900 +#: libraries/rte/rte_routines.lib.php:901 msgid "Routine name" msgstr "程序名稱" -#: libraries/rte/rte_routines.lib.php:926 +#: libraries/rte/rte_routines.lib.php:927 msgid "Parameters" msgstr "參數" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:935 msgid "Direction" msgstr "I/O" -#: libraries/rte/rte_routines.lib.php:955 +#: libraries/rte/rte_routines.lib.php:956 msgid "Add parameter" msgstr "新增參數" -#: libraries/rte/rte_routines.lib.php:959 +#: libraries/rte/rte_routines.lib.php:960 msgid "Remove last parameter" msgstr "移除最後的參數" -#: libraries/rte/rte_routines.lib.php:964 +#: libraries/rte/rte_routines.lib.php:965 msgid "Return type" msgstr "返回類型" -#: libraries/rte/rte_routines.lib.php:970 +#: libraries/rte/rte_routines.lib.php:971 msgid "Return length/values" msgstr "返回長度/值" -#: libraries/rte/rte_routines.lib.php:976 +#: libraries/rte/rte_routines.lib.php:977 msgid "Return options" msgstr "返回選項" -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1007 msgid "Is deterministic" msgstr "確定性" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1026 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "您未有足夠的權限執行此操作,請參考說明文件了解詳情" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1041 msgid "Security type" msgstr "安全類型" -#: libraries/rte/rte_routines.lib.php:1049 +#: libraries/rte/rte_routines.lib.php:1050 msgid "SQL data access" msgstr "SQL 資料存取" -#: libraries/rte/rte_routines.lib.php:1132 +#: libraries/rte/rte_routines.lib.php:1133 msgid "You must provide a routine name!" msgstr "您必須填寫程序名稱!" -#: libraries/rte/rte_routines.lib.php:1166 +#: libraries/rte/rte_routines.lib.php:1167 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "給予的參數方向 \"%s\" 無效。" -#: libraries/rte/rte_routines.lib.php:1188 -#: libraries/rte/rte_routines.lib.php:1250 +#: libraries/rte/rte_routines.lib.php:1189 +#: libraries/rte/rte_routines.lib.php:1251 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" "您必須為程序提供長度/數值的參數型別為列舉、集合、VARCHAR 和 VARBINARY。" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1215 msgid "You must provide a name and a type for each routine parameter." msgstr "你必須提供每個程序的參數名稱和類型。" -#: libraries/rte/rte_routines.lib.php:1233 +#: libraries/rte/rte_routines.lib.php:1234 msgid "You must provide a valid return type for the routine." msgstr "您必須提供一個有效的返回類型的程序。" -#: libraries/rte/rte_routines.lib.php:1293 +#: libraries/rte/rte_routines.lib.php:1294 msgid "You must provide a routine definition." msgstr "您必須提供一個程序的定義。" -#: libraries/rte/rte_routines.lib.php:1404 +#: libraries/rte/rte_routines.lib.php:1406 #, php-format msgid "Execution results of routine %s" msgstr "執行程序 %s 的結果" -#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_routines.lib.php:1461 #, 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 筆資料列。" -#: libraries/rte/rte_routines.lib.php:1517 +#: libraries/rte/rte_routines.lib.php:1518 #: libraries/rte/rte_routines.lib.php:1525 msgid "Execute routine" msgstr "執行程序" -#: libraries/rte/rte_routines.lib.php:1604 -#: libraries/rte/rte_routines.lib.php:1607 +#: libraries/rte/rte_routines.lib.php:1605 +#: libraries/rte/rte_routines.lib.php:1608 msgid "Routine parameters" msgstr "程序的參數" @@ -11228,32 +11254,32 @@ msgstr "建立觸發器 %1$s 成功。" msgid "Edit trigger" msgstr "編輯觸發器" -#: libraries/rte/rte_triggers.lib.php:329 +#: libraries/rte/rte_triggers.lib.php:330 msgid "Trigger name" msgstr "觸發器名稱" -#: libraries/rte/rte_triggers.lib.php:352 +#: libraries/rte/rte_triggers.lib.php:353 msgctxt "Trigger action time" msgid "Time" msgstr "時間" -#: libraries/rte/rte_triggers.lib.php:432 +#: libraries/rte/rte_triggers.lib.php:433 msgid "You must provide a trigger name!" msgstr "您必須填寫觸發器名稱!" -#: libraries/rte/rte_triggers.lib.php:439 +#: libraries/rte/rte_triggers.lib.php:440 msgid "You must provide a valid timing for the trigger!" msgstr "您必須為觸發器填寫有效的時間!" -#: libraries/rte/rte_triggers.lib.php:446 +#: libraries/rte/rte_triggers.lib.php:447 msgid "You must provide a valid event for the trigger!" msgstr "您必須為事件填寫有效的觸發條件!" -#: libraries/rte/rte_triggers.lib.php:454 +#: libraries/rte/rte_triggers.lib.php:455 msgid "You must provide a valid table name!" msgstr "您必須填寫有效的資料表名稱!" -#: libraries/rte/rte_triggers.lib.php:460 +#: libraries/rte/rte_triggers.lib.php:461 msgid "You must provide a trigger definition." msgstr "您必須提供一個觸發器的定義。" @@ -11378,90 +11404,90 @@ msgstr "字元編碼與排序規則" msgid "Databases statistics" msgstr "資料庫統計" -#: libraries/server_privileges.lib.php:200 server_privileges.php:111 +#: libraries/server_privileges.lib.php:209 server_privileges.php:113 msgid "No privileges." msgstr "沒有權限。" -#: libraries/server_privileges.lib.php:209 server_privileges.php:56 +#: libraries/server_privileges.lib.php:218 server_privileges.php:58 msgid "Includes all privileges except GRANT." msgstr "除了GRANT以外的所有權限。" -#: libraries/server_privileges.lib.php:282 -#: libraries/server_privileges.lib.php:1122 -#: libraries/server_privileges.lib.php:1296 server_privileges.php:100 +#: libraries/server_privileges.lib.php:291 +#: libraries/server_privileges.lib.php:1023 +#: libraries/server_privileges.lib.php:1197 server_privileges.php:102 msgid "Allows reading data." msgstr "允許讀取資料。" -#: libraries/server_privileges.lib.php:287 -#: libraries/server_privileges.lib.php:1127 -#: libraries/server_privileges.lib.php:1297 server_privileges.php:76 +#: libraries/server_privileges.lib.php:296 +#: libraries/server_privileges.lib.php:1028 +#: libraries/server_privileges.lib.php:1198 server_privileges.php:78 msgid "Allows inserting and replacing data." msgstr "允許新增與取代資料。" -#: libraries/server_privileges.lib.php:292 -#: libraries/server_privileges.lib.php:1132 -#: libraries/server_privileges.lib.php:1298 server_privileges.php:110 +#: libraries/server_privileges.lib.php:301 +#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:1199 server_privileges.php:112 msgid "Allows changing data." msgstr "允許改變資料。" -#: libraries/server_privileges.lib.php:297 -#: libraries/server_privileges.lib.php:1299 server_privileges.php:65 +#: libraries/server_privileges.lib.php:306 +#: libraries/server_privileges.lib.php:1200 server_privileges.php:67 msgid "Allows deleting data." msgstr "允許刪除資料。" -#: libraries/server_privileges.lib.php:302 -#: libraries/server_privileges.lib.php:1325 server_privileges.php:59 +#: libraries/server_privileges.lib.php:311 +#: libraries/server_privileges.lib.php:1226 server_privileges.php:61 msgid "Allows creating new databases and tables." msgstr "允許建立新資料庫和資料表。" -#: libraries/server_privileges.lib.php:307 -#: libraries/server_privileges.lib.php:1337 server_privileges.php:66 +#: libraries/server_privileges.lib.php:316 +#: libraries/server_privileges.lib.php:1238 server_privileges.php:68 msgid "Allows dropping databases and tables." msgstr "允許刪除資料庫和資料表。" -#: libraries/server_privileges.lib.php:312 -#: libraries/server_privileges.lib.php:1421 server_privileges.php:94 +#: libraries/server_privileges.lib.php:321 +#: libraries/server_privileges.lib.php:1322 server_privileges.php:96 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允許重新載入伺服器設定並重新整理伺服器的快取。" -#: libraries/server_privileges.lib.php:317 -#: libraries/server_privileges.lib.php:1425 server_privileges.php:103 +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:1326 server_privileges.php:105 msgid "Allows shutting down the server." msgstr "允許關閉伺服器。" -#: libraries/server_privileges.lib.php:322 -#: libraries/server_privileges.lib.php:1417 server_privileges.php:91 +#: libraries/server_privileges.lib.php:331 +#: libraries/server_privileges.lib.php:1318 server_privileges.php:93 msgid "Allows viewing processes of all users." msgstr "允許查看所有使用者的執行程序。" -#: libraries/server_privileges.lib.php:327 -#: libraries/server_privileges.lib.php:1305 server_privileges.php:70 +#: libraries/server_privileges.lib.php:336 +#: libraries/server_privileges.lib.php:1206 server_privileges.php:72 msgid "Allows importing data from and exporting data into files." msgstr "允許從檔案中匯入資料以及將資料匯出至檔案。" -#: libraries/server_privileges.lib.php:332 -#: libraries/server_privileges.lib.php:1137 -#: libraries/server_privileges.lib.php:1449 server_privileges.php:92 +#: libraries/server_privileges.lib.php:341 +#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:1350 server_privileges.php:94 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中無效。" -#: libraries/server_privileges.lib.php:337 -#: libraries/server_privileges.lib.php:1333 server_privileges.php:75 +#: libraries/server_privileges.lib.php:346 +#: libraries/server_privileges.lib.php:1234 server_privileges.php:77 msgid "Allows creating and dropping indexes." msgstr "允許建立和刪除索引。" -#: libraries/server_privileges.lib.php:342 -#: libraries/server_privileges.lib.php:1331 server_privileges.php:57 +#: libraries/server_privileges.lib.php:351 +#: libraries/server_privileges.lib.php:1232 server_privileges.php:59 msgid "Allows altering the structure of existing tables." msgstr "允許修改現有資料表的結構。" -#: libraries/server_privileges.lib.php:347 -#: libraries/server_privileges.lib.php:1429 server_privileges.php:101 +#: libraries/server_privileges.lib.php:356 +#: libraries/server_privileges.lib.php:1330 server_privileges.php:103 msgid "Gives access to the complete list of databases." msgstr "允許存取完整的資料庫列表。" -#: libraries/server_privileges.lib.php:353 -#: libraries/server_privileges.lib.php:1409 server_privileges.php:105 +#: libraries/server_privileges.lib.php:362 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:107 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11470,468 +11496,425 @@ msgstr "" "允許在到達連線數量限制時仍可登入資料庫。擁有最高管理權限可設定全域變數或中止" "其他使用者的執行緒。" -#: libraries/server_privileges.lib.php:361 -#: libraries/server_privileges.lib.php:1343 server_privileges.php:62 +#: libraries/server_privileges.lib.php:370 +#: libraries/server_privileges.lib.php:1244 server_privileges.php:64 msgid "Allows creating temporary tables." msgstr "允許建立暫存資料表。" -#: libraries/server_privileges.lib.php:366 -#: libraries/server_privileges.lib.php:1445 server_privileges.php:77 +#: libraries/server_privileges.lib.php:375 +#: libraries/server_privileges.lib.php:1346 server_privileges.php:79 msgid "Allows locking tables for the current thread." msgstr "允許鎖定目前執行緒的資料表。" -#: libraries/server_privileges.lib.php:371 -#: libraries/server_privileges.lib.php:1458 server_privileges.php:99 +#: libraries/server_privileges.lib.php:380 +#: libraries/server_privileges.lib.php:1359 server_privileges.php:101 msgid "Needed for the replication slaves." msgstr "使用次要(Slave)備援伺服器所需的權限。" -#: libraries/server_privileges.lib.php:376 -#: libraries/server_privileges.lib.php:1454 server_privileges.php:97 +#: libraries/server_privileges.lib.php:385 +#: libraries/server_privileges.lib.php:1355 server_privileges.php:99 msgid "Allows the user to ask where the slaves / masters are." msgstr "允許使用者查詢次要(Slaves)/主要(masters)備援伺服器在哪。" -#: libraries/server_privileges.lib.php:381 -#: libraries/server_privileges.lib.php:397 -#: libraries/server_privileges.lib.php:1363 -#: libraries/server_privileges.lib.php:1370 server_privileges.php:64 +#: libraries/server_privileges.lib.php:390 +#: libraries/server_privileges.lib.php:406 +#: libraries/server_privileges.lib.php:1264 +#: libraries/server_privileges.lib.php:1271 server_privileges.php:66 msgid "Allows creating new views." msgstr "允許建立檢視表(View)." -#: libraries/server_privileges.lib.php:386 -#: libraries/server_privileges.lib.php:1377 server_privileges.php:68 +#: libraries/server_privileges.lib.php:395 +#: libraries/server_privileges.lib.php:1278 server_privileges.php:70 msgid "Allows to set up events for the event scheduler." msgstr "允許為事件設定排程。" -#: libraries/server_privileges.lib.php:391 -#: libraries/server_privileges.lib.php:1381 server_privileges.php:109 +#: libraries/server_privileges.lib.php:400 +#: libraries/server_privileges.lib.php:1282 server_privileges.php:111 msgid "Allows creating and dropping triggers." msgstr "允許建立和刪除觸發器(Trigger)。" -#: libraries/server_privileges.lib.php:402 -#: libraries/server_privileges.lib.php:408 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:102 +#: libraries/server_privileges.lib.php:411 +#: libraries/server_privileges.lib.php:417 +#: libraries/server_privileges.lib.php:1248 server_privileges.php:104 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允許執行 SHOW CREATE VIEW 查詢。" -#: libraries/server_privileges.lib.php:413 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:60 +#: libraries/server_privileges.lib.php:422 +#: libraries/server_privileges.lib.php:1252 server_privileges.php:62 msgid "Allows creating stored routines." msgstr "允許建立預存程序(Stored routine)。" -#: libraries/server_privileges.lib.php:418 -#: libraries/server_privileges.lib.php:1355 server_privileges.php:58 +#: libraries/server_privileges.lib.php:427 +#: libraries/server_privileges.lib.php:1256 server_privileges.php:60 msgid "Allows altering and dropping stored routines." msgstr "允許修改或刪除已預存程序(Stored routine)。" -#: libraries/server_privileges.lib.php:423 -#: libraries/server_privileges.lib.php:1462 server_privileges.php:63 +#: libraries/server_privileges.lib.php:432 +#: libraries/server_privileges.lib.php:1363 server_privileges.php:65 msgid "Allows creating, dropping and renaming user accounts." msgstr "允許建立、刪除和重新命名使用者帳號。" -#: libraries/server_privileges.lib.php:428 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:69 +#: libraries/server_privileges.lib.php:437 +#: libraries/server_privileges.lib.php:1258 server_privileges.php:71 msgid "Allows executing stored routines." msgstr "允許執行預存程序(Stored routine)。" -#: libraries/server_privileges.lib.php:476 -#: libraries/server_privileges.lib.php:477 -msgctxt "None privileges" -msgid "None" -msgstr "無" - -#: libraries/server_privileges.lib.php:528 -#: libraries/server_privileges.lib.php:555 -#: libraries/server_privileges.lib.php:3623 -#: libraries/server_user_groups.lib.php:76 -msgid "User group" -msgstr "使用者群組" - -#: libraries/server_privileges.lib.php:732 +#: libraries/server_privileges.lib.php:713 msgid "Does not require SSL-encrypted connections." msgstr "不需要已加密的 SSL 連線。" -#: libraries/server_privileges.lib.php:753 +#: libraries/server_privileges.lib.php:729 msgid "Requires SSL-encrypted connections." msgstr "需要已加密的 SSL 連線。" -#: libraries/server_privileges.lib.php:773 +#: libraries/server_privileges.lib.php:743 msgid "Requires a valid X509 certificate." msgstr "需要有效的 X509 憑証。" -#: libraries/server_privileges.lib.php:805 -#: libraries/server_privileges.lib.php:814 +#: libraries/server_privileges.lib.php:768 msgid "Requires that a specific cipher method be used for a connection." msgstr "需要使用指定的加密方式連線。" -#: libraries/server_privileges.lib.php:825 -#: libraries/server_privileges.lib.php:834 +#: libraries/server_privileges.lib.php:781 msgid "Requires that a valid X509 certificate issued by this CA be presented." msgstr "需要由此 CA 發行且有效的 X509 憑証存在。" -#: libraries/server_privileges.lib.php:845 -#: libraries/server_privileges.lib.php:854 +#: libraries/server_privileges.lib.php:794 msgid "Requires that a valid X509 certificate with this subject be presented." msgstr "需要使用此主旨且有效的 X509 憑証存在。" -#: libraries/server_privileges.lib.php:878 -msgid "Resource limits" -msgstr "資源限制" - -#: libraries/server_privileges.lib.php:880 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "注意: 設定為 0 即代表無限制。" - -#: libraries/server_privileges.lib.php:887 -#: libraries/server_privileges.lib.php:898 server_privileges.php:82 +#: libraries/server_privileges.lib.php:824 server_privileges.php:84 msgid "Limits the number of queries the user may send to the server per hour." msgstr "使用者每小時可發送到伺服器的查詢數限制。" -#: libraries/server_privileges.lib.php:907 -#: libraries/server_privileges.lib.php:918 server_privileges.php:85 +#: libraries/server_privileges.lib.php:832 server_privileges.php:87 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "使用者每小時可執行修改資料表或資料庫的指令數限制。" -#: libraries/server_privileges.lib.php:928 -#: libraries/server_privileges.lib.php:937 server_privileges.php:79 +#: libraries/server_privileges.lib.php:841 server_privileges.php:81 msgid "Limits the number of new connections the user may open per hour." msgstr "使用者每小時可開啟的新連線數限制。" -#: libraries/server_privileges.lib.php:945 -#: libraries/server_privileges.lib.php:955 server_privileges.php:89 +#: libraries/server_privileges.lib.php:850 server_privileges.php:91 msgid "Limits the number of simultaneous connections the user may have." msgstr "使用者可同時連線的數量限制。" -#: libraries/server_privileges.lib.php:994 -#: libraries/server_privileges.lib.php:3427 -#: libraries/server_privileges.lib.php:3429 -#: libraries/server_privileges.lib.php:4699 +#: libraries/server_privileges.lib.php:895 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:4512 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "程序" -#: libraries/server_privileges.lib.php:1026 +#: libraries/server_privileges.lib.php:927 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -#: libraries/server_privileges.lib.php:1033 +#: libraries/server_privileges.lib.php:934 msgid "Allows altering and dropping this routine." msgstr "允許修改或刪除此程序。" -#: libraries/server_privileges.lib.php:1038 +#: libraries/server_privileges.lib.php:939 msgid "Allows executing this routine." msgstr "允許執行此程序。" -#: libraries/server_privileges.lib.php:1088 -#: libraries/server_privileges.lib.php:1257 -#: libraries/server_privileges.lib.php:3422 +#: libraries/server_privileges.lib.php:989 +#: libraries/server_privileges.lib.php:1158 +#: libraries/server_privileges.lib.php:3296 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "指定資料表權限" -#: libraries/server_privileges.lib.php:1091 -#: libraries/server_privileges.lib.php:1267 -#: libraries/server_privileges.lib.php:3619 +#: libraries/server_privileges.lib.php:992 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:3493 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "注意: MySQL 權限名稱會以英文表示。" -#: libraries/server_privileges.lib.php:1231 +#: libraries/server_privileges.lib.php:1132 msgid "Administration" msgstr "管理" -#: libraries/server_privileges.lib.php:1251 -#: libraries/server_privileges.lib.php:3617 +#: libraries/server_privileges.lib.php:1152 +#: libraries/server_privileges.lib.php:3491 msgid "Global privileges" msgstr "全域權限" -#: libraries/server_privileges.lib.php:1252 +#: libraries/server_privileges.lib.php:1153 msgid "Global" msgstr "全域" -#: libraries/server_privileges.lib.php:1254 -#: libraries/server_privileges.lib.php:3416 +#: libraries/server_privileges.lib.php:1155 +#: libraries/server_privileges.lib.php:3290 msgid "Database-specific privileges" msgstr "指定資料庫權限" -#: libraries/server_privileges.lib.php:1326 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1227 server_privileges.php:63 msgid "Allows creating new tables." msgstr "允許建立新資料表。" -#: libraries/server_privileges.lib.php:1338 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1239 server_privileges.php:69 msgid "Allows dropping tables." msgstr "允許刪除資料表。" -#: libraries/server_privileges.lib.php:1401 +#: libraries/server_privileges.lib.php:1302 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允許新增使用者和權限,但不允許重新載入權限表。" -#: libraries/server_privileges.lib.php:1437 server_privileges.php:72 +#: libraries/server_privileges.lib.php:1338 server_privileges.php:74 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" -#: libraries/server_privileges.lib.php:1543 +#: libraries/server_privileges.lib.php:1422 +#: libraries/server_privileges.lib.php:1453 msgid "Native MySQL authentication" msgstr "原生 MySQL 認證" -#: libraries/server_privileges.lib.php:1545 +#: libraries/server_privileges.lib.php:1455 msgid "SHA256 password authentication" msgstr "SHA256 密碼認證" -#: libraries/server_privileges.lib.php:1559 -msgid "Native MySQL Authentication" -msgstr "原生 MySQL 認證" - -#: libraries/server_privileges.lib.php:1611 -#: libraries/server_privileges.lib.php:3184 +#: libraries/server_privileges.lib.php:1489 +#: libraries/server_privileges.lib.php:3058 msgid "Login Information" msgstr "登入資訊" -#: libraries/server_privileges.lib.php:1634 -#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1670 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "使用文字方塊" -#: libraries/server_privileges.lib.php:1660 +#: libraries/server_privileges.lib.php:1538 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "已存在與此帳號相同的使用者名稱,但可能使用不同的主機名稱。" -#: libraries/server_privileges.lib.php:1669 +#: libraries/server_privileges.lib.php:1547 msgid "Host name:" msgstr "主機名稱:" -#: libraries/server_privileges.lib.php:1674 -#: libraries/server_privileges.lib.php:1759 -#: libraries/server_privileges.lib.php:2649 -#: libraries/server_privileges.lib.php:3615 +#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1637 +#: libraries/server_privileges.lib.php:2528 +#: libraries/server_privileges.lib.php:3489 msgid "Host name" msgstr "主機名稱" -#: libraries/server_privileges.lib.php:1782 +#: libraries/server_privileges.lib.php:1660 msgid "Do not change the password" msgstr "不修改密碼" -#: libraries/server_privileges.lib.php:1828 +#: libraries/server_privileges.lib.php:1709 msgid "Authentication Plugin" msgstr "認證外掛程式" -#: libraries/server_privileges.lib.php:1835 +#: libraries/server_privileges.lib.php:1716 msgid "Password Hashing Method" msgstr "密碼加密方式" -#: libraries/server_privileges.lib.php:2114 +#: libraries/server_privileges.lib.php:1995 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已修改。" -#: libraries/server_privileges.lib.php:2158 +#: libraries/server_privileges.lib.php:2039 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已移除 %s 的權限。" -#: libraries/server_privileges.lib.php:2256 -#: libraries/server_privileges.lib.php:4628 +#: libraries/server_privileges.lib.php:2137 +#: templates/privileges/add_user_fieldset.phtml:7 msgid "Add user account" msgstr "新增使用者帳號" -#: libraries/server_privileges.lib.php:2265 +#: libraries/server_privileges.lib.php:2146 msgid "Database for user account" msgstr "使用者帳號的資料庫" -#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:2152 msgid "Create database with same name and grant all privileges." msgstr "建立與使用者同名的資料庫並授予所有權限。" -#: libraries/server_privileges.lib.php:2282 +#: libraries/server_privileges.lib.php:2163 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限。" -#: libraries/server_privileges.lib.php:2295 +#: libraries/server_privileges.lib.php:2176 #, php-format msgid "Grant all privileges on database %s." msgstr "授予資料庫 %s 的所有權限。" -#: libraries/server_privileges.lib.php:2459 -#: libraries/server_privileges.lib.php:2530 +#: libraries/server_privileges.lib.php:2338 +#: libraries/server_privileges.lib.php:2409 #, php-format msgid "Users having access to \"%s\"" msgstr "可以存取 \"%s\" 的使用者" -#: libraries/server_privileges.lib.php:2499 +#: libraries/server_privileges.lib.php:2379 msgid "User has been added." msgstr "已新增使用者。" -#: libraries/server_privileges.lib.php:2652 -#: libraries/server_privileges.lib.php:3625 +#: libraries/server_privileges.lib.php:2531 +#: libraries/server_privileges.lib.php:3499 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "允許授權" -#: libraries/server_privileges.lib.php:2667 +#: libraries/server_privileges.lib.php:2546 msgid "Not enough privilege to view users." msgstr "權限不足檢視使用者。" -#: libraries/server_privileges.lib.php:2687 -#: libraries/server_privileges.lib.php:4099 +#: libraries/server_privileges.lib.php:2565 +#: libraries/server_privileges.lib.php:3914 msgid "No user found." msgstr "未找到使用者。" -#: libraries/server_privileges.lib.php:2718 -#: libraries/server_privileges.lib.php:3042 -#: libraries/server_privileges.lib.php:3707 +#: libraries/server_privileges.lib.php:2596 +#: libraries/server_privileges.lib.php:2916 +#: libraries/server_privileges.lib.php:3580 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:2647 msgid "global" msgstr "全域" -#: libraries/server_privileges.lib.php:2775 +#: libraries/server_privileges.lib.php:2650 msgid "database-specific" msgstr "指定資料庫" -#: libraries/server_privileges.lib.php:2777 +#: libraries/server_privileges.lib.php:2652 msgid "wildcard" msgstr "萬用字元" -#: libraries/server_privileges.lib.php:2783 +#: libraries/server_privileges.lib.php:2658 msgid "table-specific" msgstr "指定資料表" -#: libraries/server_privileges.lib.php:2914 +#: libraries/server_privileges.lib.php:2788 msgid "Edit privileges" msgstr "編輯權限" -#: libraries/server_privileges.lib.php:2917 +#: libraries/server_privileges.lib.php:2791 msgid "Revoke" msgstr "移除" -#: libraries/server_privileges.lib.php:2941 +#: libraries/server_privileges.lib.php:2815 msgid "Edit user group" msgstr "編輯使用者群組" -#: libraries/server_privileges.lib.php:3156 +#: libraries/server_privileges.lib.php:3030 msgid "… keep the old one." msgstr "… 保留舊使用者。" -#: libraries/server_privileges.lib.php:3157 +#: libraries/server_privileges.lib.php:3031 msgid "… delete the old one from the user tables." msgstr "… 從使用者資料表中刪除舊使用者。" -#: libraries/server_privileges.lib.php:3159 +#: libraries/server_privileges.lib.php:3033 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 移除舊使用者的所有權限,然後刪除舊使用者。" -#: libraries/server_privileges.lib.php:3163 +#: libraries/server_privileges.lib.php:3037 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 從使用者資料表中刪除舊使用者,然後重新載入權限。" -#: libraries/server_privileges.lib.php:3185 +#: libraries/server_privileges.lib.php:3059 msgid "Change login information / Copy user account" msgstr "修改登入資訊/複製使用者帳號" -#: libraries/server_privileges.lib.php:3191 +#: libraries/server_privileges.lib.php:3065 msgid "Create a new user account with the same privileges and …" msgstr "建立具有相同權限的新使用者帳號並且 …" -#: libraries/server_privileges.lib.php:3428 +#: libraries/server_privileges.lib.php:3302 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "指定程序權限" -#: libraries/server_privileges.lib.php:3808 -msgid "Remove selected user accounts" -msgstr "刪除已選擇的使用者帳號" +#: libraries/server_privileges.lib.php:3497 +#: libraries/server_user_groups.lib.php:76 +#: templates/privileges/choose_user_group.phtml:4 +#: templates/privileges/choose_user_group.phtml:5 +msgid "User group" +msgstr "使用者群組" -#: libraries/server_privileges.lib.php:3814 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "移除使用者所有權限,然後刪除使用者。" - -#: libraries/server_privileges.lib.php:3822 -#: libraries/server_privileges.lib.php:3828 -#: libraries/server_privileges.lib.php:3831 -msgid "Drop the databases that have the same names as the users." -msgstr "刪除與使用者同名的資料庫。" - -#: libraries/server_privileges.lib.php:3975 +#: libraries/server_privileges.lib.php:3790 msgid "No users selected for deleting!" msgstr "沒有選擇要刪除的使用者!" -#: libraries/server_privileges.lib.php:3978 +#: libraries/server_privileges.lib.php:3793 msgid "Reloading the privileges" msgstr "重新載入權限" -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:3812 msgid "The selected users have been deleted successfully." msgstr "已成功刪除選中的使用者。" -#: libraries/server_privileges.lib.php:4072 +#: libraries/server_privileges.lib.php:3887 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限。" -#: libraries/server_privileges.lib.php:4176 +#: libraries/server_privileges.lib.php:3991 #, php-format msgid "Deleting %s" msgstr "正在刪除 %s" -#: libraries/server_privileges.lib.php:4206 +#: libraries/server_privileges.lib.php:4021 msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限。" -#: libraries/server_privileges.lib.php:4297 +#: libraries/server_privileges.lib.php:4112 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: libraries/server_privileges.lib.php:4570 +#: libraries/server_privileges.lib.php:4385 #, php-format msgid "Privileges for %s" msgstr "權限 %s" -#: libraries/server_privileges.lib.php:4579 +#: libraries/server_privileges.lib.php:4394 #: libraries/server_status_processes.lib.php:72 #: libraries/server_user_groups.lib.php:37 msgid "User" msgstr "使用者" -#: libraries/server_privileges.lib.php:4620 -msgctxt "Create new user" -msgid "New" -msgstr "新增" - -#: libraries/server_privileges.lib.php:4649 +#: libraries/server_privileges.lib.php:4462 msgid "Edit privileges:" msgstr "編輯權限:" -#: libraries/server_privileges.lib.php:4650 +#: libraries/server_privileges.lib.php:4463 msgid "User account" msgstr "使用者帳號" -#: libraries/server_privileges.lib.php:4724 +#: libraries/server_privileges.lib.php:4537 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "注意:您正嘗試編輯您目前登入使用者的權限。" -#: libraries/server_privileges.lib.php:4744 libraries/server_users.lib.php:22 +#: libraries/server_privileges.lib.php:4557 libraries/server_users.lib.php:22 msgid "User accounts overview" msgstr "使用者帳號一覽" -#: libraries/server_privileges.lib.php:4813 +#: libraries/server_privileges.lib.php:4626 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 " @@ -11940,7 +11923,7 @@ msgstr "" "已存在允許任何來自 localhost 連線的使用者帳號,這將會導致其他若在帳號中的主機" "允許來自任何(%)地方連線使用者無法使用。" -#: libraries/server_privileges.lib.php:4854 +#: libraries/server_privileges.lib.php:4668 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11952,7 +11935,7 @@ msgstr "" "限,則表中顯示的內容可能與伺服器實際使用的使用者權限有異。在這種情況下,您應" "在繼續前 %s重新載入權限%s。" -#: libraries/server_privileges.lib.php:4871 +#: libraries/server_privileges.lib.php:4685 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11964,11 +11947,11 @@ msgstr "" "動的修改,這些資料表的內容可能將與伺服器實際使用的權限有所不同。 在此情況下才" "需要重新整理權限,目前您並不需要重新整理(RELOAD)權限。" -#: libraries/server_privileges.lib.php:4921 +#: libraries/server_privileges.lib.php:4736 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者。" -#: libraries/server_privileges.lib.php:5141 +#: libraries/server_privileges.lib.php:4956 msgid "You have added a new user." msgstr "您已新增了一個新使用者。" @@ -12254,12 +12237,12 @@ msgstr "指令" msgid "Progress" msgstr "進度" -#: libraries/server_status_processes.lib.php:233 +#: libraries/server_status_processes.lib.php:230 #: libraries/server_status_variables.lib.php:37 templates/filter.phtml:2 msgid "Filters" msgstr "搜尋" -#: libraries/server_status_processes.lib.php:241 +#: libraries/server_status_processes.lib.php:238 msgid "Show only active" msgstr "只顯示開啟的項目" @@ -12280,12 +12263,12 @@ msgstr "每分鐘:" msgid "per second:" msgstr "每秒:" -#: libraries/server_status_queries.lib.php:90 +#: libraries/server_status_queries.lib.php:88 msgid "Statements" msgstr "說明" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:93 libraries/tracking.lib.php:897 +#: libraries/server_status_queries.lib.php:91 libraries/tracking.lib.php:883 msgid "#" msgstr "查詢數量" @@ -12309,17 +12292,17 @@ msgstr "顯示未格式化的值" msgid "Related links:" msgstr "相關連結:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:328 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "由於用戶端沒有正常關閉連線,這些連線已被中斷。" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:332 msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器。" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12328,16 +12311,16 @@ msgstr "" "使用暫存二進位記錄快取的交易,但因超出 binlog_cache_size 限制而採用暫存檔案儲" "存交易指令的數量。" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:340 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易使用暫存二進位記錄快取的數量。" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:343 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "嘗試連到 MySQL 伺服器的連線數 (不論成功或失敗)。" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:347 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12348,45 +12331,45 @@ msgstr "" "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存暫存表而非硬" "碟。" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:354 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的暫存檔案的數量。" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:357 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的暫存表的數量。" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:361 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "延遲新增 (INSERT DELAYED) 發生錯誤的列數 (可能為重複鍵值造成)。" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:365 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延遲新增處理程序的數量。每張使用延遲新增的表都有自己的程序。" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:370 msgid "The number of INSERT DELAYED rows written." msgstr "延遲新增已寫入的列數。" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:373 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數。" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:376 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數。" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:379 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數。" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:382 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12396,7 +12379,7 @@ msgstr "" "在。這個動作稱作 \"探索(Discovery)\"。 Handler_discover 參數指的是資料表被探" "索到的次數。" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:388 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12405,7 +12388,7 @@ msgstr "" "第一筆索引資料被讀取的次數。若這個值很大,說明您的伺服器執行了很多完整索引掃" "描,如以下例子: 欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo。" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:394 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." @@ -12413,7 +12396,7 @@ msgstr "" "透過索引查詢到資料列的請求次數。若這個值很大,說明您的查詢條件和資料表都有正" "確的索引。" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:399 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12422,7 +12405,7 @@ msgstr "" "查詢下一筆索引資料的請求次數。若您的查詢條件使用了索引的欄位做一段區間範圍的" "查詢,或者您進行了索引的掃描,會使這個值不斷增加。" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:404 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12430,7 +12413,7 @@ msgstr "" "查詢上一筆索引資料的請求次數。這種讀取方式通常用於最佳化有關 ORDER BY … DESC " "的查詢。" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:408 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12440,7 +12423,7 @@ msgstr "" "使用固定位置讀取資料列的請求次數。如果您執行很多需要排序的查詢,該值會很高。" "您可能有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢。" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12451,35 +12434,35 @@ msgstr "" "況下這代表您的資料表未正確建立索引,或者您使用的查詢指令沒有使用已建立索引的" "欄位。" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:422 msgid "The number of internal ROLLBACK statements." msgstr "使用內部還原 (ROLLBACK) 敘述句的次數。" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:425 msgid "The number of requests to update a row in a table." msgstr "資料表中更新資料列的請求次數。" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:428 msgid "The number of requests to insert a row in a table." msgstr "資料表中新增資料列的請求數。" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:431 msgid "The number of pages containing data (dirty or clean)." msgstr "含資料頁數 (異動未儲存或已儲存)。" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:434 msgid "The number of pages currently dirty." msgstr "目前異動未儲存的頁數。" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:437 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數。" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:441 msgid "The number of free pages." msgstr "空閒頁數。" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:444 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12488,7 +12471,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的。" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:449 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12499,11 +12482,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data。" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:456 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位: 頁)。" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:459 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12511,24 +12494,24 @@ msgstr "" "InnoDB 初始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生。" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:464 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生。" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:468 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數。" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數。" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:475 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12540,85 +12523,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小。" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:483 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數。" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:486 msgid "The number of fsync() operations so far." msgstr "到目前為止 fsync() 執行的次數。" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:489 msgid "The current number of pending fsync() operations." msgstr "目前待執行 fsync() 的數量。" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:492 msgid "The current number of pending reads." msgstr "目前待執行的讀取次數。" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:495 msgid "The current number of pending writes." msgstr "目前待執行的寫入次數。" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:498 msgid "The amount of data read so far, in bytes." msgstr "到目前為止已讀取的總資料量 (以位元組為單位)。" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:501 msgid "The total number of data reads." msgstr "資料讀取總數。" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:504 msgid "The total number of data writes." msgstr "資料寫入總數。" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:507 msgid "The amount of data written so far, in bytes." msgstr "到目前為止已寫入的總資料量 (以位元組為單位)。" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:510 msgid "The number of pages that have been written for doublewrite operations." msgstr "已經以雙寫(doublewrite)操作寫入的頁數。" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:514 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數。" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:517 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因記錄快取太小而必須等待其被寫入所造成的等待數。" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:521 msgid "The number of log write requests." msgstr "記錄寫入請求數。" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:524 msgid "The number of physical writes to the log file." msgstr "記錄物理寫入次數。" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:527 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入記錄檔案的次數。" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:530 msgid "The number of pending log file fsyncs." msgstr "在記錄檔案中待執行的 fsync 數。" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:533 msgid "Pending log file writes." msgstr "目前待執行的記錄寫入數。" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:536 msgid "The number of bytes written to the log file." msgstr "寫入記錄檔案的位元組。" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:539 msgid "The number of pages created." msgstr "已建立的頁數。" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:542 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." @@ -12626,79 +12609,79 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數。" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:547 msgid "The number of pages read." msgstr "已讀取的頁數。" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:550 msgid "The number of pages written." msgstr "已寫入的頁數。" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:553 msgid "The number of row locks currently being waited for." msgstr "目前正等待列鎖定(Row Lock)的數量。" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:556 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得列鎖定(Row lock)的平均時間 (毫秒)。" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:559 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得列鎖定(Row lock)的總時間 (毫秒)。" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:562 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得列鎖定(Row lock)的最大時間 (毫秒)。" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:565 msgid "The number of times a row lock had to be waited for." msgstr "等待列鎖定(Row lock)的次數。" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:568 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的列數。" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:571 msgid "The number of rows inserted in InnoDB tables." msgstr "新增到 InnoDB 資料表中的列數。" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:574 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的列數。" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:577 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的列數。" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:580 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks。" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:585 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 "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取。" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:589 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量。" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:594 msgid "Percentage of used key cache (calculated value)" msgstr "已使用鍵值緩存的百分比(計算值)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:597 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數。" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:600 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -12707,26 +12690,26 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出。" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:606 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "由實際讀取數和讀取請求數相比計算出的鍵值快取未命中率 (計算值)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:610 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數。" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:613 msgid "The number of physical writes of a key block to disk." msgstr "將鍵值資料區塊實體寫入到硬碟的次數。" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:616 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "實際寫入數和寫入請求數的百分比值(計算值)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:620 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -12735,35 +12718,35 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯。" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:626 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自伺服器啟動以來的最大的同時連線數量。" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:630 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "延遲新增等待寫入序列的列數。" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:633 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小。" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:637 msgid "The number of files that are open." msgstr "已開啟的檔案個數。" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:640 msgid "The number of streams that are open (used mainly for logging)." msgstr "已開啟的stream個數 (主要用於記錄)。" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:643 msgid "The number of tables that are open." msgstr "已開啟的資料表個數。" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:646 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -12772,19 +12755,19 @@ msgstr "" "查詢快取中的閒置區塊數。數字越高表示有記憶體碎片問題,也許可用 FLUSH QUERY " "CACHE 語句解決。" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:651 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數。" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:654 msgid "The number of cache hits." msgstr "快取命中數。" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:657 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數。" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:660 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12794,7 +12777,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小。" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -12802,19 +12785,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)。" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:671 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數。" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:674 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總區塊數。" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:677 msgid "The status of failsafe replication (not yet implemented)." msgstr "備援失敗保護器的狀態 (尚未實作)。" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:680 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." @@ -12822,11 +12805,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引。" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:684 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量。" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:687 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.)" @@ -12834,7 +12817,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:692 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -12842,36 +12825,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:696 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數。" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:699 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的暫存表的數量。" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:703 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "自伺服器啟動開始從次要(Slave)備援伺服所接收到的交易(Transaction)總數。" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:707 msgid "This is ON if this server is a slave that is connected to a master." msgstr "若此伺服器為次要伺服器,且已連線到主要伺服器時,此欄位值會顯示為 ON。" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:710 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量。" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:714 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "查詢時間超過 long_query_time 設定值的查詢筆數。" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:718 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -12880,23 +12863,23 @@ msgstr "" "排序算法使用合併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值。" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:723 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數。" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:726 msgid "The number of sorted rows." msgstr "已排序的列數。" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:729 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數。" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:732 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數。" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:735 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12906,7 +12889,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用備援操作來分開表。" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:741 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -12915,11 +12898,11 @@ msgstr "" "執行緒快取中執行緒的數量。快取命中率可以由 Threads_created/Connections 計算得" "出如果該值是紅色的,則應該增加 thread_cache_size 的值。" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:746 msgid "The number of currently open connections." msgstr "目前開啟的連線數。" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:749 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12930,11 +12913,11 @@ msgstr "" "thread_cache_size 的值 (如果執行緒狀況良好,這麼做通常並不會帶來顯著的性能提" "升)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:756 msgid "Thread cache hit rate (calculated value)" msgstr "執行緒緩存命中率(計算值)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:759 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量。" @@ -12963,37 +12946,37 @@ msgstr "資料庫分頁" msgid "Table level tabs" msgstr "資料表分頁" -#: libraries/server_user_groups.lib.php:108 +#: libraries/server_user_groups.lib.php:107 msgid "View users" msgstr "檢視使用者" -#: libraries/server_user_groups.lib.php:146 -#: libraries/server_user_groups.lib.php:210 +#: libraries/server_user_groups.lib.php:143 +#: libraries/server_user_groups.lib.php:207 msgid "Add user group" msgstr "新增使用者群組" -#: libraries/server_user_groups.lib.php:213 +#: libraries/server_user_groups.lib.php:210 #, php-format msgid "Edit user group: '%s'" msgstr "編輯使用者群組: '%s'" -#: libraries/server_user_groups.lib.php:229 +#: libraries/server_user_groups.lib.php:226 msgid "User group menu assignments" msgstr "使用者群組選單分配" -#: libraries/server_user_groups.lib.php:237 +#: libraries/server_user_groups.lib.php:234 msgid "Group name:" msgstr "群組名稱:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:272 msgid "Server-level tabs" msgstr "主機級別標籤頁" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:275 msgid "Database-level tabs" msgstr "資料庫級別標籤頁" -#: libraries/server_user_groups.lib.php:281 +#: libraries/server_user_groups.lib.php:278 msgid "Table-level tabs" msgstr "資料表級別標籤頁" @@ -13092,7 +13075,7 @@ msgstr "在資料庫 %s 執行 SQL 查詢" msgid "Run SQL query/queries on table %s" msgstr "在資料庫 %s 執行 SQL 查詢" -#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:313 +#: libraries/sql_query_form.lib.php:247 setup/frames/index.inc.php:301 #: templates/console/display.phtml:10 msgid "Clear" msgstr "清除" @@ -13177,173 +13160,173 @@ msgstr "立即停用" msgid "Version" msgstr "版本" -#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1630 +#: libraries/tracking.lib.php:284 libraries/tracking.lib.php:1596 msgid "Created" msgstr "建立" -#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1631 +#: libraries/tracking.lib.php:285 libraries/tracking.lib.php:1597 msgid "Updated" msgstr "更新" -#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:368 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:361 msgid "Delete version" msgstr "刪除版本" -#: libraries/tracking.lib.php:296 libraries/tracking.lib.php:473 -#: libraries/tracking.lib.php:1644 +#: libraries/tracking.lib.php:295 libraries/tracking.lib.php:466 +#: libraries/tracking.lib.php:1610 msgid "Tracking report" msgstr "追蹤報告" -#: libraries/tracking.lib.php:299 libraries/tracking.lib.php:843 -#: libraries/tracking.lib.php:1647 +#: libraries/tracking.lib.php:298 libraries/tracking.lib.php:829 +#: libraries/tracking.lib.php:1613 msgid "Structure snapshot" msgstr "結構快照(Snapshot)" -#: libraries/tracking.lib.php:433 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1754 +#: libraries/tracking.lib.php:426 libraries/tracking.lib.php:1422 +#: libraries/tracking.lib.php:1714 msgid "active" msgstr "啓用" -#: libraries/tracking.lib.php:435 libraries/tracking.lib.php:1450 -#: libraries/tracking.lib.php:1749 +#: libraries/tracking.lib.php:428 libraries/tracking.lib.php:1424 +#: libraries/tracking.lib.php:1709 msgid "not active" msgstr "停用" -#: libraries/tracking.lib.php:477 +#: libraries/tracking.lib.php:470 msgid "Tracking statements" msgstr "追蹤指令" -#: libraries/tracking.lib.php:489 +#: libraries/tracking.lib.php:482 msgid "Delete tracking data row from report" msgstr "刪除報表的追蹤資料列" -#: libraries/tracking.lib.php:500 +#: libraries/tracking.lib.php:493 msgid "No data" msgstr "沒有資料" -#: libraries/tracking.lib.php:589 libraries/tracking.lib.php:638 +#: libraries/tracking.lib.php:582 libraries/tracking.lib.php:631 #, 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" -#: libraries/tracking.lib.php:659 +#: libraries/tracking.lib.php:652 msgid "SQL dump (file download)" msgstr "SQL 匯出 (檔案下載)" -#: libraries/tracking.lib.php:661 +#: libraries/tracking.lib.php:654 msgid "SQL dump" msgstr "SQL 匯出" -#: libraries/tracking.lib.php:664 +#: libraries/tracking.lib.php:657 msgid "This option will replace your table and contained data." msgstr "此選項將會替換您的資料表與內容資料。" -#: libraries/tracking.lib.php:666 +#: libraries/tracking.lib.php:659 msgid "SQL execution" msgstr "執行 SQL 指令" -#: libraries/tracking.lib.php:671 +#: libraries/tracking.lib.php:664 #, php-format msgid "Export as %s" msgstr "匯出爲 %s" -#: libraries/tracking.lib.php:697 +#: libraries/tracking.lib.php:690 msgid "Data manipulation statement" msgstr "資料操作指令" -#: libraries/tracking.lib.php:774 +#: libraries/tracking.lib.php:766 msgid "Data definition statement" msgstr "資料定義指令" -#: libraries/tracking.lib.php:806 +#: libraries/tracking.lib.php:798 msgid "Date" msgstr "日期" -#: libraries/tracking.lib.php:807 +#: libraries/tracking.lib.php:799 msgid "Username" msgstr "使用者名" -#: libraries/tracking.lib.php:861 +#: libraries/tracking.lib.php:847 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的結構快照 (SQL 程式碼)" -#: libraries/tracking.lib.php:968 +#: libraries/tracking.lib.php:947 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "無" -#: libraries/tracking.lib.php:1070 +#: libraries/tracking.lib.php:1042 msgid "Tracking data definition successfully deleted" msgstr "追蹤資料定義已刪除" -#: libraries/tracking.lib.php:1080 +#: libraries/tracking.lib.php:1052 msgid "Tracking data manipulation successfully deleted" msgstr "追蹤資料操作已刪除" -#: libraries/tracking.lib.php:1134 +#: libraries/tracking.lib.php:1106 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" "您可以透過建立與使用暫存資料庫來執行資料匯出,請先確認您是否有足夠的權限。" -#: libraries/tracking.lib.php:1138 +#: libraries/tracking.lib.php:1110 msgid "Comment out these two lines if you do not need them." msgstr "如果您不需要,請註解以下兩行。" -#: libraries/tracking.lib.php:1148 +#: libraries/tracking.lib.php:1120 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "已匯出 SQL 指令,您可以複製內容或者直接執行。" -#: libraries/tracking.lib.php:1195 +#: libraries/tracking.lib.php:1169 #, php-format msgid "Tracking report for table `%s`" msgstr "資料表 `%s` 的追蹤報告" -#: libraries/tracking.lib.php:1225 +#: libraries/tracking.lib.php:1199 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "已啟用 %1$s 版本 %2$s 的追蹤。" -#: libraries/tracking.lib.php:1228 +#: libraries/tracking.lib.php:1202 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "已停用 %1$s 版本 %2$s 的追蹤。" -#: libraries/tracking.lib.php:1320 +#: libraries/tracking.lib.php:1294 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "共 %2$s 中的 %1$s 的版本已刪除。" -#: libraries/tracking.lib.php:1351 +#: libraries/tracking.lib.php:1325 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已建立版本 %1$s,%2$s 的追蹤已啓用。" -#: libraries/tracking.lib.php:1469 +#: libraries/tracking.lib.php:1443 msgid "Untracked tables" msgstr "尚未追蹤的資料表" -#: libraries/tracking.lib.php:1505 libraries/tracking.lib.php:1529 +#: libraries/tracking.lib.php:1478 libraries/tracking.lib.php:1501 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "追蹤資料表" -#: libraries/tracking.lib.php:1617 +#: libraries/tracking.lib.php:1583 msgid "Tracked tables" msgstr "已追蹤的資料表" -#: libraries/tracking.lib.php:1629 +#: libraries/tracking.lib.php:1595 msgid "Last version" msgstr "最新版本" -#: libraries/tracking.lib.php:1642 libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:1608 libraries/tracking.lib.php:1688 msgid "Delete tracking" msgstr "刪除追蹤資料" -#: libraries/tracking.lib.php:1643 +#: libraries/tracking.lib.php:1609 msgid "Versions" msgstr "版本" @@ -13351,7 +13334,7 @@ msgstr "版本" msgid "Manage your settings" msgstr "管理您的設定" -#: libraries/user_preferences.inc.php:57 prefs_manage.php:326 +#: libraries/user_preferences.inc.php:57 prefs_manage.php:315 msgid "Configuration has been saved." msgstr "已儲存設定值。" @@ -13376,7 +13359,7 @@ msgstr "ZIP 壓縮檔錯誤:" msgid "No files found inside ZIP archive!" msgstr "ZIP 壓縮檔中查無任何檔案!" -#: navigation.php:21 +#: navigation.php:22 msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "嚴重錯誤: 導覽頁只能使用 AJAX 存取" @@ -13384,57 +13367,57 @@ msgstr "嚴重錯誤: 導覽頁只能使用 AJAX 存取" msgid "Cannot save settings, submitted form contains errors!" msgstr "無法儲存設定,送出的表單內容發生錯誤!" -#: prefs_manage.php:50 +#: prefs_manage.php:52 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "缺少 phpMyAdmin 設定儲存空間資料表" -#: prefs_manage.php:51 +#: prefs_manage.php:53 msgid "Paste it to your config.inc.php" msgstr "" -#: prefs_manage.php:105 +#: prefs_manage.php:93 msgid "Could not import configuration" msgstr "無法匯入設定" -#: prefs_manage.php:137 +#: prefs_manage.php:126 msgid "Configuration contains incorrect data for some fields." msgstr "部分設定含有錯誤的資料。" -#: prefs_manage.php:156 +#: prefs_manage.php:145 msgid "Do you want to import remaining settings?" msgstr "是否匯入其餘的設定?" -#: prefs_manage.php:250 prefs_manage.php:279 +#: prefs_manage.php:239 prefs_manage.php:268 msgid "Saved on: @DATE@" msgstr "儲存於: @DATE@" -#: prefs_manage.php:265 +#: prefs_manage.php:254 msgid "Import from file" msgstr "從檔案匯入" -#: prefs_manage.php:273 +#: prefs_manage.php:262 msgid "Import from browser's storage" msgstr "從瀏覽器記錄匯入" -#: prefs_manage.php:276 +#: prefs_manage.php:265 msgid "Settings will be imported from your browser's local storage." msgstr "將使用瀏覽器的本機儲存記錄匯入設定。" -#: prefs_manage.php:282 +#: prefs_manage.php:271 msgid "You have no saved settings!" msgstr "您尚未儲存設定!" -#: prefs_manage.php:287 prefs_manage.php:371 +#: prefs_manage.php:276 prefs_manage.php:360 msgid "This feature is not supported by your web browser" msgstr "您所使用的瀏覽器不支援此功能" -#: prefs_manage.php:293 +#: prefs_manage.php:282 msgid "Merge with current configuration" msgstr "合併至目前設定" -#: prefs_manage.php:309 +#: prefs_manage.php:298 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -13443,25 +13426,25 @@ msgstr "" "透過修改 config.inc.php 設定檔您可以調整更多的設定項目,如: 使用 %s安裝程" "式%s 。" -#: prefs_manage.php:342 +#: prefs_manage.php:331 #, fuzzy #| msgid "Save as file" msgid "Save as PHP file" msgstr "另存新檔" -#: prefs_manage.php:347 +#: prefs_manage.php:336 msgid "Save to browser's storage" msgstr "儲存到瀏覽器記錄" -#: prefs_manage.php:354 +#: prefs_manage.php:343 msgid "Settings will be saved in your browser's local storage." msgstr "設定將儲存到瀏覽器的本機記錄。" -#: prefs_manage.php:362 +#: prefs_manage.php:351 msgid "Existing settings will be overwritten!" msgstr "現有設定將被覆蓋!" -#: prefs_manage.php:390 +#: prefs_manage.php:379 msgid "You can reset all your settings and restore them to default values." msgstr "您可以重新設定所有設定恢復爲預設值。" @@ -13469,45 +13452,45 @@ msgstr "您可以重新設定所有設定恢復爲預設值。" msgid "View dump (schema) of databases" msgstr "檢視資料庫結構的匯出資料" -#: server_privileges.php:131 server_replication.php:32 -#: server_user_groups.php:28 templates/server/databases/create.phtml:32 +#: server_privileges.php:133 server_replication.php:33 +#: server_user_groups.php:29 templates/server/databases/create.phtml:32 msgid "No Privileges" msgstr "無權限" -#: server_privileges.php:147 +#: server_privileges.php:149 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "用戶名與主機名稱尚未更改。如您只需要更改密碼,請使用「修改密碼」分頁。" -#: server_status.php:35 +#: server_status.php:36 msgid "Not enough privilege to view server status." msgstr "權限不足檢視伺服器狀態。" -#: server_status_advisor.php:33 +#: server_status_advisor.php:34 msgid "Not enough privilege to view the advisor." msgstr "權限不足檢視建議。" -#: server_status_processes.php:33 +#: server_status_processes.php:34 #, php-format msgid "Thread %s was successfully killed." msgstr "已中止程序 %s。" -#: server_status_processes.php:39 +#: server_status_processes.php:40 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉。" -#: server_status_queries.php:42 +#: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." msgstr "權限不足檢視查詢統計資訊。" -#: server_status_variables.php:52 +#: server_status_variables.php:53 msgid "Not enough privilege to view status variables." msgstr "權限不足檢視狀態變數。" -#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:291 +#: setup/frames/config.inc.php:42 setup/frames/index.inc.php:279 msgid "Download" msgstr "下載" @@ -13515,11 +13498,11 @@ msgstr "下載" msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php!" msgstr "不正確的表單集,請檢查 setup/frames/form.inc.php 中的 $formsets 陣列!" -#: setup/frames/index.inc.php:59 +#: setup/frames/index.inc.php:58 msgid "Cannot load or save configuration" msgstr "無法載入或儲存設定" -#: setup/frames/index.inc.php:62 setup/frames/index.inc.php:137 +#: setup/frames/index.inc.php:61 setup/frames/index.inc.php:125 msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -13528,30 +13511,33 @@ msgstr "" "請在 phpMyAdmin 的根資料夾下建立 [doc@setup_script]檔案[/doc]中所述的網站伺服" "器可以寫入的 [em]config[/em] 資料夾。否則您只能下載或顯示設定。" -#: setup/frames/index.inc.php:77 +#: setup/frames/index.inc.php:73 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "您現在未使用安全協定連線,所有資料(包括敏感資訊,如密碼)均未加密傳輸!" -#: setup/frames/index.inc.php:88 -#, php-format +#: setup/frames/index.inc.php:78 +#, 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 [a@%s]this " -"link[/a] to use a secure connection." +"If your server is also configured to accept HTTPS requests follow this link " +"to use a secure connection." msgstr "" "如果您的伺服器已經設定為接受 HTTPS 協定,請依 [a@%s]此處[/a] 說明以使用安全協" "定連線。" -#: setup/frames/index.inc.php:93 +#: setup/frames/index.inc.php:82 msgid "Insecure connection" msgstr "不安全的連線" -#: setup/frames/index.inc.php:121 +#: setup/frames/index.inc.php:109 msgid "Configuration saved." msgstr "設定已儲存。" -#: setup/frames/index.inc.php:124 +#: setup/frames/index.inc.php:112 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." @@ -13559,61 +13545,61 @@ msgstr "" "配置保存到 phpMyAdmin 目錄下的 config/config.inc.php 檔,請將它複製到上層後再" "刪除 config 目錄。" -#: setup/frames/index.inc.php:134 +#: setup/frames/index.inc.php:122 #, fuzzy #| msgid "Configuration saved." msgid "Configuration not saved!" msgstr "設定已儲存。" -#: setup/frames/index.inc.php:149 setup/frames/menu.inc.php:20 +#: setup/frames/index.inc.php:137 setup/frames/menu.inc.php:20 msgid "Overview" msgstr "概要" -#: setup/frames/index.inc.php:156 +#: setup/frames/index.inc.php:144 msgid "Show hidden messages (#MSG_COUNT)" msgstr "顯示隱藏資訊 (#MSG_COUNT)" -#: setup/frames/index.inc.php:209 +#: setup/frames/index.inc.php:197 msgid "There are no configured servers" msgstr "沒有設定好的伺服器" -#: setup/frames/index.inc.php:218 +#: setup/frames/index.inc.php:206 msgid "New server" msgstr "建立伺服器" -#: setup/frames/index.inc.php:247 +#: setup/frames/index.inc.php:235 msgid "Default language" msgstr "預設語言" -#: setup/frames/index.inc.php:257 +#: setup/frames/index.inc.php:245 msgid "let the user choose" msgstr "讓使用者選擇" -#: setup/frames/index.inc.php:268 +#: setup/frames/index.inc.php:256 msgid "- none -" msgstr "- 無 -" -#: setup/frames/index.inc.php:272 +#: setup/frames/index.inc.php:260 msgid "Default server" msgstr "預設伺服器" -#: setup/frames/index.inc.php:284 +#: setup/frames/index.inc.php:272 msgid "End of line" msgstr "換行符號" -#: setup/frames/index.inc.php:290 +#: setup/frames/index.inc.php:278 msgid "Display" msgstr "顯示" -#: setup/frames/index.inc.php:300 +#: setup/frames/index.inc.php:288 msgid "Load" msgstr "讀取" -#: setup/frames/index.inc.php:323 +#: setup/frames/index.inc.php:311 msgid "phpMyAdmin homepage" msgstr "phpMyAdmin 主頁 (外部連結,英文)" -#: setup/frames/index.inc.php:325 +#: setup/frames/index.inc.php:313 msgid "Donate" msgstr "贊助" @@ -13649,21 +13635,21 @@ msgstr "忽略錯誤" msgid "Show form" msgstr "顯示資料表單" -#: setup/lib/index.lib.php:123 +#: setup/lib/index.lib.php:118 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "讀取版本資訊失敗。你可能為離線或是更新伺服器未回應。" -#: setup/lib/index.lib.php:145 +#: setup/lib/index.lib.php:140 msgid "Got invalid version string from server" msgstr "從伺服器取得的版本資訊錯誤" -#: setup/lib/index.lib.php:158 +#: setup/lib/index.lib.php:153 msgid "Unparsable version string" msgstr "無法解析版本" -#: setup/lib/index.lib.php:178 +#: setup/lib/index.lib.php:173 #, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " @@ -13672,7 +13658,7 @@ msgstr "" "您現在使用的是 Git 開發版,請透過 [kbd]git pull[/kbd] 檢查更新 :-)[br]最新正" "式版爲 %s,於 %s 發佈。" -#: setup/lib/index.lib.php:185 +#: setup/lib/index.lib.php:180 msgid "No newer stable version is available" msgstr "沒有更新的可用版本" @@ -13685,12 +13671,12 @@ msgstr "錯誤的資料" msgid "Wrong data or no validation for %s" msgstr "" -#: tbl_create.php:31 tbl_get_field.php:26 +#: tbl_create.php:32 tbl_get_field.php:26 #, php-format msgid "'%s' database does not exist." msgstr "資料庫 '%s' 不存在。" -#: tbl_create.php:41 +#: tbl_create.php:42 #, php-format msgid "Table %s already exists!" msgstr "資料表 %s 已存在!" @@ -13703,29 +13689,29 @@ msgstr "檢視資料表結構的匯出資料" msgid "Invalid table name" msgstr "無效的資料表名稱" -#: tbl_replace.php:238 +#: tbl_replace.php:239 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "列:%1$s,欄:%2$s,錯誤:%3$s" -#: tbl_row_action.php:71 +#: tbl_row_action.php:72 msgid "No row selected." msgstr "尚未選擇列。" -#: tbl_tracking.php:35 +#: tbl_tracking.php:36 #, php-format msgid "Tracking of %s is activated." msgstr "%s 的追蹤已啓用。" -#: tbl_tracking.php:104 +#: tbl_tracking.php:105 msgid "Tracking versions deleted successfully." msgstr "已成功選取的追蹤版本。" -#: tbl_tracking.php:109 +#: tbl_tracking.php:110 msgid "No versions selected." msgstr "尚未選擇任何版本。" -#: tbl_tracking.php:140 +#: tbl_tracking.php:141 msgid "SQL statements executed." msgstr "已執行 SQL 指令。" @@ -13894,7 +13880,7 @@ msgid "List of available transformations and their options" msgstr "列出所有可用的轉換方式與選項" #: templates/columns_definitions/table_fields_definitions.phtml:88 -#: transformation_overview.php:41 +#: transformation_overview.php:42 msgid "Browser display transformation" msgstr "瀏覽器顯示轉換" @@ -13914,7 +13900,7 @@ msgstr "" "(\"\\\")或單引號(\"'\"),請在前面加上反斜槓 (如 '\\\\xyz' 或 'a\\'b')。" #: templates/columns_definitions/table_fields_definitions.phtml:107 -#: transformation_overview.php:42 +#: transformation_overview.php:43 msgid "Input transformation" msgstr "輸入轉換" @@ -14345,17 +14331,17 @@ msgid "Size" msgstr "大小" #: templates/database/structure/table_header.phtml:105 -#: templates/table/structure/row_stats_table.phtml:80 +#: templates/table/structure/row_stats_table.phtml:79 msgid "Creation" msgstr "建立時間" #: templates/database/structure/table_header.phtml:116 -#: templates/table/structure/row_stats_table.phtml:87 +#: templates/table/structure/row_stats_table.phtml:86 msgid "Last update" msgstr "最後更新" #: templates/database/structure/table_header.phtml:127 -#: templates/table/structure/row_stats_table.phtml:94 +#: templates/table/structure/row_stats_table.phtml:93 msgid "Last check" msgstr "最後檢查" @@ -14392,6 +14378,12 @@ msgid "" "import it for current session?" msgstr "您的瀏覽器中有此網域的 phpMyAdmin 設定,是否匯入到目前的連線階段?" +#: templates/prefs_autoload.phtml:14 +#, fuzzy +#| msgid "Delete tracking" +msgid "Delete settings " +msgstr "刪除追蹤資料" + #: templates/privileges/add_privileges_database.phtml:2 msgid "Add privileges on the following database(s):" msgstr "在下列資料庫新增權限:" @@ -14408,10 +14400,43 @@ msgstr "在下列程序新增權限:" msgid "Add privileges on the following table:" msgstr "在下列資料表新增權限:" +#: templates/privileges/add_user_fieldset.phtml:2 +msgctxt "Create new user" +msgid "New" +msgstr "新增" + +#: templates/privileges/column_privileges.phtml:21 +#: templates/privileges/column_privileges.phtml:22 +msgctxt "None privileges" +msgid "None" +msgstr "無" + +#: templates/privileges/delete_user_fieldset.phtml:3 +msgid "Remove selected user accounts" +msgstr "刪除已選擇的使用者帳號" + +#: templates/privileges/delete_user_fieldset.phtml:6 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "移除使用者所有權限,然後刪除使用者。" + +#: templates/privileges/delete_user_fieldset.phtml:8 +#: templates/privileges/delete_user_fieldset.phtml:10 +#: templates/privileges/delete_user_fieldset.phtml:11 +msgid "Drop the databases that have the same names as the users." +msgstr "刪除與使用者同名的資料庫。" + #: templates/privileges/privileges_summary.phtml:21 msgid "Column-specific privileges" msgstr "指定欄位權限" +#: templates/privileges/resource_limits.phtml:2 +msgid "Resource limits" +msgstr "資源限制" + +#: templates/privileges/resource_limits.phtml:5 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "注意: 設定為 0 即代表無限制。" + #: templates/server/binlog/log_selector.phtml:5 msgid "Select binary log to view" msgstr "選擇要檢視的二進位記錄" @@ -14442,7 +14467,7 @@ msgstr "外掛程式" msgid "Author" msgstr "作者" -#: templates/server/plugins/section.phtml:22 +#: templates/server/plugins/section.phtml:21 msgid "disabled" msgstr "已關閉" @@ -14596,7 +14621,7 @@ msgstr "分析器:" msgid "Comment:" msgstr "說明:" -#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:195 +#: templates/table/index_form.phtml:149 templates/table/index_form.phtml:194 msgid "Drag to reorder" msgstr "使用滑鼠拖曳來重新排序" @@ -14628,26 +14653,26 @@ msgstr "僅顯示己建立索引的欄位。 您可以於下方定義索引。" msgid "Foreign key constraint" msgstr "外鍵限制式" -#: templates/table/relation/common_form.phtml:68 +#: templates/table/relation/common_form.phtml:66 msgid "+ Add constraint" msgstr "加入限制(Constraint)" -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/common_form.phtml:84 +#: templates/table/relation/common_form.phtml:76 +#: templates/table/relation/common_form.phtml:82 msgid "Internal relations" msgstr "內部關聯" -#: templates/table/relation/common_form.phtml:88 +#: templates/table/relation/common_form.phtml:86 msgid "Internal relation" msgstr "內部關聯" -#: templates/table/relation/common_form.phtml:91 +#: templates/table/relation/common_form.phtml:89 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "當外鍵(FOREIGN KEY)關連存在時就不需要使用內部關聯。" -#: templates/table/relation/common_form.phtml:119 +#: templates/table/relation/common_form.phtml:115 msgid "Choose column to display:" msgstr "選擇要顯示的欄位:" @@ -14700,11 +14725,11 @@ msgstr "原有字串" msgid "Replaced string" msgstr "替換字串" -#: templates/table/search/replace_preview.phtml:40 +#: templates/table/search/replace_preview.phtml:38 msgid "Replace" msgstr "替換" -#: templates/table/search/rows_zoom.phtml:16 +#: templates/table/search/rows_zoom.phtml:15 msgid "Additional search criteria" msgstr "進階搜尋條件" @@ -14773,7 +14798,7 @@ msgid "at beginning of table" msgstr "於資料表開始" #: templates/table/structure/display_partitions.phtml:6 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:185 msgid "Partitions" msgstr "分區" @@ -14797,24 +14822,24 @@ msgstr "資料長度" msgid "Index length" msgstr "索引長度" -#: templates/table/structure/display_partitions.phtml:136 +#: templates/table/structure/display_partitions.phtml:134 msgid "Partition table" msgstr "分區資料表" -#: templates/table/structure/display_partitions.phtml:139 +#: templates/table/structure/display_partitions.phtml:137 #: templates/table/structure/partition_definition_form.phtml:7 msgid "Edit partitioning" msgstr "編輯分區" -#: templates/table/structure/display_structure.phtml:130 view_create.php:206 +#: templates/table/structure/display_structure.phtml:129 view_create.php:206 msgid "Edit view" msgstr "編輯檢視表" -#: templates/table/structure/display_table_stats.phtml:12 +#: templates/table/structure/display_table_stats.phtml:11 msgid "Space usage" msgstr "已用空間" -#: templates/table/structure/display_table_stats.phtml:35 +#: templates/table/structure/display_table_stats.phtml:34 msgid "Effective" msgstr "有效" @@ -14839,31 +14864,31 @@ msgstr "改進資料表結構" msgid "Track view" msgstr "追蹤檢視表" -#: templates/table/structure/row_stats_table.phtml:3 +#: templates/table/structure/row_stats_table.phtml:2 msgid "Row statistics" msgstr "資料列統計資訊" -#: templates/table/structure/row_stats_table.phtml:9 +#: templates/table/structure/row_stats_table.phtml:8 msgid "static" msgstr "靜態" -#: templates/table/structure/row_stats_table.phtml:11 +#: templates/table/structure/row_stats_table.phtml:10 msgid "dynamic" msgstr "動態" -#: templates/table/structure/row_stats_table.phtml:22 +#: templates/table/structure/row_stats_table.phtml:21 msgid "partitioned" msgstr "已分區" -#: templates/table/structure/row_stats_table.phtml:54 +#: templates/table/structure/row_stats_table.phtml:53 msgid "Row length" msgstr "資料列長度" -#: templates/table/structure/row_stats_table.phtml:66 +#: templates/table/structure/row_stats_table.phtml:65 msgid "Row size" msgstr "資料列大小" -#: templates/table/structure/row_stats_table.phtml:73 +#: templates/table/structure/row_stats_table.phtml:72 msgid "Next autoindex" msgstr "下個自動索引" @@ -14876,44 +14901,44 @@ msgstr "已刪除欄位 %s。" msgid "Click to toggle" msgstr "點此切換" -#: themes.php:19 themes.php:24 +#: themes.php:20 themes.php:25 msgid "Theme" msgstr "佈景主題" -#: themes.php:27 +#: themes.php:28 msgid "Get more themes!" msgstr "取得更多的佈景主題!" -#: transformation_overview.php:22 +#: transformation_overview.php:23 msgid "Available MIME types" msgstr "可用的 MIME 類型" -#: transformation_overview.php:37 +#: transformation_overview.php:38 msgid "Available browser display transformations" msgstr "可用的瀏覽器顯示轉換" -#: transformation_overview.php:38 +#: transformation_overview.php:39 msgid "Available input transformations" msgstr "可用的輸入轉換" -#: transformation_overview.php:53 +#: transformation_overview.php:54 msgctxt "for MIME transformation" msgid "Description" msgstr "說明" -#: url.php:38 +#: url.php:39 msgid "Taking you to the target site." msgstr "帶您至目標網站。" -#: user_password.php:35 +#: user_password.php:37 msgid "You don't have sufficient privileges to be here right now!" msgstr "您現時還沒有足夠的權限!" -#: user_password.php:113 +#: user_password.php:115 msgid "The profile has been updated." msgstr "設定檔案己更新。" -#: user_password.php:125 +#: user_password.php:127 #, fuzzy #| msgid "Password Hashing:" msgid "Password is too long!" @@ -14984,7 +15009,7 @@ msgstr "" #: vendor/phpmyadmin/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15005,17 +15030,17 @@ msgid "Unrecognized data type." msgstr "預期之外的資料類型。" #: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:248 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:391 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:398 msgid "An alias was expected." msgstr "預期要有別名。" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:329 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:348 -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:380 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:336 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:355 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:387 msgid "An alias was previously found." msgstr "已於前面找到別名。" -#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:361 +#: vendor/phpmyadmin/sql-parser/src/Components/Expression.php:368 msgid "Unexpected dot." msgstr "預期之外的句點。" @@ -15068,24 +15093,24 @@ msgstr "預期要有空白於分隔符號之前。" msgid "Expected delimiter." msgstr "預期要有分隔符號。" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:783 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:838 #, php-format msgid "Ending quote %1$s was expected." msgstr "預期要於結束使用括號 %1$s。" -#: vendor/phpmyadmin/sql-parser/src/Lexer.php:823 +#: vendor/phpmyadmin/sql-parser/src/Lexer.php:878 msgid "Variable name was expected." msgstr "預期要有變數名稱。" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:430 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:456 msgid "Unexpected beginning of statement." msgstr "預期之外的陳述句開頭。" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:449 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:475 msgid "Unrecognized statement type." msgstr "無法辨識的陳述句類型。" -#: vendor/phpmyadmin/sql-parser/src/Parser.php:531 +#: vendor/phpmyadmin/sql-parser/src/Parser.php:560 msgid "No transaction was previously started." msgstr "前面未開啟交易(Transaction)模式。" @@ -15102,10 +15127,16 @@ msgstr "預期之外的符號。" msgid "This type of clause was previously parsed." msgstr "此類型的子句已於前面解析過。" -#: vendor/phpmyadmin/sql-parser/src/Statement.php:357 +#: vendor/phpmyadmin/sql-parser/src/Statement.php:369 msgid "Unrecognized keyword." msgstr "無法辨識的關鍵字。" +#: vendor/phpmyadmin/sql-parser/src/Statement.php:495 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "預期之外的陳述句開頭。" + #: vendor/phpmyadmin/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "預期要有實體名稱。" @@ -15146,7 +15177,7 @@ msgstr "%2$s #%1$d" msgid "strict error" msgstr "嚴謹錯誤" -#: view_create.php:45 +#: view_create.php:48 msgid "View name can not be empty" msgstr "" @@ -16312,6 +16343,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 目前設定為 0" +#~ msgid "Native MySQL Authentication" +#~ msgstr "原生 MySQL 認證" + #~ msgid "Try to connect without password." #~ msgstr "嘗試用空密碼連線。" diff --git a/scripts/upload-release b/scripts/upload-release index 12b0d4ebe5..c1588616f7 100755 --- a/scripts/upload-release +++ b/scripts/upload-release @@ -24,8 +24,8 @@ if [ $# -gt 1 ] ; then cd "$2" fi -# Upload to our file server -sftp -P 11022 files@klutz.phpmyadmin.net -f -b - < $BATCH <'; - - // Temporary workaround to use tranlated message in older releases - $text .= str_replace( - array('[a@%s]', '[/a]'), - array('', ''), - __( - 'If your server is also configured to accept HTTPS requests ' - . 'follow [a@%s]this link[/a] to use a secure connection.' - ) - ); - $text .= ''; - PMA_messagesSet('notice', 'no_https', __('Insecure connection'), $text); -} +$text = __( + 'You are not using a secure connection; all data (including potentially ' + . 'sensitive information, like passwords) is transferred unencrypted!' +); +$text .= ' '; +$text .= __( + 'If your server is also configured to accept HTTPS requests ' + . 'follow this link to use a secure connection.' +); +$text .= ''; +PMA_messagesSet('notice', 'no_https', __('Insecure connection'), $text); echo '
'; echo URL::getHiddenInputs(); diff --git a/setup/lib/index.lib.php b/setup/lib/index.lib.php index 0c24504a67..09acab2cab 100644 --- a/setup/lib/index.lib.php +++ b/setup/lib/index.lib.php @@ -80,23 +80,18 @@ function PMA_messagesEnd() */ function PMA_messagesShowHtml() { - $old_ids = array(); foreach ($_SESSION['messages'] as $type => $messages) { foreach ($messages as $id => $msg) { - echo '
' + if (! $msg['fresh'] && $type != 'error') { + $extra = ' hiddenmessage'; + } else { + $extra = ''; + } + echo '
' , '

' , $msg['title'] , '

' , $msg['message'] , '
'; - if (!$msg['fresh'] && $type != 'error') { - $old_ids[] = $id; - } } } - - echo "\n" , '\n"; } /** diff --git a/setup/scripts.js b/setup/scripts.js index e912bec005..53c33bebbd 100644 --- a/setup/scripts.js +++ b/setup/scripts.js @@ -12,24 +12,29 @@ if (top != self) { // Messages // -// stores hidden message ids -var hiddenMessages = []; - $(function () { - var hidden = hiddenMessages.length; - for (var i = 0; i < hidden; i++) { - $('#' + hiddenMessages[i]).css('display', 'none'); + + if (window.location.protocol === 'https:') { + $('#no_https').remove(); + } else { + $('#no_https a').click(function () { + var old_location = window.location; + window.location.href = 'https:' + old_location.href.substring(old_location.protocol.length); + return false; + }); } - if (hidden > 0) { + + var hiddenmessages = $('.hiddenmessage'); + + if (hiddenmessages.length > 0) { + hiddenmessages.hide(); var link = $('#show_hidden_messages'); link.click(function (e) { e.preventDefault(); - for (var i = 0; i < hidden; i++) { - $('#' + hiddenMessages[i]).show(500); - } + hiddenmessages.show(); $(this).remove(); }); - link.html(link.html().replace('#MSG_COUNT', hidden)); + link.html(link.html().replace('#MSG_COUNT', hiddenmessages.length)); link.css('display', ''); } }); diff --git a/test/libraries/PMA_SetupIndex_test.php b/test/libraries/PMA_SetupIndex_test.php index 72f971c72a..a73fbd06ef 100644 --- a/test/libraries/PMA_SetupIndex_test.php +++ b/test/libraries/PMA_SetupIndex_test.php @@ -147,7 +147,7 @@ class PMA_SetupIndex_Test extends PHPUnit_Framework_TestCase $result = ob_get_clean(); $this->assertContains( - '

foo

123
', + '

foo

123
', $result ); @@ -155,21 +155,6 @@ class PMA_SetupIndex_Test extends PHPUnit_Framework_TestCase '

bar

321
', $result ); - - $this->assertContains( - '", - $result - ); } /**